       /* ── FILTER BAR ── */
        .filter-bar {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 68px;
            z-index: 50;
        }

        .filter-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 56px;
            display: flex;
            align-items: center;
            gap: 0;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .filter-inner::-webkit-scrollbar {
            display: none;
        }
        
        .blog-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

        .filter-btn {
            flex-shrink: 0;
            padding: 16px 22px;
            font-family: var(--font-m);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--gray-400);
            background: none;
            border: none;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            transition: all .2s;
            white-space: nowrap;
        }

        .filter-btn:hover {
            color: var(--black);
        }

        .filter-btn.active {
            color: var(--black);
            border-bottom-color: var(--black);
        }

        .filter-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: var(--gray-200);
            border-radius: 100px;
            font-size: 10px;
            font-weight: 700;
            color: var(--gray-600);
            margin-left: 6px;
        }

        .filter-btn.active .filter-count {
            background: var(--black);
            color: #fff;
        }

        /* ── SEARCH ── */
        .search-wrap {
            max-width: 1320px;
            margin: 0 auto;
            padding: 32px 56px;
        }

        .search-box {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 4px;
            padding: 14px 20px;
            transition: border-color .2s;
        }

        .search-box:focus-within {
            border-color: var(--black);
        }

        .search-box i {
            font-size: 18px;
            color: var(--gray-400);
        }

        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            font-family: var(--font-b);
            font-size: 15px;
            color: var(--black);
            background: transparent;
        }

        .search-box input::placeholder {
            color: var(--gray-400);
        }

        .result-count {
            font-family: var(--font-m);
            font-size: 12px;
            color: var(--gray-400);
            letter-spacing: .08em;
            margin-left: auto;
            white-space: nowrap;
        }

        /* ── SECTION ── */
        .schemes-section {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 56px 100px;
        }

        .section-label {
            font-family: var(--font-m);
            font-size: 11px;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gray-400);
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .section-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        /* ── CARD GRID ── */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 64px;
        }

        /* ── SCHEME CARD ── */
        .scheme-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 28px 24px 22px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: all .25s cubic-bezier(.22, 1, .36, 1);
            text-decoration: none;
            color: inherit;
        }

        .scheme-card:hover {
            border-color: rgba(0, 0, 0, 0.18);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .scheme-card:hover .card-arrow {
            opacity: 1;
            transform: translate(0, 0);
        }

        /* Icon area */
        .card-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .card-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .card-arrow {
            font-size: 16px;
            color: var(--gray-400);
            opacity: 0;
            transform: translate(-4px, 4px);
            transition: all .25s;
        }

        /* Badge */
        .grant-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 11px;
            border-radius: 100px;
            font-family: var(--font-m);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: .06em;
            margin-bottom: 14px;
            width: fit-content;
        }

        .grant-badge i {
            font-size: 10px;
        }

        /* Title */
        .card-title {
            font-family: var(--font-d);
            font-size: 15px;
            font-weight: 700;
            color: var(--black);
            line-height: 1.3;
            margin-bottom: 10px;
            flex: 1;
        }

        /* Desc */
        .card-desc {
            font-size: 13px;
            line-height: 1.65;
            color: var(--gray-600);
            font-weight: 300;
            margin-bottom: 20px;
        }

        /* CTA */
        .card-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-m);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--black);
            text-decoration: none;
            border: 1px solid var(--gray-200);
            border-radius: 100px;
            padding: 8px 16px;
            transition: all .2s;
            width: fit-content;
            margin-top: auto;
        }

        .card-cta:hover {
            background: var(--black);
            color: #fff;
            border-color: var(--black);
        }


        /* no result */
        .no-result {
            text-align: center;
            padding: 80px 0;
            color: var(--gray-400);
            font-family: var(--font-m);
            font-size: 13px;
            letter-spacing: .1em;
            display: none;
        }

        .no-result i {
            font-size: 40px;
            display: block;
            margin-bottom: 16px;
        }

        /* ── SCROLL REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── RESPONSIVE ── */
        @media(max-width:1200px) {
            .card-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media(max-width:1100px) {

            nav,
            .page-hero {
                padding-left: 40px;
                padding-right: 40px;
            }

            .filter-inner,
            .search-wrap,
            .schemes-section {
                padding-left: 40px;
                padding-right: 40px;
            }
        }

        @media(max-width:900px) {

            .nav-links,
            .nav-right {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .page-hero h1 {
                font-size: clamp(2.8rem, 8vw, 5rem);
            }
        }

        @media(max-width:600px) {

            nav,
            .page-hero {
                padding-left: 24px;
                padding-right: 24px;
            }

            .filter-inner,
            .search-wrap,
            .schemes-section {
                padding-left: 24px;
                padding-right: 24px;
            }

            .card-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .page-hero {
                padding-top: 110px;
                padding-bottom: 48px;
            }
        }

        .about-link{
width: fit-content;
        }








.card-icon{
    background: var(--black);
    color: #fff;
}

.grant-badge{

    background: var(--gray-200);
}

        /* ── MAIN LAYOUT ── */
        .page-body {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 56px;
        }

        .content-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 56px;
            padding: 64px 0 100px;
            align-items: start;
        }

        /* ── ARTICLE CONTENT ── */
        .article {}

        /* Section block */
        .content-block {
            margin-bottom: 56px;
        }

        .block-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-m);
            font-size: 11px;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-bottom: 16px;
        }

        .block-label::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--gray-400);
        }

        .block-title {
            font-family: var(--font-d);
            font-size: clamp(22px, 2.8vw, 32px);
            font-weight: 700;
            letter-spacing: -.025em;
            line-height: 1.1;
            color: var(--black);
            margin-bottom: 20px;
        }

        .block-text {
            font-size: 16px;
            line-height: 1.85;
            color: var(--gray-600);
            font-weight: 300;
            margin-bottom: 14px;
        }

        .block-text:last-child {
            margin-bottom: 0;
        }

        /* Objectives list */
        .obj-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }

        .obj-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 16px;
            line-height: 1.7;
            color: var(--gray-600);
            font-weight: 300;
        }

        .obj-list li .obj-icon {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            background: var(--black);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 13px;
            margin-top: 1px;
        }

        /* Subsidy table cards */
        .subsidy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 8px;
        }

        .subsidy-card {
            background: var(--off);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 24px 22px;
        }

        .subsidy-card.dark {
            background: var(--black);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .subsidy-card .sc-label {
            font-family: var(--font-m);
            font-size: 10px;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-bottom: 12px;
            display: block;
        }

        .subsidy-card.dark .sc-label {
            color: rgba(255, 255, 255, 0.3);
        }

        .subsidy-card h4 {
            font-family: var(--font-d);
            font-size: 16px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 14px;
        }

        .subsidy-card.dark h4 {
            color: #fff;
        }

        .sc-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
        }

        .subsidy-card.dark .sc-row {
            border-bottom-color: rgba(255, 255, 255, 0.07);
        }

        .sc-row:last-child {
            border-bottom: none;
        }

        .sc-cat {
            font-size: 14px;
            color: var(--gray-600);
            font-weight: 300;
        }

        .subsidy-card.dark .sc-cat {
            color: rgba(255, 255, 255, 0.45);
        }

        .sc-pct {
            font-family: var(--font-d);
            font-size: 16px;
            font-weight: 800;
            color: var(--blue);
            background: var(--blue-bg);
            padding: 3px 10px;
            border-radius: 100px;
            white-space: nowrap;
        }

        .subsidy-card.dark .sc-pct {
            background: rgba(37, 99, 235, 0.2);
            color: #60a5fa;
        }

        /* Max project card */
        .max-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 8px;
        }

        .max-card {
            background: var(--black);
            border-radius: 8px;
            padding: 24px 22px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .max-card i {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.35);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .max-card-body .mc-label {
            font-family: var(--font-m);
            font-size: 10px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.3);
            display: block;
            margin-bottom: 6px;
        }

        .max-card-body .mc-val {
            font-family: var(--font-d);
            font-size: 24px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -.03em;
        }

        .max-card-body .mc-sub {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 4px;
        }

        /* Eligibility checklist */
        .check-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 8px;
        }

        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: var(--off);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 18px 16px;
        }

        .check-item i {
            font-size: 16px;
            color: var(--black);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .check-item p {
            font-size: 14px;
            line-height: 1.65;
            color: var(--gray-600);
            font-weight: 300;
        }

        .check-item strong {
            color: var(--black);
            font-weight: 600;
        }

        /* Docs list */
        .docs-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 8px;
        }

        .docs-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            background: var(--off);
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 15px;
            color: var(--gray-600);
            font-weight: 300;
            transition: border-color .2s;
        }

        .docs-list li:hover {
            border-color: var(--black);
            color: var(--black);
        }

        .docs-list li i {
            font-size: 15px;
            color: var(--gray-400);
            flex-shrink: 0;
        }

        /* Upgrade cards */
        .upgrade-card {
            background: var(--off);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 28px 26px;
            margin-top: 8px;
        }

        .upgrade-card h4 {
            font-family: var(--font-d);
            font-size: 18px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 14px;
        }

        .uc-stat {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .uc-stat i {
            color: var(--blue);
            font-size: 16px;
        }

        .uc-stat span {
            font-size: 15px;
            color: var(--gray-600);
            font-weight: 300;
        }

        .uc-stat strong {
            color: var(--black);
            font-weight: 600;
        }

        /* Role of RC section */
        .rc-block {
            background: var(--black);
            border-radius: 12px;
            padding: 36px 32px;
            margin-top: 8px;
        }

        .rc-block .block-title {
            color: #fff;
        }

        .rc-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 4px;
        }

        .rc-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.55);
            font-weight: 300;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .rc-list li:last-child {
            border-bottom: none;
        }

        .rc-list li i {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.35);
        }

        /* ── SIDEBAR ── */
        .sidebar {
            position: sticky;
            top: 88px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Consult card */
        .cta-card {
            background: var(--black);
            border-radius: 12px;
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-tag {
            font-family: var(--font-m);
            font-size: 10px;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.3);
            display: block;
            margin-bottom: 14px;
        }

        .cta-card h3 {
            font-family: var(--font-d);
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 12px;
        }

        .cta-card p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.45);
            font-weight: 300;
            margin-bottom: 24px;
        }

        .cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px;
            background: #fff;
            color: var(--black);
            font-family: var(--font-d);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all .2s;
            text-decoration: none;
            margin-bottom: 10px;
        }

        .cta-btn:hover {
            background: #e8e8e8;
            transform: translateY(-2px);
        }

        .cta-btn-ghost {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px;
            background: transparent;
            color: rgba(255, 255, 255, 0.5);
            font-family: var(--font-m);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: .12em;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 6px;
            cursor: pointer;
            transition: all .2s;
            text-decoration: none;
        }

        .cta-btn-ghost:hover {
            border-color: rgba(255, 255, 255, 0.3);
            color: #fff;
        }

        .cta-contact {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .cta-contact a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color .2s;
        }

        .cta-contact a:hover {
            color: #fff;
        }

        .cta-contact a i {
            font-size: 14px;
        }

        /* Grant summary card */
        .grant-card {
            background: var(--blue-bg);
            border: 1px solid var(--blue-border);
            border-radius: 12px;
            padding: 24px 22px;
        }

        .grant-card .gc-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .grant-card .gc-header i {
            font-size: 20px;
            color: var(--blue);
        }

        .grant-card .gc-header span {
            font-family: var(--font-d);
            font-size: 15px;
            font-weight: 700;
            color: var(--black);
        }

        .grant-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--blue-border);
        }

        .grant-row:last-child {
            border-bottom: none;
        }

        .gr-label {
            font-size: 13px;
            color: var(--gray-600);
            font-weight: 300;
        }

        .gr-val {
            font-family: var(--font-d);
            font-size: 14px;
            font-weight: 700;
            color: var(--black);
        }

        /* Related schemes */
        .related-card {
            background: var(--off);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px 22px;
        }

        .related-card h5 {
            font-family: var(--font-m);
            font-size: 11px;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-bottom: 16px;
        }

        .related-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            text-decoration: none;
            transition: all .2s;
        }

        .related-link:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .related-link:hover .rl-title {
            color: var(--black);
        }

        .related-link:hover .rl-arrow {
            transform: translate(2px, -2px);
        }

        .rl-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: var(--white);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: var(--black);
            flex-shrink: 0;
        }

        .rl-body {
            flex: 1;
        }

        .rl-title {
            font-family: var(--font-d);
            font-size: 14px;
            font-weight: 700;
            color: var(--gray-600);
            transition: color .2s;
            line-height: 1.3;
        }

        .rl-grant {
            font-family: var(--font-m);
            font-size: 11px;
            color: var(--gray-400);
            margin-top: 3px;
        }

        .rl-arrow {
            font-size: 14px;
            color: var(--gray-400);
            transition: transform .2s;
        }

        /* Trust strip */
        .trust-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }

        .trust-cell {
            background: var(--white);
            padding: 16px 12px;
            text-align: center;
        }

        .trust-num {
            font-family: var(--font-d);
            font-size: 22px;
            font-weight: 800;
            color: var(--black);
            display: block;
            line-height: 1;
        }

        .trust-lbl {
            font-family: var(--font-m);
            font-size: 9px;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-top: 4px;
            display: block;
        }

        /* ── BOTTOM CTA ── */
        .bottom-cta {
            background: var(--black);
            padding: 80px 0;
            margin-top: 0;
        }

        .bottom-cta .inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 56px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 48px;
            align-items: center;
        }

        .bottom-cta h2 {
            font-family: var(--font-d);
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 800;
            color: #fff;
            letter-spacing: -.03em;
            line-height: 1.05;
        }

        .bottom-cta p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.45);
            font-weight: 300;
            margin-top: 10px;
        }

        .cta-btns {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: stretch;
            min-width: 220px;
        }

        /* ── FOOTER ── */
        .footer {
            background: var(--black);
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding: 72px 0 28px;
        }

        .footer-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 56px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 48px;
            margin-bottom: 56px;
        }

        .footer-logo {
            font-family: var(--font-d);
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: .04em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 12px;
        }

        .footer-logo .dot {
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.35);
            line-height: 1.7;
            margin-bottom: 20px;
            max-width: 260px;
        }

        .social-icons {
            display: flex;
            gap: 8px;
        }

        .social-icons a {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 14px;
            transition: all .2s;
        }

        .social-icons a:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .footer-col h5 {
            font-family: var(--font-d);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            font-size: 14px;
            transition: color .2s;
        }

        .footer-links a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding-top: 22px;
        }

        .footer-bottom p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.2);
            font-family: var(--font-m);
        }

        .back-top {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: all .2s;
        }

        .back-top:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        /* ── REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .rd1 {
            transition-delay: .08s;
        }

        .rd2 {
            transition-delay: .16s;
        }

        .rd3 {
            transition-delay: .24s;
        }

        /* ── RESPONSIVE ── */
        @media(max-width:1100px) {

            nav,
            .hero-inner,
            .page-body,
            .bottom-cta .inner,
            .footer-inner {
                padding-left: 40px;
                padding-right: 40px;
            }

            .content-layout {
                grid-template-columns: 1fr 320px;
                gap: 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }

        @media(max-width:900px) {

            .nav-links,
            .nav-right {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .content-layout {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
            }

            .subsidy-grid,
            .check-grid,
            .max-grid {
                grid-template-columns: 1fr;
            }

            .bottom-cta .inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        @media(max-width:640px) {

            nav,
            .hero-inner,
            .page-body,
            .bottom-cta .inner,
            .footer-inner {
                padding-left: 24px;
                padding-right: 24px;
            }

            .scheme-hero {
                padding-top: 90px;
            }

            .scheme-hero h1 {
                font-size: clamp(2.4rem, 9vw, 3.5rem);
            }

            .hero-meta-strip {
                flex-direction: column;
            }

            .meta-cell {
                border-right: none;
                padding: 14px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                margin-right: 0;
            }

            .meta-cell:last-child {
                border-bottom: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }




        .who-card-icon {
    font-size: 42px;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--black); /* optional */
}

.who-card-icon i {
    line-height: 1;
}