/* ============================================================
   ZIIP Wallet — Modern Fintech Styles
   ============================================================ */

:root {
  /* Backgrounds */
  --bg: #f8fafc;
  --bg-dark: #0a0f1e;
  --bg-dark-2: #111827;
  --panel: #ffffff;
  --panel-light: #f1f5f9;

  /* Text */
  --text: #0f172a;
  --muted: #64748b;
  --muted-2: #94a3b8;

  /* Brand — gold + cyan matching ZIIP XIR logo */
  --primary: #C8A015;
  --primary-light: #E5B84A;
  --primary-dark: #9A7A10;
  --secondary: #0369A1;
  --accent: #0EA5E9;

  /* Utilities */
  --border: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.08);
  --radius: 0.875rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.18);
}

/* ── Lucide Icons ── */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke-width: 2;
}

.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 22px; height: 22px; }
.icon-lg { width: 28px; height: 28px; }

/* ── Flag images ── */
.tw-flag    { width: 32px; height: auto; border-radius: 4px; flex-shrink: 0; }
.ncb-flag-img { width: 40px; height: auto; border-radius: 4px; flex-shrink: 0; }
.hc-flag-img  { width: 40px; height: auto; border-radius: 4px; display: block; margin: 0 auto 0.4rem; }
.corridor-flag-img { width: 56px; height: auto; border-radius: 6px; display: block; margin: 0 auto 1rem; }
.pill-flag-img { width: 16px; height: auto; border-radius: 2px; vertical-align: middle; display: inline-block; }
.wc-flag-img   { width: 16px; height: auto; border-radius: 2px; vertical-align: middle; display: inline-block; }
.vp-flag-img   { width: 40px; height: auto; border-radius: 4px; display: block; margin: 0 auto 0.3rem; }
.vp-flag-muted { opacity: 0.45; filter: grayscale(0.3); }
.footer-countries img { width: 16px; border-radius: 2px; vertical-align: middle; display: inline-block; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
h1, h2, h3 { line-height: 1.2; margin-top: 0; }
ul { padding-left: 1.25rem; margin: 0; }
li { margin-bottom: 0.5rem; }

/* ── Layout ── */
.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-img-footer {
  height: 60px;
}

/* Nav links */
nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-nav {
  background: linear-gradient(135deg, #C8A015, #E5B84A) !important;
  color: #0a0f1e !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 0.5rem !important;
  margin-left: 0.5rem;
}

.btn-nav:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px);
  color: #0a0f1e !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-dark);
  color: #fff;
  font-size: 1.25rem;
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg-dark);
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 160, 21, 0.22) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 70%);
  bottom: -150px;
  left: -50px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

