    /* ═════════════════════════════════════════════════════════════
       PAGE-SPECIFIC STYLES — all built on top of style.css tokens
    ═════════════════════════════════════════════════════════════ */

    /* ── Hero ──────────────────────────────────────────────────── */
    .impact-hero {
      background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 50%, #083325 100%);
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .impact-hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at 10% 60%, rgba(255,255,255,.05) 0%, transparent 50%),
        radial-gradient(circle at 88% 20%, rgba(245,166,35,.07) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }
    .impact-hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-l), #22c55e, var(--amber), var(--brand-l));
    }

    /* Animated eyebrow pill */
    .hero-pill {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
      border-radius: 30px; padding: 6px 18px;
      font-size: .76rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: #bbf7d0;
      margin-bottom: 1.2rem;
    }
    .hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: livePulse 2s ease-in-out infinite; }
    @keyframes livePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.75)} }

    .impact-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 900; color: var(--white);
      line-height: 1.1; margin-bottom: 1.2rem;
    }
    .impact-hero h1 em { font-style: italic; color: var(--amber); }

    .impact-hero .hero-desc {
      font-size: 1.1rem; color: rgba(255,255,255,.84);
      max-width: 640px; line-height: 1.85; margin-bottom: 2rem;
    }

    /* Quick-stat strip inside hero */
    .hero-stats-row {
      display: flex; gap: 2.5rem; flex-wrap: wrap;
      margin-top: 2.5rem; padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.15);
    }
    .hsr-item { text-align: left; }
    .hsr-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--amber); line-height: 1; }
    .hsr-lbl { font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: 3px; }

    /* ── Impact Stats Strip ─────────────────────────────────────── */
    .impact-strip {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      background: var(--white);
      border-bottom: 1px solid var(--border-color);
    }
    @media (max-width: 960px) { .impact-strip { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 540px) { .impact-strip { grid-template-columns: repeat(2, 1fr); } }

    .is-cell {
      padding: 2.4rem 1rem;
      text-align: center;
      border-right: 1px solid var(--border-color);
      transition: var(--transition);
    }
    .is-cell:last-child { border-right: none; }
    .is-cell:hover { background: var(--green-pale); }
    .is-cell:hover .is-num { color: var(--green-deep); }
    .is-icon { font-size: 1.8rem; margin-bottom: .4rem; }
    .is-num  { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--green-mid); line-height: 1; transition: var(--transition); }
    .is-lbl  { font-size: .73rem; font-weight: 600; color: var(--slate); letter-spacing: .06em; text-transform: uppercase; margin-top: .3rem; line-height: 1.4; }

    /* ── Section header ─────────────────────────────────────────── */
    .sh { text-align: center; margin-bottom: 3rem; }
    .sh h2 { color: var(--text-dark); font-size: clamp(1.85rem, 3.5vw, 2.5rem); margin-bottom: .75rem; }
    .sh p  { max-width: 680px; margin: 0 auto; color: var(--text-medium); line-height: 1.9; font-size: 1.02rem; }
    .sh--dark h2 { color: var(--white); }
    .sh--dark p  { color: rgba(255,255,255,.75); }
    .sh--dark .section-tag { color: var(--amber); }
    .sh--dark .section-tag::before { background: var(--amber); }

    /* ── Prog-impact grid ───────────────────────────────────────── */
    .pi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    @media (max-width: 900px) { .pi-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 520px) { .pi-grid { grid-template-columns: 1fr; } }

    .pi-card {
      background: var(--bg-white);
      border-radius: 20px;
      padding: 2rem 1.8rem;
      box-shadow: var(--shadow-sm);
      border-top: 4px solid var(--primary-color);
      transition: var(--transition);
      position: relative; overflow: hidden;
    }
    .pi-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; transform: scaleX(0); transform-origin: left;
      transition: transform .4s ease;
    }
    .pi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-deep); }
    .pi-card:hover::after { transform: scaleX(1); }
    .pi-card:nth-child(1) { border-top-color: var(--primary-color); }
    .pi-card:nth-child(1)::after { background: var(--primary-color); }
    .pi-card:nth-child(2) { border-top-color: var(--secondary-color); }
    .pi-card:nth-child(2)::after { background: var(--secondary-color); }
    .pi-card:nth-child(3) { border-top-color: var(--accent-color); }
    .pi-card:nth-child(3)::after { background: var(--accent-color); }
    .pi-card:nth-child(4) { border-top-color: var(--green-mid); }
    .pi-card:nth-child(4)::after { background: var(--green-mid); }
    .pi-card:nth-child(5) { border-top-color: var(--amber); }
    .pi-card:nth-child(5)::after { background: var(--amber); }
    .pi-card:nth-child(6) { border-top-color: var(--teal); }
    .pi-card:nth-child(6)::after { background: var(--teal); }

    .pi-icon { font-size: 2.2rem; margin-bottom: .8rem; }
    .pi-num  { font-family: 'Bebas Neue', sans-serif; font-size: 3.2rem; color: var(--primary-color); line-height: 1; margin-bottom: .25rem; }
    .pi-card:nth-child(2) .pi-num { color: var(--secondary-color); }
    .pi-card:nth-child(3) .pi-num { color: var(--accent-color); }
    .pi-card:nth-child(4) .pi-num { color: var(--green-mid); }
    .pi-card:nth-child(5) .pi-num { color: var(--amber-dark); }
    .pi-card:nth-child(6) .pi-num { color: var(--teal); }
    .pi-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 0 0 .5rem; }
    .pi-desc  { font-size: .87rem; color: var(--text-medium); line-height: 1.75; margin: 0; }

    /* ── Note bar ───────────────────────────────────────────────── */
    .note-bar {
      display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap;
      background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
      border-radius: 16px; padding: 1.5rem 2rem; margin-top: 2.5rem;
    }
    .note-bar .ni { font-size: 1.7rem; flex-shrink: 0; margin-top: 2px; }
    .note-bar p { color: rgba(255,255,255,.9); font-size: .93rem; line-height: 1.75; margin: 0; flex: 1; }
    .note-bar strong { color: #bbf7d0; }

    /* ── Fund utilisation ───────────────────────────────────────── */
    .fund-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      max-width: 980px;
      margin: 0 auto;
    }
    @media (max-width: 720px) { .fund-grid { grid-template-columns: 1fr; } }

    .fund-box { background: var(--bg-white); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-sm); }
    .fund-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary-color); margin-bottom: 1.5rem; text-align: center; }

    .util-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: .9rem 1.2rem; background: var(--bg-light);
      border-radius: 10px; margin-bottom: .8rem;
    }
    .util-row:last-of-type { margin-bottom: 0; }
    .util-label { font-weight: 600; font-size: .93rem; color: var(--text-dark); }
    .util-pct   { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--green-mid); }

    .fund-note {
      margin-top: 1.5rem; padding: 1rem 1.4rem;
      background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
      border-radius: 10px; text-align: center;
      font-size: .9rem; font-weight: 600; color: #bbf7d0;
    }

    /* Bar chart */
    .bar-row { padding: .85rem 0; border-bottom: 1px solid var(--border-color); }
    .bar-row:last-child { border-bottom: none; }
    .bar-meta { display: flex; justify-content: space-between; margin-bottom: .45rem; }
    .bar-meta .bl { font-size: .87rem; color: var(--text-medium); }
    .bar-meta .bp { font-size: .87rem; font-weight: 700; color: var(--text-dark); }
    .bar-track { height: 10px; background: var(--border-color); border-radius: 6px; overflow: hidden; }
    .bar-fill  { height: 100%; border-radius: 6px; }

    /* ── Timeline ───────────────────────────────────────────────── */
    .timeline { position: relative; max-width: 820px; margin: 0 auto; }
    .timeline::before {
      content: ''; position: absolute; left: 28px; top: 8px; bottom: 8px;
      width: 3px; background: linear-gradient(to bottom, var(--green-mid), var(--green-light));
      border-radius: 3px;
    }
    .tl-item { display: flex; gap: 1.5rem; padding-bottom: 2.2rem; }
    .tl-dot {
      width: 56px; height: 56px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; box-shadow: 0 4px 14px rgba(26,122,78,.35); z-index: 1;
    }
    .tl-body {
      background: var(--bg-white); border-radius: 16px;
      padding: 1.5rem 1.8rem; box-shadow: var(--shadow-sm);
      flex: 1; border-left: 4px solid var(--green-light);
    }
    .tl-date  { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-mid); margin-bottom: .3rem; }
    .tl-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 0 0 .5rem; }
    .tl-desc  { font-size: .87rem; color: var(--text-medium); line-height: 1.75; margin: 0; }

    /* ── Accountability cards (dark) ────────────────────────────── */
    .acc-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 1.4rem;
    }
    @media (max-width: 900px) { .acc-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 480px) { .acc-grid { grid-template-columns: 1fr; } }

    .acc-card {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
      border-radius: 18px; padding: 2rem 1.5rem; text-align: center;
      transition: var(--transition);
    }
    .acc-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
    .acc-icon { font-size: 2.2rem; margin-bottom: .8rem; }
    .acc-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin: 0 0 .6rem; }
    .acc-card p  { font-size: .84rem; color: rgba(255,255,255,.7); line-height: 1.7; margin: 0; }

    /* Trust badges (dark bg version) */
    .trust-badges-row {
      display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem;
      margin-top: 2.5rem;
    }
    .t-badge {
      display: flex; align-items: center; gap: .5rem;
      background: var(--white); border: 1.5px solid #86efac;
      border-radius: 30px; padding: .45rem 1.1rem;
      font-size: .83rem; font-weight: 600; color: var(--green-deep);
      box-shadow: 0 2px 8px rgba(22,163,74,.08);
    }
    .t-badge::before { content: "✓"; color: var(--green-light); font-weight: 900; }

    /* ── Reports ────────────────────────────────────────────────── */
    .reports-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 1.8rem;
      max-width: 920px;
      margin: 0 auto;
    }
    @media (max-width: 640px) { .reports-grid { grid-template-columns: 1fr; } }

    .rep-card { background: var(--bg-white); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
    .rep-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }
    .rep-head { padding: 1.1rem 1.5rem; display: flex; align-items: center; gap: .8rem; }
    .rep-head-icon { font-size: 1.5rem; }
    .rep-head h3 { color: var(--white); font-size: 1rem; margin: 0; }
    .rep-list { list-style: none; }
    .rep-list li { border-bottom: 1px solid var(--border-color); }
    .rep-list li:last-child { border-bottom: none; }
    .rep-list a {
      display: flex; justify-content: space-between; align-items: center;
      padding: .95rem 1.5rem; color: var(--text-medium); font-size: .9rem;
      transition: background .2s, padding-left .2s, color .2s;
    }
    .rep-list a:hover { background: var(--green-pale); padding-left: 1.9rem; color: var(--green-deep); }
    .rep-dl {
      font-size: .76rem; font-weight: 700; color: var(--primary-color);
      background: var(--hc-blue-pale); padding: 4px 10px; border-radius: 20px; white-space: nowrap; flex-shrink: 0;
    }

    /* ── FAQ accordion ──────────────────────────────────────────── */
    .faq-stack { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .85rem; }
    .faq-item-a { background: var(--bg-white); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
    .faq-item-a summary {
      padding: 1.2rem 1.6rem; font-weight: 700; color: var(--green-deep);
      font-size: .95rem; cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    }
    .faq-item-a summary::-webkit-details-marker { display: none; }
    .faq-plus { font-size: 1.25rem; color: var(--green-light); flex-shrink: 0; transition: transform .2s; }
    .faq-item-a[open] .faq-plus { transform: rotate(45deg); }
    .faq-body { padding: 0 1.6rem 1.3rem; color: var(--text-medium); line-height: 1.8; font-size: .92rem; }
    .faq-body a { color: var(--green-mid); font-weight: 600; }

    /* ── Responsive ─────────────────────────────────────────────── */
    @media (max-width: 768px) {
      .impact-hero { padding: 90px 0 60px; }
      .hero-stats-row { gap: 1.5rem; }
      .hsr-num { font-size: 2rem; }
    }