/* ============================================================
   DTV AFRICA — global.css
   Bold African fintech energy. Dark-first, electric green + gold.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Mono:wght@400;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg-dark:        #080c0a;
  --bg-card:        #0f1510;
  --bg-card-2:      #141c15;
  --green-primary:  #00e676;
  --green-soft:     #1db954;
  --gold:           #f5a623;
  --gold-dark:      #c8831a;
  --text-primary:   #f0f4f0;
  --text-secondary: #8fa888;
  --text-muted:     #4a5e47;
  --nigeria-green:  #008751;
  --ghana-gold:     #fcd116;
  --rwanda-green:   #20603d;
  --border:         rgba(0, 230, 118, 0.12);
  --border-gold:    rgba(245, 166, 35, 0.2);
  --shadow-green:   0 0 30px rgba(0, 230, 118, 0.15);
  --shadow-gold:    0 0 30px rgba(245, 166, 35, 0.2);
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--green-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── Typography ─────────────────────────────────────────────── */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.03em; line-height: 0.95; }
.font-mono    { font-family: 'Space Mono', monospace; }

h1, h2, h3, h4, h5, h6 { line-height: 1.15; font-weight: 700; }

.display-xl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 4.5rem);
  letter-spacing: 0.02em;
  line-height: 1.0;
}
.display-lg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.display-md {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  letter-spacing: 0.03em;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  letter-spacing: 0.04em;
  color: var(--text-primary);
}
.lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.75;
}

.text-green  { color: var(--green-primary); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 5rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Rate Ticker ─────────────────────────────────────────────── */
.rate-ticker {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  height: 38px;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.ticker-inner {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}
.ticker-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-muted);
  background: var(--bg-card-2);
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  z-index: 1;
  position: relative;
}
.ticker-track {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  align-items: center;
  height: 100%;
}
.ticker-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-secondary);
  padding: 0 2rem;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ticker-item strong {
  color: var(--green-primary);
  font-weight: 700;
}
.ticker-item .flag { font-size: 0.9rem; }

/* ── Urgency Banner ─────────────────────────────────────────── */
.urgency-banner {
  background: linear-gradient(90deg, #1a0800, #2d0d00, #1a0800);
  border-bottom: 1px solid rgba(245, 100, 0, 0.35);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff9a44;
  letter-spacing: 0.02em;
}
.urgency-banner .flash { color: #ff6b00; margin-right: 0.25rem; }

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  transition: background var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--green-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); background: var(--bg-card); }

.nav-cta {
  background: var(--green-primary);
  color: #000 !important;
  font-weight: 700;
  padding: 0.45rem 1.1rem !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #fff !important;
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.35) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(8, 12, 10, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: block;
  transition: all var(--transition);
}
.nav-mobile a:hover { color: var(--text-primary); background: var(--bg-card); }
.nav-mobile .nav-cta {
  background: var(--green-primary);
  color: #000 !important;
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--green-primary);
  color: #000;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,230,118,0.45); color: #000; }
.btn-primary:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,166,35,0.45); color: #000; }

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 1.5px solid var(--green-primary);
}
.btn-outline:hover { background: var(--green-primary); color: #000; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--green-primary); }

.btn-lg { font-size: 1.05rem; padding: 1rem 2.25rem; border-radius: 12px; }
.btn-xl { font-size: 1.15rem; padding: 1.15rem 2.75rem; border-radius: 14px; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.06em; }
.btn-sm { font-size: 0.8rem; padding: 0.55rem 1.1rem; border-radius: 7px; }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  gap: 0.6rem;
}
.btn-whatsapp:hover { background: #1ebe5c; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }

.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0 3rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 1;
}
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(7rem, 22vw, 26rem);
  color: rgba(0, 230, 118, 0.04);
  white-space: nowrap;
  letter-spacing: 0.1em;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,230,118,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,230,118,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Floating stat chips */
.stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}
.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(16px);
}
.stat-chip.show { opacity: 1; transform: translateY(0); transition: all 0.5s ease; }
.stat-chip strong { color: var(--green-primary); }
.stat-chip .gold { color: var(--gold); }