/* ── Powered by Choice Bank (hero) ── */
.powered-by-bank {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.625rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.pb-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pb-bank {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: -0.01em;
}

.pb-icon {
  width: 15px;
  height: 15px;
  stroke: var(--primary-light);
  stroke-width: 2;
}

/* Hero trust — bank highlight */
.hero-trust-bank {
  background: rgba(200, 160, 21, 0.12) !important;
  border: 1px solid rgba(200, 160, 21, 0.3) !important;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  color: var(--primary-light) !important;
}

.hero-trust-bank span:last-child {
  font-weight: 700 !important;
  color: var(--primary-light) !important;
}

/* Stats bar — bank item */
.stat-item-bank {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.stat-item-bank strong {
  color: var(--primary) !important;
}

.stat-bank-icon {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 2;
  flex-shrink: 0;
}

/* Live badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 160, 21, 0.15);
  border: 1px solid rgba(229, 184, 74, 0.4);
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.gradient-text {
  background: linear-gradient(90deg, #F7DC6A, #E5B84A, #0EA5E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
}

/* Hero buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #C8A015, #E5B84A);
  color: #0a0f1e;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(200, 160, 21, 0.4);
  transition: all 0.2s;
}

.btn-primary:hover {
  color: #0a0f1e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 160, 21, 0.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

/* Hero trust pills */
.hero-trust {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.ht-icon {
  width: 15px;
  height: 15px;
  stroke: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* ── Transfer Widget ── */
.transfer-widget {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(5,150,105,0.15);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.tw-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.tw-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.tw-dot-green { background: #34d399; }
.tw-dot-yellow { background: #fbbf24; }
.tw-dot-red { background: #f87171; }

.tw-title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.tw-body { padding: 1.5rem; }

.tw-country {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
}

.tw-flag { font-size: 2rem; line-height: 1; }

.tw-country-info {
  flex: 1;
}

.tw-country-info strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.tw-country-info span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.tw-amount {
  text-align: right;
}

.tw-currency {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.1rem;
}

.tw-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.tw-arrow-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.5rem;
}

.tw-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(5,150,105,0.4), transparent);
}

.tw-arrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.35);
  color: #38BDF8;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.tw-details {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 0.625rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.tw-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tw-row:last-child { border-bottom: none; }
.tw-row span { color: rgba(255,255,255,0.45); }
.tw-row strong { color: rgba(255,255,255,0.85); }
.tw-green { color: #38BDF8 !important; }

.tw-send-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  background: linear-gradient(135deg, #C8A015, #E5B84A);
  color: #0a0f1e;
  border: none;
  border-radius: 0.625rem;
  padding: 0.875rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.tw-send-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.75rem 2rem;
}

.stat-item strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.stat-item span {
  font-size: 0.8rem;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--panel-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-dark {
  background: var(--bg-dark);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  background: rgba(200, 160, 21, 0.1);
  border: 1px solid rgba(200, 160, 21, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.tag-light {
  color: var(--primary-light);
  background: rgba(229, 184, 74, 0.12);
  border-color: rgba(229, 184, 74, 0.35);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1rem;
}

h2 span { color: var(--primary); }

.text-light { color: #fff; }
.text-muted-light { color: rgba(255,255,255,0.55); }

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Widget country tags below transfer card */
.widget-countries {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.875rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.wc-flag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
}

/* Steps footnote */
.steps-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

.steps-footnote [data-lucide] {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.4);
  vertical-align: middle;
  margin-right: 0.3rem;
}

.sf-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ── Cards ── */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(5, 150, 105, 0.3);
}

/* ============================================================
   FEATURES
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 1.75rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(200,160,21,0.12), rgba(14,165,233,0.12));
  border: 1px solid rgba(200,160,21,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon [data-lucide] {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.625rem;
}

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

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 300px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

.step-connector {
  color: rgba(255,255,255,0.2);
  padding: 0 1rem;
  padding-top: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

.step-connector [data-lucide] {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.2);
  stroke-width: 1.5;
}

/* ============================================================
   CORRIDORS
   ============================================================ */
.corridors-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}

.corridor-card {
  flex: 1;
  max-width: 380px;
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.2s;
}

.corridor-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.corridor-flag {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.corridor-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.corridor-currency {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.corridor-list {
  list-style: none;
  padding: 0;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.corridor-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.35rem 0;
  margin: 0;
}

.li-check {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-right: 0.375rem;
}

.regulator-badge {
  display: inline-block;
  background: rgba(200, 160, 21, 0.1);
  border: 1px solid rgba(200, 160, 21, 0.3);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.corridor-middle {
  text-align: center;
  color: var(--muted);
  flex-shrink: 0;
}

.corridor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: 12px;
  margin: 0 auto 0.5rem;
}

.corridor-icon [data-lucide] {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  stroke-width: 2;
}

.corridor-middle p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   SECURITY
   ============================================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.security-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
}

.security-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 160, 21, 0.08);
  border: 1px solid rgba(200, 160, 21, 0.2);
  border-radius: 14px;
}

.security-icon [data-lucide] {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  stroke-width: 2;
}

.security-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.security-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-dark);
  padding: 6rem 0;
}

.cta-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,160,21,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-content p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin: 0;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
}

.contact-icon {
  width: 18px;
  height: 18px;
  stroke: var(--primary-light);
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-row a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-row a:hover { color: var(--primary-light); }

.contact-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.contact-legal a { color: rgba(255,255,255,0.45); }
.contact-legal a:hover { color: var(--primary-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text { color: #fff; }

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 1rem 0 0.5rem;
}

.footer-countries {
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.35) !important;
}

.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin: 0 0 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.625rem; }

.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

/* ============================================================
   AGENCY MODEL
   ============================================================ */

/* Intro row */
.agency-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.agency-intro-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.875rem;
}

.agency-intro-text p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.agency-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.agency-stat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.agency-stat:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.as-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(200,160,21,0.12), rgba(14,165,233,0.1));
  border: 1px solid rgba(200,160,21,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.as-icon [data-lucide] {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  stroke-width: 2;
}

.agency-stat strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.agency-stat span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  display: block;
}

/* Two-column split */
.agency-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.agency-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.agency-card-customer { border-color: rgba(14,165,233,0.3); }
.agency-card-agent    { border-color: rgba(200,160,21,0.35); }

.ac-header {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.agency-card-customer .ac-header { background: rgba(14,165,233,0.05); border-color: rgba(14,165,233,0.15); }
.agency-card-agent    .ac-header { background: rgba(200,160,21,0.06); border-color: rgba(200,160,21,0.15); }

.ac-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.agency-card-customer .ac-icon { background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.25); }
.agency-card-agent    .ac-icon { background: rgba(200,160,21,0.12); border: 1px solid rgba(200,160,21,0.25); }

.agency-card-customer .ac-icon [data-lucide] { stroke: var(--accent); width: 22px; height: 22px; stroke-width: 2; }
.agency-card-agent    .ac-icon [data-lucide] { stroke: var(--primary); width: 22px; height: 22px; stroke-width: 2; }

.ac-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.ac-header p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.ac-list {
  list-style: none;
  padding: 1.5rem 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--panel);
}

