:root {
  --ink: #0d1117;
  --ink2: #1f2937;
  --muted: #6b7280;
  --muted2: #9ca3af;
  --line: #e5e7eb;
  --paper: #ffffff;
  --wash: #f8fafc;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --teal-dark: #0f4c46;
  --teal-glow: rgba(13, 148, 136, 0.18);
  --green: #16a34a;
  --amber: #f59e0b;
  --red: #dc2626;
  --graphite: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--wash);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; }

/* ─── HEADER ──────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 60px);
  background: rgba(10, 14, 20, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.site-header.scrolled {
  background: rgba(10, 14, 20, 0.95);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: white;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark.small { width: 30px; height: 30px; border-radius: 8px; }

.brand-mark img { width: 26px; height: 26px; object-fit: contain; }
.brand-mark.small img { width: 22px; height: 22px; }

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: white;
}

.brand-accent { color: var(--teal-light); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}

.site-nav a:hover { color: white; background: rgba(255,255,255,0.08); }

.nav-cta {
  color: white !important;
  background: var(--teal) !important;
  font-weight: 700 !important;
}

.nav-cta:hover { background: var(--teal-light) !important; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 2px;
  transition: 0.2s;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn-primary, .btn-ghost, .btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  color: white;
  background: var(--teal);
}

.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(13,148,136,0.4); }

.btn-ghost {
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}

.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); }

.btn-ghost-dark {
  color: var(--teal);
  border: 1.5px solid var(--teal);
  background: transparent;
}

.btn-ghost-dark:hover { background: var(--teal-glow); }

/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 140px clamp(18px, 5vw, 80px) 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(6, 12, 20, 0.97) 0%,
    rgba(6, 12, 20, 0.82) 50%,
    rgba(6, 12, 20, 0.45) 100%
  );
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  margin-bottom: 28px;
  border-radius: 999px;
  border: 1px solid rgba(13, 184, 166, 0.4);
  background: rgba(13, 148, 136, 0.12);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(20,184,166,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(20,184,166,0.1); }
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.03;
  margin-bottom: 22px;
}

.hero-highlight {
  color: var(--teal-light);
}

.hero-copy {
  max-width: 580px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hstat { padding: 0 20px; }
.hstat:first-child { padding-left: 0; }

.hstat strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: white;
  line-height: 1;
}

.hstat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hstat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* Hero preview card */
.hero-pos-preview {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.preview-card {
  width: 280px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.preview-title { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

.preview-pill {
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 600;
}

.preview-items { padding: 10px 16px; }

.preview-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}

.preview-item strong { color: white; font-weight: 600; }

.preview-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(13,148,136,0.2);
  border-top: 1px solid rgba(13,148,136,0.3);
  color: white;
  font-weight: 700;
}

.preview-payment {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
}

.pay-tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
}

.pay-tag.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

/* ─── TRUST BAR ───────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
  padding: 16px clamp(18px, 4vw, 60px);
  background: var(--graphite);
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-bar .sep { margin: 0 14px; opacity: 0.3; }

/* ─── SECTIONS ────────────────────────────────── */
.section {
  padding: 96px clamp(18px, 5vw, 80px);
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label.light { color: var(--teal-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 18px;
}

.section-sub {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 52px;
}

/* ─── FEATURES GRID ───────────────────────────── */
.features-section { background: var(--paper); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feat-card {
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--wash);
  transition: box-shadow 0.2s, transform 0.2s;
}

.feat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feat-large {
  grid-column: span 2;
  background: linear-gradient(135deg, #f0fdf8 0%, #e6f7f5 100%);
  border-color: rgba(13,148,136,0.18);
}

.feat-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feat-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.feat-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(13,148,136,0.1);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ─── GHANA STRIP ─────────────────────────────── */
.ghana-strip {
  background: linear-gradient(135deg, #0a1628 0%, #0d2438 100%);
  padding: 52px clamp(18px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ghana-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.ghana-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ghana-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  filter: invert(1) brightness(0.8);
}

.ghana-icon-box {
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
}

.ghana-item strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.ghana-item span {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ─── DEMO SECTION ────────────────────────────── */
.demo-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  background: var(--wash);
}

.demo-left p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.payment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-tab {
  padding: 8px 16px;
  min-height: 38px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.15s;
}

.payment-tab:hover { border-color: var(--teal); color: var(--teal); }

.payment-tab.active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

/* POS Panel */
.pos-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--graphite);
  color: white;
}

.screen-label {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.screen-top strong { font-size: 1.05rem; }

.status-pill {
  padding: 6px 12px;
  border-radius: 999px;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px;
}

.product-card {
  padding: 12px;
  min-height: 82px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--wash);
  cursor: pointer;
  text-align: left;
  transition: 0.15s;
  font-size: 0.85rem;
}

.product-card:hover { border-color: var(--teal); background: #f0fdf8; }

.product-card strong { display: block; margin-bottom: 6px; font-size: 0.88rem; }

.product-card span { color: var(--teal); font-weight: 700; }

.receipt {
  border-top: 1px solid var(--line);
  padding: 14px;
}

.receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.receipt-head strong { font-size: 0.92rem; }

.clear-btn {
  padding: 5px 12px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
  font-weight: 600;
  transition: 0.15s;
}

.clear-btn:hover { border-color: var(--red); color: var(--red); }

.cart-lines { min-height: 100px; padding: 10px 0; }

.cart-empty { color: var(--muted); font-size: 0.88rem; margin: 0; }

.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.88rem;
}

.cart-line:last-child { border-bottom: 0; }

.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 10px;
  font-size: 1.1rem;
  border-top: 2px solid var(--line);
}

.complete-btn {
  width: 100%;
  min-height: 46px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.15s;
}

.complete-btn:hover { background: var(--teal-light); }

/* ─── MODULES SECTION ─────────────────────────── */
.module-section { background: var(--paper); }

.module-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.module-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 8px 16px;
  min-height: 38px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.15s;
}

.filter-btn:hover { border-color: var(--teal); color: var(--teal); }

.filter-btn.active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.module-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) 1.35fr;
  gap: 16px;
}