/* Scrolling stats chips on mobile */
.stats-scroll-bar {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.stats-scroll-bar::-webkit-scrollbar { display: none; }
.scroll-chip {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.55rem 1.1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.scroll-chip strong { color: var(--green-primary); }
.scroll-chip .label { color: var(--text-muted); }

/* ── Opportunity Cards (index gap section) ───────────────────── */
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.opportunity-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green-primary);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
}
.opportunity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
  border-color: rgba(0,230,118,0.3);
}
.opportunity-card.ghana { border-top-color: var(--ghana-gold); }
.opportunity-card.ghana:hover { box-shadow: 0 0 30px rgba(252,209,22,0.15); }
.opportunity-card.rwanda { border-top-color: #58c87a; }

.opportunity-flag {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.opportunity-country {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.opportunity-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.opportunity-row:last-of-type { border-bottom: none; }
.opportunity-row .label { color: var(--text-muted); }
.opportunity-row .value { font-family: 'Space Mono', monospace; font-size: 0.82rem; }
.opportunity-row .value.dstv { color: #e05454; text-decoration: line-through; }
.opportunity-row .value.dtv  { color: var(--green-primary); }
.opportunity-row .value.profit { color: var(--gold); font-weight: 700; font-size: 0.9rem; }
.opportunity-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-primary);
}
.opportunity-link:hover { gap: 0.7rem; color: #fff; }

/* ── How It Works ────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--green-primary), rgba(0,230,118,0.1));
  z-index: 0;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  position: relative;
  z-index: 1;
}
.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--green-primary);
  opacity: 0.25;
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.step-body { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* ── Calculator ──────────────────────────────────────────────── */
.calc-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calc-terminal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-green);
}
.calc-terminal-bar {
  background: var(--bg-card-2);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.term-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.term-dot.red   { background: #ff5f57; }
.term-dot.yellow{ background: #ffbd2e; }
.term-dot.green { background: #28ca41; }
.term-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: 0.75rem;
}
.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.calc-controls {
  padding: 2rem 2rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.calc-results {
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-card-2);
}

.calc-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.calc-field label span {
  color: var(--green-primary);
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
}
.calc-select {
  width: 100%;
  background: var(--bg-dark);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238fa888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  transition: border-color var(--transition);
}
.calc-select:focus { border-color: var(--green-primary); }

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--bg-dark);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-primary);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(0,230,118,0.2);
  transition: box-shadow var(--transition);
}
.range-slider::-webkit-slider-thumb:hover { box-shadow: 0 0 0 6px rgba(0,230,118,0.25); }
.range-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-primary);
  cursor: pointer;
  border: none;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.price-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.preset-btn {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all var(--transition);
}
.preset-btn:hover,
.preset-btn.active { background: rgba(0,230,118,0.1); border-color: var(--green-primary); color: var(--green-primary); }

.result-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.result-item label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.result-value {
  font-family: 'Space Mono', monospace;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.result-value.cost-val { color: #e05454; }
.result-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }
.result-item.profit .result-value { font-size: 2rem; color: var(--gold); }
.result-item.annual .result-value { font-size: 1.5rem; color: var(--green-primary); }
.result-item.roi-val .result-value { color: var(--text-secondary); font-size: 1rem; }

.calc-presets-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.calc-preset-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.calc-preset-card:hover { border-color: rgba(0,230,118,0.3); transform: translateY(-2px); }
.calc-preset-flag { font-size: 1.5rem; margin-bottom: 0.4rem; }
.calc-preset-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.calc-preset-profit { font-family: 'Space Mono', monospace; font-size: 0.9rem; color: var(--gold); font-weight: 700; }

/* ── Comparison Table ────────────────────────────────────────── */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.comparison-table thead {
  background: var(--bg-card-2);
}
.comparison-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.comparison-table th.col-dtv {
  color: var(--green-primary);
  background: rgba(0,230,118,0.05);
}
.comparison-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(0,230,118,0.06);
  color: var(--text-secondary);
  vertical-align: middle;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(0,230,118,0.02); }