.ac-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin: 0;
}

.acl-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.agency-card-customer .acl-icon { background: rgba(14,165,233,0.08); }
.agency-card-agent    .acl-icon { background: rgba(200,160,21,0.08); }

.agency-card-customer .acl-icon [data-lucide] { width: 16px; height: 16px; stroke: var(--accent); stroke-width: 2; }
.agency-card-agent    .acl-icon [data-lucide] { width: 16px; height: 16px; stroke: var(--primary); stroke-width: 2; }

.ac-list li strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.ac-list li span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Become an agent */
.become-agent {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
  border: 1px solid rgba(200,160,21,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.become-agent::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(200,160,21,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ba-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.ba-icon {
  width: 56px;
  height: 56px;
  background: rgba(200,160,21,0.12);
  border: 1px solid rgba(200,160,21,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ba-icon [data-lucide] {
  width: 28px;
  height: 28px;
  stroke: var(--primary-light);
  stroke-width: 1.75;
}

.ba-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  flex: 1;
}

.ba-header p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.ba-btn {
  flex-shrink: 0;
  font-size: 0.875rem !important;
  padding: 0.75rem 1.5rem !important;
}

.ba-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 1.75rem;
}

.ba-step {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.ba-step-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.ba-step-icon {
  width: 28px;
  height: 28px;
  stroke: var(--primary-light);
  stroke-width: 1.75;
  margin-bottom: 0.875rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ba-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.ba-step p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
}

.ba-connector {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  padding-top: 2rem;
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
}

.ba-connector [data-lucide] {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.2);
  stroke-width: 1.5;
}

.ba-contact {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.ba-contact a {
  color: var(--primary-light);
  font-weight: 600;
}

.ba-contact a:hover { color: var(--primary); }

/* ============================================================
   SUPPORTED NETWORKS
   ============================================================ */
.networks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.network-country-block {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.network-country-block:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.ncb-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.ncb-flag { font-size: 2.25rem; line-height: 1; }

.ncb-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: var(--text);
}

.ncb-currency {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
}

.ncb-header .regulator-badge { margin-left: auto; flex-shrink: 0; }

.ncb-networks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.network-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid;
}

.network-pill.mobile {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.25);
  color: #0369A1;
}

.network-pill.bank {
  background: rgba(200, 160, 21, 0.08);
  border-color: rgba(200, 160, 21, 0.25);
  color: var(--primary-dark);
}

.network-pill.more {
  background: var(--panel-light);
  border-color: var(--border);
  color: var(--muted);
}

/* ============================================================
   CORRIDORS HUB
   ============================================================ */
.corridors-hub {
  position: relative;
  width: 340px;
  height: 280px;
  margin: 0 auto 2.5rem;
}

.hub-country {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.hub-country strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.hub-country span {
  font-size: 0.72rem;
  color: var(--muted);
}

.hc-flag {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hub-kenya  { top: 0;    left: 50%; transform: translateX(-50%); }
.hub-somalia { bottom: 0; left: 0; }
.hub-ethiopia { bottom: 0; right: 0; }

.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #C8A015, #E5B84A);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200,160,21,0.4);
}

.hub-icon {
  font-size: 0.85rem;
  font-weight: 900;
  color: #0a0f1e;
  letter-spacing: -0.03em;
}

.hub-center span {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(10,15,30,0.6);
}

.hub-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(200,160,21,0.3), rgba(14,165,233,0.3));
  height: 2px;
  border-radius: 1px;
  transform-origin: left center;
}

/* Lines from center to each country (approximate) */
.hub-line-ke-so {
  width: 130px;
  top: 48%;
  left: 25%;
  transform: rotate(45deg);
}

.hub-line-ke-et {
  width: 130px;
  top: 48%;
  left: 48%;
  transform: rotate(135deg);
}

.hub-line-so-et {
  width: 155px;
  bottom: 12%;
  left: 14%;
  transform: rotate(0deg);
}

/* Corridor pills */
.corridor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.corridor-pill {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
}

.corridor-pill.active {
  background: rgba(200,160,21,0.1);
  border-color: rgba(200,160,21,0.35);
  color: var(--primary-dark);
}

.corridors-detail {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  justify-content: center;
}

.corridors-detail .corridor-card { flex: 1; max-width: 320px; }

/* ============================================================
   CHOICE BANK BANNER (in Trust section)
   ============================================================ */
.choice-bank-banner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(200,160,21,0.12), rgba(14,165,233,0.08));
  border: 1px solid rgba(200,160,21,0.35);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.choice-bank-banner::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(200,160,21,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cbb-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,160,21,0.15);
  border: 1px solid rgba(200,160,21,0.3);
  border-radius: 16px;
  flex-shrink: 0;
}

