/* ==========================================================================
   Bisheshe SACCO Ltd. - Core Stylesheet
   Typography: Inter. Palette: deep green, red accent, black.
   ========================================================================== */

:root {
  /* Brand palette */
  --green-900: #06281c;
  --green-800: #0a3a28;
  --green-700: #0e4d34;
  --green-600: #11603f;
  --green-500: #19794f;
  --green-050: #eef4f0;

  --red-700: #9e1418;
  --red-600: #c2161b;
  --red-500: #d63b3f;

  --ink-900: #0d120f;
  --ink-700: #283330;
  --ink-500: #56635d;
  --ink-400: #7c8983;

  --surface: #ffffff;
  --bg: #f5f7f5;
  --bg-alt: #eef2ef;
  --line: #e2e8e3;
  --line-strong: #cfd8d1;

  --gold: #c8a44d;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing / radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(13, 18, 15, 0.06), 0 1px 3px rgba(13, 18, 15, 0.05);
  --shadow: 0 10px 30px rgba(13, 18, 15, 0.08);
  --shadow-lg: 0 24px 60px rgba(13, 18, 15, 0.14);

  --container: 1180px;
  --header-h: 76px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv05" 1, "ss01" 1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  color: var(--ink-900);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.018em;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.01em; }
p { color: var(--ink-500); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.97rem; letter-spacing: 0.005em;
  border: 1px solid transparent; transition: all .2s ease; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-800); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-red { background: var(--red-600); color: #fff; }
.btn-red:hover { background: var(--red-700); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--green-700); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--green-700); background: var(--green-050); }
.btn-light { background: #fff; color: var(--green-800); }
.btn-light:hover { background: #f1f5f2; transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--green-900); color: #d8e6dd;
  font-size: 0.83rem; letter-spacing: 0.01em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar a { color: #d8e6dd; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; opacity: .8; }
.topbar .reg { color: #9fc4ae; }
@media (max-width: 760px) { .topbar-left .hide-sm, .topbar-right .hide-sm { display: none; } }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s, background .25s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(13,18,15,.07); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 13px; }
.brand .logo { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 800; font-size: 1.12rem; color: var(--green-800); letter-spacing: -0.02em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-400); font-weight: 600; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  padding: 10px 13px; border-radius: var(--radius-sm);
  font-weight: 550; font-size: 0.94rem; color: var(--ink-700); transition: all .18s;
}
.nav-link:hover, .nav-link.active { color: var(--green-700); background: var(--green-050); }
.nav-link .chev { width: 14px; height: 14px; transition: transform .2s; }
.has-dropdown:hover .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 280px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease; z-index: 50;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; gap: 12px; padding: 11px 12px; border-radius: var(--radius-sm); transition: background .15s; }
.dropdown a:hover { background: var(--green-050); }
.dropdown .di-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; flex: none; }
.dropdown .di-icon svg { width: 19px; height: 19px; }
.dropdown a > span:last-child { display: flex; flex-direction: column; }
.dropdown .di-title { display: block; font-weight: 650; color: var(--ink-900); font-size: 0.93rem; }
.dropdown .di-desc { display: block; font-size: 0.78rem; color: var(--ink-400); margin-top: 2px; line-height: 1.35; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-sm); align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--green-800); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; visibility: hidden; pointer-events: none;
}
.mobile-nav .scrim { position: absolute; inset: 0; background: rgba(6,40,28,.5); opacity: 0; transition: opacity .3s; }
.mobile-nav .panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
  background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1); padding: 22px; overflow-y: auto;
}
.mobile-nav.open { visibility: visible; pointer-events: auto; }
.mobile-nav.open .scrim { opacity: 1; }
.mobile-nav.open .panel { transform: translateX(0); }
.mobile-nav .m-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-nav .m-close { width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-sm); display: grid; place-items: center; }
.mobile-nav .m-close svg { width: 22px; height: 22px; }
.m-link { display: block; padding: 13px 12px; font-weight: 600; color: var(--ink-900); border-radius: var(--radius-sm); border-bottom: 1px solid var(--line); }
.m-link:hover { background: var(--green-050); color: var(--green-700); }
.m-sub { padding: 6px 0 6px 12px; }
.m-sub a { display: block; padding: 9px 12px; color: var(--ink-500); font-size: 0.92rem; font-weight: 500; }
.m-sub a:hover { color: var(--green-700); }
.m-group-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-400); padding: 16px 12px 4px; font-weight: 700; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--green-900); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(25,121,79,.55), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(158,20,24,.18), transparent 55%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 84px 0 96px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  color: #bfe0cd; margin-bottom: 24px;
}
.hero-eyebrow svg { width: 15px; height: 15px; color: #7fd4a6; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: #7fd4a6; }
.hero-lead { color: #cfe2d7; font-size: 1.12rem; margin-top: 20px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-trust .ht { }
.hero-trust .ht-num { font-size: 1.65rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.hero-trust .ht-label { font-size: 0.82rem; color: #9fc4ae; }

.hero-visual { position: relative; }
.hero-card-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12); }
.hero-card-img img { width: 100%; height: 480px; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; bottom: 34px; background: #fff; color: var(--ink-900);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px; max-width: 270px;
}
.hero-badge .hb-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; flex: none; }
.hero-badge .hb-icon svg { width: 24px; height: 24px; }
.hero-badge .hb-title { font-weight: 700; font-size: 0.95rem; }
.hero-badge .hb-sub { font-size: 0.8rem; color: var(--ink-400); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section.alt { background: var(--surface); }
.section.dark { background: var(--green-900); color: #fff; }
.section.green { background: var(--green-700); color: #fff; }

.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red-600); margin-bottom: 14px;
}
.dark .eyebrow, .green .eyebrow { color: #7fd4a6; }
.sec-head p { margin-top: 14px; font-size: 1.06rem; }
.dark .sec-head p, .green .sec-head p { color: #cfe2d7; }

/* ---------- Marquee strip ---------- */
.strip { background: var(--green-800); color: #fff; padding: 26px 0; }
.strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 22px; align-items: center; }
.strip-item { display: flex; align-items: center; gap: 13px; }
.strip-item svg { width: 26px; height: 26px; color: #7fd4a6; flex: none; }
.strip-item .s-t { font-weight: 700; font-size: 1rem; }
.strip-item .s-s { font-size: 0.82rem; color: #aecdbb; }

/* ---------- Stat counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; padding: 22px; }
.stat .num { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: var(--green-700); letter-spacing: -0.03em; line-height: 1; }
.dark .stat .num, .green .stat .num { color: #fff; }
.stat .num .suffix { color: var(--red-600); }
.dark .stat .num .suffix, .green .stat .num .suffix { color: #7fd4a6; }
.stat .lab { margin-top: 12px; font-size: 0.92rem; color: var(--ink-500); font-weight: 500; }
.dark .stat .lab, .green .stat .lab { color: #bfe0cd; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .25s, box-shadow .25s, border-color .25s; height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card .ci {
  width: 52px; height: 52px; border-radius: 12px; background: var(--green-050);
  color: var(--green-700); display: grid; place-items: center; margin-bottom: 18px;
}
.card .ci svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 0.95rem; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--green-700); font-weight: 600; font-size: 0.9rem; }
.card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .more svg { transform: translateX(4px); }
.card.feature { border-top: 3px solid var(--green-700); }

/* product card with price */
.prod-card { display: flex; flex-direction: column; }
.prod-card .rate { display: inline-flex; align-items: baseline; gap: 6px; margin: 4px 0 14px; }
.prod-card .rate .v { font-size: 1.9rem; font-weight: 800; color: var(--green-700); letter-spacing: -0.02em; }
.prod-card .rate .u { font-size: 0.85rem; color: var(--ink-400); }
.prod-card ul.ticks { margin-top: 4px; }
.ticks li { display: flex; gap: 10px; padding: 7px 0; font-size: 0.92rem; color: var(--ink-700); }
.ticks li svg { width: 18px; height: 18px; color: var(--green-600); flex: none; margin-top: 2px; }

/* ---------- Split / media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.narrow { gap: 44px; }
.media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.tall img { height: 520px; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.fl-item { display: flex; gap: 15px; }
.fl-item .fi { width: 42px; height: 42px; border-radius: 10px; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; flex: none; }
.fl-item .fi svg { width: 21px; height: 21px; }
.fl-item h4 { font-size: 1.02rem; margin-bottom: 3px; }
.fl-item p { font-size: 0.93rem; }

/* ---------- Accordion ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.ac-item + .ac-item { border-top: 1px solid var(--line); }
.ac-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: #fff; border: none; text-align: left; font-weight: 650; color: var(--ink-900); font-size: 1.02rem; transition: background .15s; }
.ac-head:hover { background: var(--green-050); }
.ac-head .ac-ic { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; flex: none; transition: all .2s; }
.ac-head .ac-ic svg { width: 15px; height: 15px; color: var(--green-700); transition: transform .25s; }
.ac-item.open .ac-head .ac-ic { background: var(--green-700); border-color: var(--green-700); }
.ac-item.open .ac-head .ac-ic svg { color: #fff; transform: rotate(45deg); }
.ac-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.ac-body-inner { padding: 0 24px 22px; color: var(--ink-500); font-size: 0.96rem; }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.tab { padding: 12px 18px; font-weight: 600; color: var(--ink-500); border: none; background: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .18s; font-size: 0.96rem; }
.tab:hover { color: var(--green-700); }
.tab.active { color: var(--green-700); border-bottom-color: var(--green-700); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Calculator ---------- */
.calc { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.calc-inputs { padding: 36px; }
.calc-result { background: var(--green-800); color: #fff; padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.field { margin-bottom: 22px; }
.field label { display: flex; justify-content: space-between; font-weight: 600; font-size: 0.9rem; color: var(--ink-700); margin-bottom: 9px; }
.field label .val { color: var(--green-700); }
.field input[type="range"] { width: 100%; accent-color: var(--green-700); height: 5px; }
.field input[type="number"], .field select, .field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.97rem; color: var(--ink-900); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(17,96,63,.12); }
.seg { display: flex; gap: 8px; }
.seg label { flex: 1; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg .seg-btn { display: block; text-align: center; padding: 11px 8px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; color: var(--ink-500); transition: all .15s; cursor: pointer; }
.seg input:checked + .seg-btn { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.calc-result .r-label { font-size: 0.85rem; color: #9fc4ae; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.calc-result .r-amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; margin: 6px 0 2px; }
.calc-result .r-sub { color: #cfe2d7; font-size: 0.9rem; }
.calc-result .r-row { display: flex; justify-content: space-between; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: 0.92rem; }
.calc-result .r-row span:first-child { color: #aecdbb; }
.calc-note { font-size: 0.78rem; color: #9fc4ae; margin-top: 18px; line-height: 1.5; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 22px; counter-reset: step; }
.step { display: flex; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; }
.step .s-num { width: 44px; height: 44px; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.step h4 { margin-bottom: 5px; }
.step p { font-size: 0.94rem; }
.steps-num { counter-reset: stp; }

/* ---------- Requirement / fee table ---------- */
.ledger { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ledger-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; gap: 16px; }
.ledger-row + .ledger-row { border-top: 1px solid var(--line); }
.ledger-row .l-name { display: flex; align-items: center; gap: 12px; color: var(--ink-700); font-weight: 500; }
.ledger-row .l-name svg { width: 18px; height: 18px; color: var(--green-600); flex: none; }
.ledger-row .l-amt { font-weight: 700; color: var(--ink-900); white-space: nowrap; }
.ledger-row.total { background: var(--green-050); }
.ledger-row.total .l-name { font-weight: 800; color: var(--green-800); }
.ledger-row.total .l-amt { color: var(--green-800); font-size: 1.1rem; }

/* ---------- Branch cards ---------- */
.branch { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: box-shadow .2s, transform .2s; }
.branch:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.branch .b-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red-600); margin-bottom: 8px; }
.branch h3 { margin-bottom: 12px; }
.branch .b-row { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 0.92rem; color: var(--ink-500); }
.branch .b-row svg { width: 17px; height: 17px; color: var(--green-600); flex: none; margin-top: 3px; }

/* ---------- USSD code blocks ---------- */
.ussd { display: inline-flex; align-items: center; gap: 10px; background: var(--ink-900); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm); font-weight: 700; letter-spacing: 0.03em; font-size: 1.05rem; }
.ussd .net { font-size: 0.7rem; padding: 3px 8px; border-radius: 4px; background: var(--green-600); letter-spacing: 0.04em; }
.ussd .net.airtel { background: var(--red-600); }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: var(--green-900); color: #fff; position: relative; overflow: hidden; padding: 64px 0 60px; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 88% -20%, rgba(25,121,79,.5), transparent 60%); }
.page-hero .container { position: relative; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: #9fc4ae; margin-bottom: 16px; }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #cfe2d7; margin-top: 14px; max-width: 620px; font-size: 1.08rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--green-800); color: #fff; border-radius: var(--radius-lg); padding: 56px; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 100% 0%, rgba(25,121,79,.6), transparent 60%); }
.cta-band .container, .cta-inner { position: relative; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; max-width: 560px; }
.cta-inner p { color: #cfe2d7; margin-top: 10px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-900); color: #c5cfc9; padding: 70px 0 0; }
.footer a { color: #c5cfc9; transition: color .18s; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer .f-brand .brand-name { color: #fff; }
.footer .f-brand .brand-sub { color: #7c8983; }
.footer .f-about { font-size: 0.92rem; color: #97a39c; max-width: 320px; }
.footer h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer ul li { padding: 6px 0; font-size: 0.92rem; }
.f-contact li { display: flex; gap: 11px; align-items: flex-start; }
.f-contact svg { width: 17px; height: 17px; color: #7fd4a6; flex: none; margin-top: 3px; }
.f-badge { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); font-size: 0.82rem; color: #aecdbb; }
.f-badge svg { width: 18px; height: 18px; color: #7fd4a6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: #7c8983; }
.footer-bottom a { color: #97a39c; }

/* ---------- Misc ---------- */
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 100px; background: var(--green-050); color: var(--green-700); font-size: 0.8rem; font-weight: 600; }
.divider { height: 1px; background: var(--line); margin: 0; border: 0; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-24 { margin-top: 24px; }
.note { font-size: 0.85rem; color: var(--ink-400); }

.callout { display: flex; gap: 16px; background: var(--green-050); border-left: 3px solid var(--green-700); border-radius: var(--radius-sm); padding: 20px 22px; }
.callout svg { width: 22px; height: 22px; color: var(--green-700); flex: none; }
.callout h4 { margin-bottom: 4px; }
.callout p { font-size: 0.92rem; }

/* Form */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-status { display: none; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.92rem; margin-top: 6px; }
.form-status.ok { display: block; background: var(--green-050); color: var(--green-800); border: 1px solid #bfe0cd; }
.form-status.err { display: block; background: #fdecec; color: var(--red-700); border: 1px solid #f3c2c3; }
.field .err-msg { color: var(--red-600); font-size: 0.8rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--red-500); }
.field.invalid .err-msg { display: block; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 70px; }
  .hero-visual { max-width: 520px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .calc { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 980px) {
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .cta-band { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 18px; }
  .hero-card-img img { height: 360px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Enhancements: motion, hover, modal, leadership, mobile
   ========================================================================== */

/* ---- Hero ambient shimmer (subtle) ---- */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, transparent 35%, rgba(127,212,166,.07) 50%, transparent 65%);
  background-size: 220% 220%;
  animation: heroShimmer 14s ease-in-out infinite;
}
@keyframes heroShimmer { 0%{background-position:0% 0%} 50%{background-position:100% 100%} 100%{background-position:0% 0%} }
.hero-grid, .hero .container { position: relative; z-index: 1; }

/* ---- Floating hero badge ---- */
.hero-badge { animation: floatY 5s ease-in-out infinite; }
@keyframes floatY { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-9px) } }

/* ---- Image hover zoom ---- */
.media { overflow: hidden; }
.media img, .hero-card-img img { transition: transform .8s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.media:hover img, .hero-card-img:hover img { transform: scale(1.07); }
.media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.18) 45%, transparent 60%);
  transform: translateX(-120%); transition: transform .8s ease;
}
.media:hover::after { transform: translateX(120%); }

/* ---- Card micro-interactions ---- */
.card .ci { transition: background .3s ease, color .3s ease, transform .3s ease; }
.card:hover .ci { background: var(--green-700); color: #fff; transform: translateY(-2px) rotate(-3deg); }
.branch, .person { will-change: transform; }

/* ---- Button sheen ---- */
.btn-primary, .btn-red, .btn-light { position: relative; overflow: hidden; }
.btn-primary::after, .btn-red::after, .btn-light::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg); transition: left .65s ease;
}
.btn-primary:hover::after, .btn-red:hover::after, .btn-light:hover::after { left: 150%; }

/* ---- Reveal variants ---- */
.reveal.from-left { transform: translateX(-44px); }
.reveal.from-right { transform: translateX(44px); }
.reveal.zoom-in { transform: scale(.92); }
.reveal.blur-in { filter: blur(8px); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
.reveal.d6 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero::after, .hero-badge { animation: none; }
}

/* ---- Centered CTA band ---- */
.cta-band.center .cta-inner { flex-direction: column; text-align: center; align-items: center; }
.cta-band.center .cta-inner h2, .cta-band.center .cta-inner p { margin-left: auto; margin-right: auto; }
.cta-band.center .cta-inner > div:last-child { justify-content: center; }

/* ---- Back to top ---- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-700); color: #fff; border: none; display: grid; place-items: center;
  box-shadow: var(--shadow-lg); cursor: pointer; z-index: 95;
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .28s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--green-800); transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }

/* ---- Call back modal ---- */
.modal { position: fixed; inset: 0; z-index: 300; display: none; }
.modal.open { display: block; }
.modal .m-scrim { position: absolute; inset: 0; background: rgba(6,40,28,.6); backdrop-filter: blur(3px); animation: mFade .25s ease; }
.modal .m-card {
  position: absolute; left: 50%; top: 50%; width: min(500px, 92vw);
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; animation: mPop .32s cubic-bezier(.2,.8,.2,1); max-height: 94vh; overflow-y: auto;
  transform: translate(-50%, -50%);
}
@keyframes mFade { from{opacity:0} to{opacity:1} }
@keyframes mPop { from{opacity:0; transform: translate(-50%,-46%) scale(.95)} to{opacity:1; transform: translate(-50%,-50%) scale(1)} }
.modal .m-banner { background: var(--green-800); color: #fff; padding: 26px 28px; position: relative; }
.modal .m-banner h3 { color: #fff; font-size: 1.3rem; }
.modal .m-banner p { color: #cfe2d7; font-size: .92rem; margin-top: 6px; }
.modal .m-x { position: absolute; right: 16px; top: 16px; width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.12); border: none; color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .2s; }
.modal .m-x:hover { background: rgba(255,255,255,.25); }
.modal .m-x svg { width: 20px; height: 20px; }
.modal .m-body { padding: 26px 28px 30px; }

/* ---- Leadership / people ---- */
.person { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.person:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.person .p-photo { aspect-ratio: 4 / 5; overflow: hidden; background: linear-gradient(160deg, var(--green-050), #dfeae3); position: relative; }
.person .p-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.person:hover .p-photo img { transform: scale(1.06); }
.person .p-body { padding: 18px 20px 22px; }
.person .p-name { font-weight: 700; color: var(--ink-900); font-size: 1.05rem; }
.person .p-role { color: var(--green-700); font-weight: 600; font-size: .86rem; margin-top: 3px; }
.person .p-tag { display: inline-block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--red-600); margin-bottom: 9px; }

/* ---- Extra mobile polish ---- */
@media (max-width: 860px) {
  body { font-size: 16px; }
  .topbar .container { height: 38px; }
  .hero-actions .btn, .cta-inner .btn { flex: 1 1 auto; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .ussd { font-size: .98rem; padding: 9px 13px; }
  .page-hero { padding: 48px 0 44px; }
  .sec-head { margin-bottom: 36px; }
}
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .calc-result .r-amount { font-size: 2.1rem; }
  .cta-band { padding: 32px 22px; }
  .form-card { padding: 24px 20px; }
  .modal .m-body { padding: 22px 20px 26px; }
  .to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
  .step { padding: 20px; gap: 15px; }
}

/* ==========================================================================
   Round 2: MTN colour, exchange rates, extra tools, mobile centering
   ========================================================================== */

/* MTN brand yellow (Airtel stays red) */
.ussd .net.mtn { background: #ffcc00; color: #1a1a1a; }

/* ---- Exchange rates board ---- */
.rates-board { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.rates-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 24px; background: var(--green-800); color: #fff; flex-wrap: wrap; }
.rates-head .rh-title { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.rates-head .rh-title svg { width: 20px; height: 20px; color: #7fd4a6; }
.rates-head .rh-meta { font-size: .8rem; color: #aecdbb; }
.rates-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: center; padding: 15px 24px; transition: background .15s; }
.rates-row + .rates-row { border-top: 1px solid var(--line); }
.rates-row:hover { background: var(--green-050); }
.rates-row.head { background: var(--bg); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); font-weight: 700; padding: 12px 24px; }
.rates-row .cur { display: flex; align-items: center; gap: 12px; font-weight: 650; color: var(--ink-900); }
.rates-row .flag { width: 34px; height: 26px; border-radius: 5px; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; font-size: .72rem; font-weight: 800; letter-spacing: .02em; flex: none; }
.rates-row .val { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink-700); }
.rates-row .buy { color: var(--green-700); }
.rates-note { padding: 14px 24px; font-size: .8rem; color: var(--ink-400); background: var(--bg); border-top: 1px solid var(--line); }

/* ---- Compact service tiles ---- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile { display: flex; gap: 14px; align-items: flex-start; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .22s, box-shadow .22s, border-color .22s; }
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.tile .t-ic { width: 42px; height: 42px; border-radius: 10px; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; flex: none; transition: background .25s, color .25s; }
.tile:hover .t-ic { background: var(--green-700); color: #fff; }
.tile .t-ic svg { width: 21px; height: 21px; }
.tile h4 { font-size: 1rem; margin-bottom: 3px; }
.tile p { font-size: .88rem; }

/* ---- Bigger contact message field ---- */
.field textarea { min-height: 150px; resize: vertical; line-height: 1.5; }
.field textarea.tall { min-height: 190px; }

@media (max-width: 980px) { .tiles { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Mobile: centre content for a clean, focused layout
   ========================================================================== */
@media (max-width: 760px) {
  .hero-copy { text-align: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; text-align: center; gap: 24px; }
  .hero-visual { margin-left: auto; margin-right: auto; }

  .sec-head { text-align: center; margin-left: auto; margin-right: auto; }

  /* Centre the prose inside split sections, keep lists and cards left aligned */
  .split > div { text-align: center; }
  .split > div > p { margin-left: auto; margin-right: auto; }
  .split .feature-list, .split .ticks, .split .ledger, .split .callout,
  .split .accordion, .split .form-card, .split .calc, .split .card,
  .split .grid, .split .rates-board { text-align: left; }
  .split .feature-list .fl-item { text-align: left; }

  .rates-row { grid-template-columns: 1.3fr 1fr 1fr; padding-left: 16px; padding-right: 16px; }
  .rates-head, .rates-note { padding-left: 16px; padding-right: 16px; }
  .person .p-body { text-align: center; }
  .person .p-tag { margin-left: auto; margin-right: auto; }
  .hero-badge { left: 50%; transform: translateX(-50%); right: auto; bottom: -22px; }
}
@media (max-width: 600px) {
  .tiles { grid-template-columns: 1fr; }
  .hero-card-img img { height: 320px; }
  .hero-trust .ht-num { font-size: 1.4rem; }
}

/* ==========================================================================
   Round 3: floating glass header, full images, mobile polish, WhatsApp
   ========================================================================== */

html { scroll-padding-top: 110px; }

/* ---- Floating glass header (boxed, rounded, spaced) ---- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  border: none; padding: 14px 0; box-shadow: none;
}
.header .container.nav {
  height: 66px; padding: 8px 10px 8px 20px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(13, 18, 15, 0.10), inset 0 1px 0 rgba(255,255,255,.5);
  transition: box-shadow .25s ease, background .25s ease;
}
.header.scrolled { box-shadow: none; }
.header.scrolled .container.nav {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 38px rgba(13, 18, 15, 0.16), inset 0 1px 0 rgba(255,255,255,.6);
}
.header .nav-cta .btn-primary { border-radius: 999px; }
.header .nav-toggle { border-radius: 999px; }

/* ---- Images shown in full, never cropped ---- */
.hero-card-img img { height: auto; object-fit: contain; }
.media img { height: auto; object-fit: contain; background: var(--green-050); }
.media.tall img { height: auto; }
.person .p-photo { aspect-ratio: auto; }
.person .p-photo img { height: auto; object-fit: contain; }

/* ---- Hero trust stats: always one line ---- */
.hero-trust { flex-wrap: nowrap; }

/* ---- Floating WhatsApp button ---- */
.wa-float {
  position: fixed; left: 20px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center; z-index: 95;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45); transition: transform .22s ease, box-shadow .22s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }

/* ---- Mobile header + hero spacing ---- */
@media (max-width: 860px) {
  .header { padding: 10px 0; }
  .header .container.nav { height: 56px; padding: 6px 8px 6px 14px; }
  .brand .logo { width: 40px; height: 40px; }
  /* Remove site name and slogan on mobile, keep the logo only */
  .brand-text { display: none; }
}
@media (max-width: 760px) {
  /* Space the hero content away from the floating header */
  .hero-grid { padding-top: 44px; }
  .page-hero { padding-top: 40px; }

  /* License badge: place it neatly in flow, not floating */
  .hero-badge {
    position: static; transform: none; left: auto; right: auto; bottom: auto;
    margin: 18px auto 0; max-width: 380px; width: 100%; animation: none;
  }
}
@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; left: 16px; bottom: 74px; }
  .wa-float svg { width: 29px; height: 29px; }
  .hero-trust { gap: 12px; }
  .hero-trust .ht-num { font-size: 1.25rem; }
  .hero-trust .ht-label { font-size: 0.7rem; line-height: 1.25; }
}

/* ==========================================================================
   Round 4: smaller mobile fonts + language toggle
   ========================================================================== */

/* ---- Language toggle (in the top bar) ---- */
.lang-toggle { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; overflow: hidden; }
.lang-toggle button {
  background: transparent; border: none; color: #9fc4ae; font-family: inherit;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; padding: 4px 10px; line-height: 1.6; cursor: pointer; transition: background .18s, color .18s;
}
.lang-toggle button.active { background: var(--green-600); color: #fff; }
.lang-toggle button:not(.active):hover { color: #fff; }

/* ---- Smaller, tighter typography on mobile ---- */
@media (max-width: 640px) {
  body { font-size: 14.5px; }
  h1 { font-size: clamp(1.7rem, 7.4vw, 2.15rem); }
  h2 { font-size: clamp(1.35rem, 5.6vw, 1.75rem); }
  h3 { font-size: 1.05rem; }
  .hero-lead { font-size: 1rem; }
  .sec-head p, .page-hero p { font-size: 0.96rem; }
  .lead, p { font-size: 0.95rem; }
  .card p, .tile p, .branch .b-row, .ticks li { font-size: 0.88rem; }
  .btn, .btn-lg { font-size: 0.92rem; padding: 13px 20px; }
  .stat .num { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .calc-result .r-amount { font-size: 1.9rem; }
  .eyebrow { font-size: 0.72rem; }
  .fl-item h4, .step h4 { font-size: 0.98rem; }
  .fl-item p, .step p { font-size: 0.88rem; }
  .ussd { font-size: 0.9rem; }
  .crumbs { font-size: 0.78rem; }
}
@media (max-width: 400px) {
  body { font-size: 14px; }
  h1 { font-size: clamp(1.55rem, 8vw, 1.95rem); }
}

/* ---------- Initials avatar (leaders without a photo) ---------- */
.person .p-photo .mono {
  display: flex; align-items: center; justify-content: center;
  min-height: 150px; aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--green-050), #dfeae3);
  color: var(--green-700); font-weight: 800; font-size: 2.3rem; letter-spacing: .04em;
}

/* ---------- Story figures with captions ---------- */
.figure { margin: 0; }
.figure figcaption {
  display: flex; gap: 9px; align-items: flex-start;
  margin-top: 14px; font-size: 0.93rem; color: var(--ink-500); line-height: 1.5;
}
.figure figcaption svg { width: 17px; height: 17px; color: var(--green-600); flex: none; margin-top: 2px; }

/* ---------- Article prose (success stories) ---------- */
.prose { max-width: 760px; }
.prose h3 { font-size: 1.2rem; margin: 30px 0 10px; }
.prose h3:first-child { margin-top: 0; }
.prose p { margin-top: 12px; }
.prose ul { margin: 12px 0 0; padding-left: 4px; list-style: none; }
.prose ul li { position: relative; padding-left: 26px; margin-top: 9px; color: var(--ink-500); font-size: 0.96rem; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--green-500);
}
.byline { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.byline .b-mono { width: 46px; height: 46px; border-radius: 50%; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; font-weight: 800; flex: none; }
.byline .b-name { font-weight: 700; color: var(--ink-900); }
.byline .b-meta { font-size: 0.85rem; color: var(--ink-500); }

/* ---------- Data table (impact figures) ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.data-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 0.92rem; min-width: 460px; }
.data-table th, .data-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.data-table thead th { background: var(--green-050); color: var(--green-800); font-weight: 700; white-space: nowrap; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table .num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.data-table tbody th { font-weight: 600; color: var(--ink-700); }
