:root {
    --g: #1a5c38;
    --g2: #2e7d52;
    --g3: #0f3d22;
    --gold: #b8963e;
    --gold2: #d4af6a;
    --dark: #050e08;
    --dark2: #081209;
    --dark3: #0b1a0f;
    --white: #ffffff;
    --cream: #f5f0e8;
    --text: #e8ede9;
    --muted: rgba(232, 237, 233, 0.5);
    --border: rgba(26, 92, 56, 0.2);
    --border2: rgba(255, 255, 255, 0.07);
}


.drukgreen-btn.btn-bg-white {
    background-color: #FFFFFF;
    color: #0B9146;
}

.drukgreen-btn.btn-bg-white .btn-icon svg path {
    stroke: #0B9146;
}



/* ── PROGRESS BAR ──────────────────────────────────────────────────────────── */
.prog {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 1000;
    width: 0;
    transition: width .1s
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */

.hero-content.investor-content-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;

}



.btn-primary {
    padding: 14px 32px;
    background: var(--g);
    color: #fff;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%)
}

.btn-primary:hover {
    background: var(--g2);
    transform: translateY(-2px)
}

.btn-outline {
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.hero-stats-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border2);
    backdrop-filter: blur(16px);
    padding: 40px;
    opacity: 0;
    animation: fadeUp .9s ease 2.1s forwards;
    position: relative
}

.hero-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent)
}

.hstat {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.hstat:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.hstat:first-child {
    padding-top: 0
}

.hstat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: #fff;
    line-height: 1
}

.hstat-val sub {
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    color: var(--gold);
    font-weight: 300
}

.hstat-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .4);
    text-align: right;
    max-width: 130px;
    line-height: 1.4
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp .9s ease 2.5s forwards
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    position: relative
}

.scroll-wheel {
    width: 2px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 2s ease infinite
}

.scroll-txt {
    font-family: 'DM Mono', monospace;
    font-size: .5rem;
    letter-spacing: .2em;
    color: rgba(255, 255, 255, .25);
    text-transform: uppercase;
    writing-mode: vertical-rl
}

@keyframes wheel {
    50% {
        top: 14px;
        opacity: 0
    }

    51% {
        top: 5px
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── SECTION SHARED ──────────────────────────────────────────────────────── */

.s-label {
    font-family: 'DM Mono', monospace;
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.s-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold)
}

.s-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px
}

.s-title em {
    font-style: italic;
    color: var(--gold2)
}

.s-body {
    font-size: .92rem;
    line-height: 1.85;
    color: var(--muted)
}

.sr {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease
}

.sr.in {
    opacity: 1;
    transform: translateY(0)
}

.sr-d1 {
    transition-delay: .1s
}

.sr-d2 {
    transition-delay: .2s
}

.sr-d3 {
    transition-delay: .3s
}

.sr-d4 {
    transition-delay: .4s
}

/* ── STAT STRIP ──────────────────────────────────────────────────────────── */
.stat-wrapper {
    position: relative;
}

.stat-strip {
    position: absolute;
    bottom: 0;
    background: #FFFFFF;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0;
    z-index: 20;
    left: 50%;
    transform: translate(-50%, 50%);
    border-radius: 20px;
}



.stat-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
}

.stat-item {
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-right: 1px solid #E0E0E0;
    position: relative
}

.stat-item:last-child {
    border-right: none
}

.stat-val {
    font-size: 24px;
    font-weight: 700;
    color: #404040;
    line-height: 1
}

.stat-val sup {
    font-size: 14px;
    color: #0B9146;
    vertical-align: super;
    font-weight: 400
}

.stat-unit {
    font-size: .72rem;
    color: var(--gold);
    font-family: 'DM Mono', monospace;
    letter-spacing: .1em
}

.stat-label {
    font-size: 14px;
    color: #707070;
    text-align: center;
    min-width: 140px;
}