.cbb-icon [data-lucide] {
  width: 30px;
  height: 30px;
  stroke: var(--primary-light);
  stroke-width: 1.75;
}

.cbb-content {
  flex: 1;
}

.cbb-content strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.cbb-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

.cbb-badge {
  flex-shrink: 0;
  align-self: center;
  background: linear-gradient(135deg, #C8A015, #E5B84A);
  color: #0a0f1e;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Trust badge — bank variant */
.tb-badge-bank {
  background: linear-gradient(135deg, rgba(200,160,21,0.2), rgba(229,184,74,0.15)) !important;
  border-color: rgba(200,160,21,0.45) !important;
  color: #E5B84A !important;
  font-weight: 800 !important;
}

/* Footer bank badge */
.footer-bank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.625rem;
  background: rgba(200,160,21,0.1);
  border: 1px solid rgba(200,160,21,0.25);
  border-radius: 0.5rem;
  padding: 0.35rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-light);
}

/* ============================================================
   TRUST PILLARS
   ============================================================ */
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.trust-pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}

.trust-pillar:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,160,21,0.3);
}

.tp-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,160,21,0.1);
  border: 1px solid rgba(200,160,21,0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.tp-icon [data-lucide] {
  width: 24px;
  height: 24px;
  stroke: var(--primary-light);
  stroke-width: 2;
}

.trust-pillar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.625rem;
}

.trust-pillar p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.tb-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,160,21,0.1);
  border: 1px solid rgba(200,160,21,0.25);
  border-radius: 999px;
  padding: 0.35rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
}

.tbb-icon {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* ============================================================
   AFRICA VISION
   ============================================================ */
.vision-phases {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 3rem;
}

.vp-phase {
  flex: 1;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--panel);
}

.vp-active {
  border-color: var(--primary);
  background: rgba(200,160,21,0.04);
  box-shadow: 0 0 0 4px rgba(200,160,21,0.08);
}

.vp-soon {
  border-color: rgba(14,165,233,0.35);
  background: rgba(14,165,233,0.03);
}

.vp-future {
  border-style: dashed;
  background: var(--panel-light);
}

.vp-arrow {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: var(--muted-2);
  flex-shrink: 0;
}

.vp-arrow [data-lucide] {
  width: 24px;
  height: 24px;
  stroke: var(--muted-2);
  stroke-width: 1.5;
}

.vp-phase-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
}

.active-label {
  background: rgba(200,160,21,0.12);
  color: var(--primary-dark);
  border: 1px solid rgba(200,160,21,0.3);
}

.soon-label {
  background: rgba(14,165,233,0.1);
  color: #0369A1;
  border: 1px solid rgba(14,165,233,0.25);
}