.comparison-table td.col-feature { color: var(--text-primary); font-weight: 500; }
.comparison-table td.col-dtv {
  color: var(--green-primary);
  font-weight: 600;
  background: rgba(0,230,118,0.04);
}
.check { color: var(--green-primary); font-weight: 700; }
.cross { color: #e05454; }
.warn  { color: var(--gold); }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-green); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--green-primary);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.85rem;
}
.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-profit {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-2), rgba(0,230,118,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-primary);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.88rem; }
.testimonial-location { font-size: 0.75rem; color: var(--text-muted); }

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #050d07 0%, #0a1a0c 50%, #050d07 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,230,118,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section .section-title { margin-bottom: 1.5rem; }
.cta-section .lead { max-width: 600px; margin: 0 auto 2.5rem; }

/* ── Math Breakdown (Nigeria/Ghana/Rwanda) ───────────────────── */
.math-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.math-header {
  background: var(--bg-card-2);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.75rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.math-body { padding: 2rem 1.75rem; }
.math-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-family: 'Space Mono', monospace;
  font-size: 0.88rem;
}
.math-row .label { color: var(--text-secondary); }
.math-row .value { font-weight: 700; }
.math-row .value.dstv  { color: #e05454; }
.math-row .value.yours { color: var(--green-primary); }
.math-row .value.cost  { color: var(--text-muted); }
.math-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}
.math-row.profit-row .label { color: var(--text-primary); font-weight: 700; }
.math-row.profit-row .value { color: var(--gold); font-size: 1rem; }

.math-scale {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.scale-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.83rem;
  font-family: 'Space Mono', monospace;
}
.scale-row .subs { color: var(--text-muted); }
.scale-row .income { color: var(--green-primary); font-weight: 700; }
.scale-row.highlight .income { color: var(--gold); font-size: 1rem; }