/* ── INVESTMENT CASE ──────────────────────────────────────────────────────── */
.invest-section {
    background: #F9F9F9;
}

.invest-section-para-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.invest-section-para-wrapper .power-section-para {
    max-width: 85%;
}

.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.invest-left .s-body {
    margin-bottom: 40px
}

.reason-cards {
    display: flex;
    flex-direction: column;
    background: var(--border2)
}

.reason-card {
    background: #ffffff;
    padding: 28px 28px 28px 36px;
    position: relative;
    transition: background .3s;
    cursor: default;
    border-bottom: 1px solid #E0E0E080;
}

.reason-card:first-child {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

}

.reason-card:last-child {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom: none;
}

.reason-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #E0E0E0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s ease
}

.reason-card:hover {
    background: #F9F9F9
}

.reason-card:hover::before {
    transform: scaleY(1)
}

.reason-card-num {
    font-size: 12px;
    letter-spacing: 1;
    color: #0B9146;
    margin-bottom: 10px;
    font-weight: 400;
}

.reason-card-title {
    font-size: 18px;
    font-weight: 500;
    color: #404040;
    margin-bottom: 8px
}

.reason-card-body {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #707070;
}

.invest-visual {
    background: linear-gradient(90deg, #0B9146 0%, #243F80 93.86%);
    padding: 48px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.invest-visual::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(26, 92, 56, .15), transparent);
    pointer-events: none
}

.invest-big-num {
    font-size: 80px;
    font-style: italic;
    font-weight: 800;
    color: #ffffff26;
    line-height: 1;
    margin-bottom: 32px;
    -webkit-text-stroke: 1px rgba(26, 92, 56, .3)
}

.invest-facts {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.invest-fact {
    display: flex;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid #FFFFFF33;
    position: relative;
    padding-left: 70px;

}

.invest-fact:first-child {
    padding-top: 25px;
    border-top: 1px solid #FFFFFF33;

}

.invest-fact:first-child .invest-fact-icon {
    top: 25px;
}

.invest-fact:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.invest-fact-icon {
    position: absolute;
    left: 0;
    top: 0;
}

.invest-fact-icon img {
    width: 40px;
    height: 40px;
}

.invest-fact-val {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 10px;
}

.invest-fact-label {
    font-size: 14px;
    color: #FFFFFFCC;
    line-height: 1.4;
    font-weight: 400;
    max-width: 85%;
}

/* ── CSP SECTION ──────────────────────────────────────────────────────────── */
.csp-section {
    background: #F9F9F9;
    position: relative;
    overflow: hidden
}

.csp-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1
}

.csp-left {}

.csp-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--border2);
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
}

.pillar {
    background: #FFFFFF;
    padding: 32px 28px;
    transition: background .3s;
}


.pillar-title {
    color: #404040;
    margin-bottom: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}


.pillar-body {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #707070;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border: 1px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.pillar-icon svg {
    width: 30px;
}

.csp-timeline {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}


.tl-title {
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #0B9146;
    margin-bottom: 30px
}

.tl-items {
    display: flex;
    flex-direction: column;
    gap: 0
}

.tl-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    border-top: 1px solid #E0E0E0;
    padding: 20px 0;
}

.tl-item:last-child {
    border-bottom: 1px solid #E0E0E0;
}

.tl-year {
    font-size: 12px;
    color: #0B9146;
    padding-top: 2px
}

.tl-content-title {
    font-size: 16px;
    color: #404040;
    font-weight: 500;
    margin-bottom: 4px;
}

.tl-content-body {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #707070;
    max-width: 75%;

}

.csp-download {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}

.csp-download-text {
    flex: 1
}

.csp-download-title {
    font-weight: 400;
    font-size: 14px;
    color: #404040;
    line-height: 1.3;
}

.csp-download-sub {
    font-size: .72rem;
    color: var(--muted)
}

.csp-download-btn {
    padding: 10px 20px;
    background: var(--gold);
    color: var(--dark);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background .3s
}