.future-label {
  background: var(--panel-light);
  color: var(--muted);
  border: 1px solid var(--border);
}

.vp-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.vp-flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.72rem;
  color: var(--muted);
  min-width: 44px;
}

.vp-flag-emoji { font-size: 1.75rem; line-height: 1; }
.muted-flag .vp-flag-emoji { filter: grayscale(1); opacity: 0.5; }

.vp-phase p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.vision-statement {
  background: linear-gradient(135deg, rgba(200,160,21,0.06), rgba(14,165,233,0.06));
  border: 1px solid rgba(200,160,21,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  text-align: center;
}

.vision-statement p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 1rem;
  font-weight: 500;
}

.vision-statement span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* Vision "more" globe icon */
.vp-more-icon {
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.3rem;
}

.vp-more-icon [data-lucide] {
  width: 28px;
  height: 28px;
  stroke: var(--muted-2);
  stroke-width: 1.5;
}

/* Pill icons */
.pill-icon {
  width: 12px;
  height: 12px;
  stroke-width: 2;
  vertical-align: middle;
  margin-right: 0.2rem;
}

/* CTA extras */
.cta-trust-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.cta-trust-mini [data-lucide] {
  width: 13px;
  height: 13px;
  stroke: rgba(255,255,255,0.4);
  vertical-align: middle;
  margin-right: 0.2rem;
}

/* Footer extras */
.footer-regulated {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.25) !important;
  margin-top: 0.25rem !important;
  letter-spacing: 0.04em;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.simple-header { background: rgba(10, 15, 30, 0.98); position: static; }

.legal-page {
  padding: 4rem 0 6rem;
}

.legal-card {
  max-width: 900px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  color: var(--text);
}

.legal-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  color: var(--text);
}

.legal-card p,
.legal-card li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.note {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted-2);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-content > * {
  animation: fadeInUp 0.7s ease-out forwards;
  opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.45s; }

.hero-visual {
  animation: fadeIn 0.8s ease-out 0.5s forwards;
  opacity: 0;
}

.feature-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.15s; }
.feature-card:nth-child(4) { animation-delay: 0.2s; }
.feature-card:nth-child(5) { animation-delay: 0.25s; }
.feature-card:nth-child(6) { animation-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .networks-grid { grid-template-columns: 1fr; }
  .trust-pillars { grid-template-columns: repeat(2, 1fr); }
  .corridors-detail { flex-direction: column; align-items: center; }
  .corridors-detail .corridor-card { max-width: 100%; width: 100%; }
  .corridors-detail .corridor-middle { transform: rotate(90deg); }
  .agency-intro { grid-template-columns: 1fr; }
  .agency-split { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero { padding: 5rem 0 4rem; }

  h1 { font-size: 2.5rem; }

  .hero-visual { order: -1; }

  .transfer-widget { max-width: 420px; margin: 0 auto; }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .step-connector {
    transform: rotate(90deg);
    padding: 0;
  }

  .step-card { max-width: 100%; width: 100%; }

  .corridors-wrap {
    flex-direction: column;
    align-items: center;
  }

  .corridor-card { max-width: 100%; width: 100%; }

  .corridor-middle {
    transform: rotate(90deg);
  }

  .security-grid { grid-template-columns: 1fr; }
  .trust-pillars { grid-template-columns: 1fr; }
  .agency-intro-stats { grid-template-columns: 1fr 1fr; }
  .ba-steps { flex-direction: column; }
  .ba-connector { transform: rotate(90deg); align-self: center; padding: 0.25rem 0; }
  .ba-header { flex-direction: column; align-items: flex-start; }
  .vision-phases { flex-direction: column; }
  .vp-arrow { transform: rotate(90deg); align-self: center; padding: 0.5rem 0; }
  .vision-statement { padding: 1.75rem; }
  .corridors-hub { width: 280px; height: 240px; }
  .steps-footnote { flex-direction: column; text-align: center; }

  .cta-box {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: 1 / -1; }

  .stat-divider { display: none; }
  .stats-bar-inner { gap: 1rem; justify-content: space-around; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 2rem); }

  .nav { flex-wrap: wrap; }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid var(--border-dark);
    gap: 0.25rem;
  }

  nav.open { display: flex; }
  nav a { width: 100%; text-align: center; }

  .nav-toggle { display: block; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.75rem; }

  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }

  .feature-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}