.math-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.math-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.math-card.gold-card {
  border-color: var(--border-gold);
  animation: goldPulse 3s ease-in-out infinite;
}
.math-card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.math-card-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; }
.math-card-profit {
  font-family: 'Space Mono', monospace;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.math-card-profit strong { color: var(--gold); display: block; font-size: 1.1rem; margin-top: 0.25rem; }

/* ── Feature Points Grid ─────────────────────────────────────── */
.feature-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.feature-point {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}
.feature-point:hover { border-color: rgba(0,230,118,0.25); transform: translateY(-2px); }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--green-primary);
  margin-bottom: 0.5rem;
}
.feature-body { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ── How To Start (numbered steps) ──────────────────────────── */
.how-start-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.how-start-item {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  align-items: flex-start;
  transition: all var(--transition);
}
.how-start-item:hover { border-color: rgba(0,230,118,0.2); }
.how-start-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--green-primary);
  opacity: 0.4;
  flex-shrink: 0;
  min-width: 2rem;
}
.how-start-content .title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.how-start-content p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Stats Band ──────────────────────────────────────────────── */
.stats-band {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-band-item {}
.stat-band-number {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-band-number.gold { color: var(--gold); }
.stat-band-label { font-size: 0.78rem; color: var(--text-muted); }

/* ── Section Dividers / Decorative ──────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-primary);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-primary);
  border-radius: 2px;
}

.section-intro { max-width: 640px; margin-bottom: 3.5rem; }
.section-intro.centered { text-align: center; margin: 0 auto 3.5rem; }

/* ── Hero stats bar (for country pages) ─────────────────────── */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2.5rem;
}
.hero-stat-item {
  background: var(--bg-card);
  padding: 1.25rem 1rem;
  text-align: center;
}
.hero-stat-num {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 0.2rem;
}
.hero-stat-num.gold { color: var(--gold); }
.hero-stat-label { font-size: 0.7rem; color: var(--text-muted); line-height: 1.3; }

/* ── CTA Box (country pages) ─────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(0,230,118,0.07), transparent 60%);
  pointer-events: none;
}
.cta-box-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  position: relative;
}
.cta-box-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  position: relative;
}

/* ── WhatsApp Floating Button ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.whatsapp-float-btn {
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.whatsapp-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-float-btn svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-tooltip {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand {}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: block;
}
.footer-logo span { color: var(--green-primary); }
.footer-tagline { color: var(--text-muted); font-size: 0.83rem; line-height: 1.6; max-width: 260px; }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-links a:hover { color: var(--green-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.77rem; color: var(--text-muted); }
.footer-rates { font-family: 'Space Mono', monospace; font-size: 0.68rem; color: var(--text-muted); }

/* ── Utilities ───────────────────────────────────────────────── */
.highlight-green { color: var(--green-primary); }
.highlight-gold  { color: var(--gold); }
.highlight-red   { color: #e05454; }
.bold { font-weight: 700; }
.uppercase { text-transform: uppercase; letter-spacing: 0.06em; }
.strike { text-decoration: line-through; color: #e05454; }
.border-top-green { border-top: 3px solid var(--green-primary); }
.border-top-gold  { border-top: 3px solid var(--gold); }

.bg-card   { background: var(--bg-card); }
.bg-card-2 { background: var(--bg-card-2); }
.rounded   { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.border    { border: 1px solid var(--border); }
.border-gold { border: 1px solid var(--border-gold); }
.overflow-hidden { overflow: hidden; }

.note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .opportunity-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .calc-body { grid-template-columns: 1fr; }
  .calc-controls { border-right: none; border-bottom: 1px solid var(--border); }
  .calc-presets-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .feature-points { grid-template-columns: 1fr; }
  .math-cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .opportunity-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  /* Hero — compact on tablet/mobile so buttons are above the fold */
  .hero { padding: 2.5rem 0 2rem; min-height: auto; }
  .hero-bg-text { display: none; }
  .hero-cta-group { flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hero-stats-bar { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-chips { gap: 0.4rem; margin-top: 1rem; }
  .stat-chip { font-size: 0.7rem; padding: 0.3rem 0.7rem; }
  .calc-presets-row { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: 1fr 1fr; }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table th, .comparison-table td { padding: 0.65rem 0.75rem; }
  /* Tighter section spacing on mobile */
  .section-intro { margin-bottom: 2rem; }
  .hero-eyebrow { font-size: 0.65rem; padding: 0.3rem 0.8rem; }
}

@media (max-width: 480px) {
  .display-xl { font-size: 1.6rem; line-height: 1.12; }
  .display-lg { font-size: 1.4rem; }
  .section-title { font-size: 1.3rem; }
  /* Hero — ultra compact, buttons must be visible on first screen */
  .hero { padding: 1.75rem 0 1.25rem; }
  .hero-cta-group { gap: 0.5rem; margin-top: 1rem; }
  .hero-cta-group .btn { padding: 0.7rem 1rem; font-size: 0.82rem; letter-spacing: 0.04em; }
  .lead { font-size: 0.88rem; margin-top: 0.9rem !important; }
  .stat-chips { display: none; }
  .hero-stats-bar { grid-template-columns: 1fr 1fr; }
  .calc-presets-row { grid-template-columns: 1fr; }
  /* Tighter card/section spacing */
  .math-section { padding: 1.25rem; }
  .modal-card { padding: 1.5rem 1.1rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .phone-input-wrap { grid-template-columns: 1fr; }
}

/* ── Modal / Popup Form ──────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2rem;
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all var(--transition);
  line-height: 1;
}
.modal-close:hover { color: var(--text-primary); background: var(--bg-dark); border-color: var(--green-primary); }
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  text-align: center;
  color: var(--text-primary);
}
.modal-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(0,230,118,0.08); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); font-size: 0.84rem; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238fa888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2rem; }
.phone-input-wrap {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0.5rem;
}
.form-success {
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.35);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--green-primary);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
}
.form-error {
  background: rgba(224, 84, 84, 0.08);
  border: 1px solid rgba(224, 84, 84, 0.35);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: #e05454;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 540px) {
  .modal-card { padding: 2rem 1.25rem 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .phone-input-wrap { grid-template-columns: 1fr; }
  .phone-input-wrap select { width: 100%; }
}