.csp-download-btn:hover {
    background: var(--gold2)
}

/* ── GOVERNANCE ──────────────────────────────────────────────────────────── */
.gov-section {
    background: #FFFFFF;
}

.gov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #F9F9F9;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}

.gov-card {
    background: #F9F9F9;
    padding: 36px 32px;
    transition: background .3s;
    position: relative;
    border-right: 1px solid #E0E0E0;
}

.gov-card:hover .gov-card:first-child {
    border-right: none;
}

.gov-card:hover {
    background: #0B9146;
}

.gov-card:hover .gov-card-title {
    color: #FFFFFF;
}

.gov-card:hover .gov-card-body {
    color: #FFFFFFCC;

}


.gov-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.gov-card-icon svg {
    width: 25px;
}

.gov-card-title {
    color: #404040;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px
}

.gov-card-body {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #707070;
}

.board-note {
    margin-top: 32px;
    padding: 28px 32px;
    background: #F9F9F9;
    border-left: 1px solid #0B9146;
    border-radius: 20px;
}

.board-note-label {
    font-family: 12px;
    font-weight: 400;
    color: #0B9146;
    margin-bottom: 10px;
}

.board-note-text {
    font-size: 16px;
    letter-spacing: 1.6;
    color: #707070;

    font-weight: 400;
}

/* ── PARTNERSHIPS ──────────────────────────────────────────────────────────── */
.partners-section {
    background: #F9F9F9;
    position: relative;
    overflow: hidden
}

.docs-table-wrapper {
    overflow: auto;
}

.partners-section .invest-section-para-wrapper,
.docs-section .invest-section-para-wrapper {
    flex-direction: row;
}

.docs-section .power-section-para,
.partners-section .power-section-para {
    max-width: 50%;
}

.partners-section::before {
    content: 'PARTNERSHIPS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 12vw;
    font-weight: 700;
    color: rgba(255, 255, 255, .02);
    white-space: nowrap;
    pointer-events: none
}

.partners-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(90deg, #0B9146 0%, #243F80 93.86%);
    border-radius: 20px;

}

.partner-card {
    background: rgba(255, 255, 255, .04);
    padding: 30px 40px;
    position: relative;
    transition: background .3s;
    border-right: 1px solid #E0E0E04D;
}

.partner-card:first-child,
.partner-card:nth-child(2),
.partner-card:nth-child(3) {
    border-bottom: 1px solid #E0E0E04D;
}

.partner-card:hover {
    background: rgba(255, 255, 255, .08)
}


.partner-flag {
    font-size: 1.8rem;
    margin-bottom: 14px
}

.partner-flag svg {
    width: 30px;
    height: 30px;
}

.partner-name {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 6px
}

.partner-country {
    font-weight: 300;
    color: #FFFFFFCC;
    font-size: 12px;
    text-transform: capitalize;
    margin-bottom: 10px
}

.partner-detail {
    color: #FFFFFFCC;
    font-weight: 14px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 90%;
}

.partner-status {
    display: inline-flex;
    gap: 5px;
    font-weight: 300;
    margin-top: 30px;
    font-size: 12px;
    letter-spacing: .08em;
    color: #FFFFFFCC;
    text-transform: uppercase
}

.partner-status::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(100%);
}

/* ── DOCUMENTS ──────────────────────────────────────────────────────────── */
.docs-section {
    background: #FFFFFF;
}

.docs-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px
}

.docs-table {
    width: 100%;
    border-collapse: collapse
}

.docs-table thead tr {
    background: linear-gradient(90deg, #0B9146 0%, #243F80 93.86%);
}

.docs-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: #FFFFFF;
    border-right: 1px solid #E0E0E033;
}

.docs-table thead th:first-child {
    border-top-left-radius: 12px;
}

.docs-table thead th:last-child {
    border-right: none;
    border-top-right-radius: 12px;
}