.module-list { display: grid; gap: 8px; align-content: start; }

.module-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: 0.15s;
}

.module-btn:hover { border-color: var(--teal); color: var(--teal); }

.module-btn.active {
  border-color: var(--teal);
  background: linear-gradient(135deg, #f0fdf8, #e6f7f5);
  color: var(--teal-dark);
}

.module-detail {
  min-height: 360px;
  padding: clamp(24px, 4vw, 40px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
}

.module-detail h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 12px;
}

.module-detail p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.feature-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ccfbf1;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.module-detail ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── REPORTS SECTION ─────────────────────────── */
.report-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  background: #080e1a;
  color: white;
}

.report-left p { color: rgba(255,255,255,0.6); font-size: 1rem; margin: 0 0 28px; }

.report-left .section-title { color: white; }

.report-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  font-weight: 500;
}

.report-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(13,148,136,0.2);
  color: var(--teal-light);
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.report-board {
  display: grid;
  gap: 14px;
}

.report-card {
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: white;
}

.report-card > span, .calculator label {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.report-card > strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 100px;
  gap: 8px;
  align-items: end;
}

.bar-chart span {
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--teal-light), rgba(13,148,136,0.3));
}

.mini-list { display: grid; gap: 0; }

.mini-list p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.mini-list p b { color: white; }

.calculator input {
  width: 100%;
  margin: 8px 0 16px;
  accent-color: var(--teal-light);
}

.calculator > strong { font-size: 1.4rem; margin-top: 4px; margin-bottom: 0; }

/* ─── LAUNCH SECTION ──────────────────────────── */
.launch-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  background: var(--paper);
}

.launch-left p { color: var(--muted); font-size: 1rem; }

.checklist {
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: white;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.check-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}

.check-item:last-child { border-bottom: 0; }
.check-item:hover { background: var(--wash); }

.check-item button {
  width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: white;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.15s;
}

.check-item.pending button {
  background: white;
  border: 1.5px solid var(--line);
  color: transparent;
}

.check-item strong { display: block; font-size: 0.92rem; font-weight: 700; }

.check-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

/* ─── CTA SECTION ─────────────────────────────── */
.cta-section {
  padding: 100px clamp(18px, 5vw, 80px);
  background: linear-gradient(135deg, #0a1628 0%, #0d2438 60%, #072320 100%);
  text-align: center;
}

.cta-inner { max-width: 640px; margin: 0 auto; }

.cta-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(13,184,166,0.35);
  background: rgba(13,148,136,0.12);
  color: var(--teal-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}

.cta-section h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── FOOTER ──────────────────────────────────── */
.site-footer {
  background: var(--graphite);
  padding: 60px clamp(18px, 5vw, 80px) 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: white;
  font-size: 1rem;
  font-weight: 800;
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 340px;
  margin: 0;
}

.footer-links { display: grid; gap: 10px; align-content: start; }

.footer-links strong {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.15s;
}

.footer-links a:hover { color: white; }

.footer-ulbridge {
  color: var(--teal-light);
  font-weight: 600;
  transition: color 0.15s;
}

.footer-ulbridge:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  text-align: center;
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-large { grid-column: span 2; }
  .ghana-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(10, 14, 20, 0.97);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .site-nav.open { display: flex; }

  .site-nav a { padding: 12px 16px; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-pos-preview { display: none; }

  .demo-section,
  .report-section,
  .launch-section {
    grid-template-columns: 1fr;
  }

  .module-header { flex-direction: column; align-items: flex-start; }

  .module-layout { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .feat-large { grid-column: span 1; }
  .ghana-strip-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar .sep { display: none; }
  .trust-bar { gap: 10px; flex-direction: column; text-align: center; }
  .hstat-div { display: none; }
  .hero-stats { gap: 16px; }
}