.docs-table tbody tr {
    border-bottom: 1px solid #E0E0E0;
    transition: background .2s
}


.docs-table tbody tr td:first-child {
    border-left: 1px solid #E0E0E0;
    padding: 10px;

}

.docs-table tbody tr td:last-child {
    border-right: 1px solid #E0E0E0;
}

.docs-table td {
    padding: 20px;
    border-right: 1px solid #E0E0E0;
    vertical-align: middle
}

.docs-table td:last-child {
    border-right: none
}

.doc-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.doc-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--g2)
}

.doc-title {
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    margin-bottom: 8px;
    text-wrap: nowrap;
}

.doc-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #707070;
    max-width: 90%;
}


/* ── CONTACT ──────────────────────────────────────────────────────────── */
.contact-section {
    background: #F9F9F9;
    position: relative;
    overflow: hidden
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start
}

.contact-left .s-body {
    margin: 20px 0 40px
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 24px;
    border: 1px solid #E0E0E0;
    transition: border-color .3s;
    border-radius: 12px;
}


.contact-item-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-item-icon svg {
    width: 30px;
}

.contact-item-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #0B9146;
    font-weight: 300;
    margin-bottom: 8px
}

.contact-item-val {
    color: #404040;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.contact-item-sub {
    font-size: 12px;
    font-weight: 400;
    color: #707070;
    margin-top: 6px;
}

.contact-right {
    border-radius: 20px;
    background: linear-gradient(90deg, #0B9146 0%, #243F80 93.86%);
    border: 1px solid var(--border2);
    padding: 30px;
    position: relative;
}

.contact-right .drukgreen-btn {
    min-width: 45%;
}

.contact-right .drukgreen-btn .btn-icon {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    transform: translateY(0);
    margin-left: 10px;
    transform: unset;
    animation: unset;
}


.form-title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.form-sub {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}
.form-field p {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
}

.form-field input,
.form-field textarea,
.form-field select {
    background-color: transparent;
    border: 1px solid #FFFFFF80;
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff !important;
    outline: none;
    transition: border-color .3s;
    width: 100%;
}



.form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M0.75 0.75L6.75 6.75L12.75 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #a5a5a580;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.form-field select::placeholder {
    font-weight: 300;
    font-size: 12px;
    color: #FFFFFF80;
}

.form-field textarea {
    resize: vertical;
    min-height: 90px;
    font-family: "Inter", sans-serif;
}

.form-field select option {
    background: var(--dark3);
    color: #fff
}

/* ── FINANCIAL STRIP ──────────────────────────────────────────────────────── */
.fin-section {
    background: #FFFFFF;
}

.fin-section .heading-radient-wrapper,
.csp-section .heading-radient-wrapper,
.gov-section .heading-radient-wrapper,
.docs-section .heading-radient-wrapper,
.partners-section .heading-radient-wrapper {
    max-width: 400px;
}

.fin-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.fin-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    margin-bottom: 40px;

}

.fin-card {
    background: #fff;
    padding: 28px 24px;
    transition: background .3s;
}

.fin-card:first-child,
.pillar:first-child {
    border-right: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

.fin-card:nth-child(3),
.pillar:nth-child(3) {
    border-right: 1px solid #E0E0E0;
}

.fin-card:nth-child(2),
.pillar:nth-child(2) {
    border-bottom: 1px solid #E0E0E0;
}

.fin-card:hover {
    background: #fff;
}

.fin-card-val {
    font-size: 24px;
    font-weight: 700;
    color: #404040;
    line-height: 1;
    margin-bottom: 6px;
}

.fin-card-val sup {
    font-size: 14px;
    color: #0B9146;
    vertical-align: super;
    font-weight: 400;
}

.fin-card-label {
    font-size: 14px;
    color: #707070;
    margin-bottom: 10px;
}

.fin-card-note {
    color: #B7B7B7;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
}

.chart-placeholder {
    border: 1px solid #E0E0E0;
    padding: 25px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.chart-placeholder-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #404040;
    margin-bottom: 20px
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px
}

.chart-bar {
    flex: 1;
    background: #007D37;
    border-top: 2px solid #007D37;
    position: relative;
    transition: background .3s;
    cursor: default
}

.chart-bar:hover {
    background: rgba(26, 92, 56, .5)
}

.chart-bar-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 400;
    color: #707070;
    font-size: 12px;
    white-space: nowrap
}

.chart-bar-val {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-weight: 400;
    color: #707070;
    font-size: 12px;
}

.chart-bottom-text {
    color: #707070;
    font-size: 12px;
    font-weight: 400;
    text-align: start;
    margin-top: 50px;
}

.fin-download {
    margin-top: 48px;
    padding: 20px 24px;
    background: #0B9146;
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 12px;
}

.fin-download-text {
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF99;

}

.fin-download-text strong {
    color: #fff;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}


/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media(min-width:1024px) {
    .state-section-adjust {
        padding-top: 120px;
    }
}

@media(max-width:1024px) {
    nav {
        padding: 18px 28px
    }

    .nav-links {
        display: none
    }

    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-stats-card {
        display: none
    }


    .stat-strip-inner {
        grid-template-columns: 1fr 1fr;
        padding: 0 28px
    }

    .invest-grid,
    .csp-inner,
    .fin-inner,
    .contact-grid,
    .partners-header,
    .docs-header {
        grid-template-columns: 1fr
    }

    .gov-grid {
        grid-template-columns: 1fr 1fr
    }

    .gov-card:nth-child(2) {
        border-right: none;
    }

    .gov-card:nth-child(1),
    .gov-card:nth-child(2) {
        border-bottom: 1px solid #E0E0E0;
    }

    .partners-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat-strip {
        position: relative;
        transform: unset;
        left: auto;
        bottom: auto;
        border-radius: 0;
    }

    .stat-item {
        border: none;
    }

    .partner-card:nth-child(4) {
        border-bottom: 1px solid #E0E0E04D;
    }

    .partners-section .invest-section-para-wrapper,
    .docs-section .invest-section-para-wrapper {
        flex-direction: column;
    }

    .contact-grid {
        gap: 60px;
    }

    .contact-right .drukgreen-btn {
        max-width: 100%;

    }

}

@media(max-width:767px) {
    .partners-section .invest-section-para-wrapper .docs-section .invest-section-para-wrapper {
        flex-direction: column;
    }

    .partners-section .power-section-para,
    .docs-section .power-section-para {
        max-width: 90%;
    }
}

@media(max-width:620px) {
    .stat-strip-inner {
        grid-template-columns: 1fr 1fr
    }

    .gov-grid {
        grid-template-columns: 1fr
    }

    .partners-grid {
        grid-template-columns: 1fr
    }

    .csp-pillars {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .fin-cards {
        grid-template-columns: 1fr
    }

    .fin-inner {
        gap: 50px;
    }

    .fin-card:first-child,
    .fin-card:nth-child(3),
    .pillar:first-child,
    .pillar:nth-child(3) {
        border-right: none;
    }

    .fin-card {
        border-bottom: 1px solid #E0E0E0;
    }

    .fin-card:first-child {
        border-top: 1px solid #E0E0E0;
    }



    .hero-content.investor-content-wrap .hero-para-wrap {
        margin-bottom: 0;
    }

    .stat-label {
        min-width: auto;
    }

    .stat-item {
        padding: 30px;
    }

    .tl-content-body {
        max-width: 90%;
    }

    .gov-card {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
    }

    .gov-card:last-child {
        border-bottom: none;
    }

    .partner-card {
        border-bottom: 1px solid #E0E0E04D;
    }

    .partner-card:last-child {
        border-bottom: none;
    }
}

.dgpc-investor-relation-page .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}