@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800;900&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --teal: #14b49d; --teal2: #0d8f7d; --teal3: #0a6b5e;
  --gold: #f59e0b; --purple: #a855f7; --blue: #3b82f6; --rose: #f43f5e;
  --bg: #06060e; --bg1: #0b0b17; --bg2: #10101e; --bg3: #161628; --bg4: #1e1e36;
  --border: rgba(255,255,255,.07); --border2: rgba(255,255,255,.12);
  --text: #f2f2ff; --text2: #c0c0dc; --text3: #7070a0; --text4: #404060;
  --font: 'Instrument Sans', system-ui, sans-serif;
  --font-d: 'Syne', sans-serif;
  --font-m: 'JetBrains Mono', monospace;
  --r: 16px; --r-lg: 24px; --r-xl: 32px;
  --sh: 0 20px 60px rgba(0,0,0,.5);
  --glow: 0 0 40px rgba(20,180,157,.2);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; color-scheme: dark; }
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; overflow-x: hidden; line-height: 1.6; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
::selection { background: rgba(20,180,157,.25); color: var(--text); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 99px; }

/* ─── PROGRESS BAR ─── */
#progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: linear-gradient(90deg, var(--teal), var(--purple)); z-index: 999; transition: width .1s; }

/* ─── AMBIENT BACKGROUND ─── */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(120px); animation: drift 18s ease-in-out infinite; }
.orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(20,180,157,.14) 0%, transparent 70%); top: -200px; left: -200px; animation-duration: 20s; }
.orb-2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(168,85,247,.1) 0%, transparent 70%); bottom: -150px; right: -150px; animation-duration: 16s; animation-delay: -8s; }
.orb-3 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(59,130,246,.07) 0%, transparent 70%); top: 40%; left: 50%; transform: translate(-50%,-50%); animation-duration: 24s; animation-delay: -12s; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-40px) scale(1.05); } 66% { transform: translate(-20px,30px) scale(.97); } }

/* Grid overlay */
.grid-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; background-image: linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px); background-size: 60px 60px; -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 30%, transparent 100%); mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 30%, transparent 100%); }

/* ─── LAYOUT ─── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.wrap-md { max-width: 820px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
section { padding: 110px 0; position: relative; }

/* ─── NAV ─── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all .35s; }
.nav.solid { background: rgba(6,6,14,.88); backdrop-filter: blur(24px) saturate(180%); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 38px; height: 38px; }
.nav-brand-name { font-family: var(--font-d); font-size: 20px; font-weight: 900; color: var(--text); letter-spacing: -.3px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 8px 15px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--text3); transition: all .15s; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav-end { display: flex; align-items: center; gap: 10px; }
.nav-lang { font-size: 13px; font-weight: 600; color: var(--text3); padding: 6px 12px; border-radius: 8px; border: 1px solid var(--border); transition: all .15s; }
.nav-lang:hover { color: var(--teal); border-color: rgba(20,180,157,.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; transition: background .15s; }
.hamburger:hover { background: rgba(255,255,255,.06); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text2); border-radius: 2px; transition: all .25s; }

/* ─── MOBILE MENU ─── */
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(6,6,14,.98); z-index: 98; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; animation: fadeIn .2s ease; }
.mobile-menu a { font-family: var(--font-d); font-size: 32px; font-weight: 900; color: var(--text); transition: color .15s; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-close { position: absolute; top: 28px; right: 28px; color: var(--text3); padding: 8px; border-radius: 8px; transition: all .15s; }
.mobile-close:hover { color: var(--text); background: rgba(255,255,255,.06); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--r); font-size: 15px; font-weight: 700; transition: all .22s; cursor: pointer; border: none; position: relative; overflow: hidden; white-space: nowrap; }
.btn::after { content: ''; position: absolute; inset: 0; opacity: 0; background: rgba(255,255,255,.12); transition: opacity .15s; }
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.97); }
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--teal2)); color: #fff; box-shadow: 0 4px 28px rgba(20,180,157,.4), 0 1px 0 rgba(255,255,255,.15) inset; }
.btn-primary:hover { box-shadow: 0 6px 36px rgba(20,180,157,.6), 0 1px 0 rgba(255,255,255,.15) inset; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text2); border: 1px solid var(--border2); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: var(--text); border-color: var(--border2); transform: translateY(-1px); }
.btn-lg { padding: 15px 34px; font-size: 16px; border-radius: 18px; }
.btn-xl { padding: 18px 42px; font-size: 17px; border-radius: 20px; }
.btn svg { flex-shrink: 0; }

/* ─── HERO ─── */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 130px 0 90px; }
.hero-layout { display: grid; grid-template-columns: 1fr 440px; gap: 60px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 10px; border-radius: 99px; background: rgba(20,180,157,.08); border: 1px solid rgba(20,180,157,.25); margin-bottom: 24px; }
.hero-eyebrow svg { width: 16px; height: 16px; color: var(--teal); }
.hero-eyebrow span { font-size: 13px; font-weight: 700; color: var(--teal); letter-spacing: .03em; }
.hero-h1 { font-family: var(--font-d); font-size: clamp(44px,5.5vw,84px); font-weight: 900; line-height: 1.02; letter-spacing: -2.5px; color: var(--text); margin-bottom: 10px; }
.hero-h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: clamp(16px,1.8vw,20px); color: var(--text3); line-height: 1.75; max-width: 500px; margin-bottom: 40px; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }
.hero-proof { display: flex; flex-direction: column; gap: 12px; }
.proof-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text3); font-weight: 500; }
.proof-row svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.proof-row strong { color: var(--text2); }

/* ─── PHONE MOCK ─── */
.phone-outer { position: relative; display: flex; justify-content: center; }
.phone-glow { position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); width: 260px; height: 260px; background: rgba(20,180,157,.2); border-radius: 50%; filter: blur(70px); pointer-events: none; animation: drift 10s ease-in-out infinite; }
.phone { width: 268px; height: 552px; background: var(--bg1); border: 1.5px solid rgba(255,255,255,.12); border-radius: 44px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.05), 0 4px 0 rgba(255,255,255,.08) inset; position: relative; animation: phoneFloat 8s ease-in-out infinite; }
@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 88px; height: 26px; background: var(--bg); border-radius: 0 0 16px 16px; z-index: 3; }
.phone-screen { height: 100%; overflow: hidden; background: linear-gradient(180deg, #0c1521 0%, #07070f 100%); padding: 34px 14px 14px; display: flex; flex-direction: column; gap: 8px; }
.mock-post { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 14px; padding: 13px; animation: slidePost 12s ease-in-out infinite; }
.mock-post:nth-child(2) { animation-delay: -4s; }
.mock-post:nth-child(3) { animation-delay: -8s; }
@keyframes slidePost { 0%,100% { opacity: 1; } 30%,70% { opacity: 1; } 85%,15% { opacity: .6; } }
.mock-row { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.mock-av { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.av-teal { background: linear-gradient(135deg, #14b49d, #059478); }
.av-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.av-gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.av-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.mock-info { flex: 1; min-width: 0; }
.mock-name { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.85); }
.mock-handle { font-size: 10px; color: rgba(255,255,255,.3); }
.mock-vbadge { display: inline-flex; }
.mock-vbadge svg { width: 12px; height: 12px; }
.mock-text { font-size: 11.5px; color: rgba(255,255,255,.6); line-height: 1.55; margin-bottom: 9px; }
.mock-bar { display: flex; gap: 14px; }
.mock-btn { display: flex; align-items: center; gap: 4px; font-size: 10px; color: rgba(255,255,255,.28); }
.mock-btn svg { width: 11px; height: 11px; }
.mock-img { height: 60px; background: linear-gradient(135deg, rgba(20,180,157,.15), rgba(168,85,247,.1)); border-radius: 9px; margin-bottom: 8px; }

/* ─── TICKER ─── */
.ticker-outer { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(20,180,157,.04); padding: 14px 0; position: relative; z-index: 2; }
.ticker { display: flex; gap: 0; white-space: nowrap; animation: tick 30s linear infinite; }
.ticker:hover { animation-play-state: paused; }
.tick-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 36px; font-size: 13px; font-weight: 600; color: var(--text3); flex-shrink: 0; }
.tick-item svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
.tick-sep { color: var(--text4); font-size: 18px; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── BADGES / PILLS ─── */
.label { display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; border-radius: 99px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.label-teal { background: rgba(20,180,157,.1); border: 1px solid rgba(20,180,157,.25); color: var(--teal); }
.label-gold { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.25); color: var(--gold); }
.label-purple { background: rgba(168,85,247,.1); border: 1px solid rgba(168,85,247,.25); color: var(--purple); }
.label svg { width: 12px; height: 12px; }

/* ─── SECTION HEADERS ─── */
.sh { margin-bottom: 56px; }
.sh.center { text-align: center; }
.sh-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); margin-bottom: 14px; }
.sh-tag svg { width: 12px; height: 12px; }
.sh h2 { font-family: var(--font-d); font-size: clamp(30px,4vw,52px); font-weight: 900; color: var(--text); line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 16px; }
.sh h2 em { font-style: normal; color: var(--teal); }
.sh p { font-size: 17px; color: var(--text3); line-height: 1.75; max-width: 580px; }
.sh.center p { margin: 0 auto; }

/* ─── VERIFIED SECTION ─── */
.verified-banner { background: linear-gradient(135deg, rgba(20,180,157,.12) 0%, rgba(168,85,247,.08) 50%, rgba(59,130,246,.07) 100%); border: 1px solid rgba(20,180,157,.2); border-radius: var(--r-xl); padding: 64px; position: relative; overflow: hidden; margin-bottom: 48px; }
.verified-banner::before { content: ''; position: absolute; top: 0; right: 0; width: 400px; height: 400px; background: radial-gradient(circle, rgba(20,180,157,.18) 0%, transparent 60%); pointer-events: none; }
.verified-banner::after { content: ''; position: absolute; bottom: -50px; left: -50px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(168,85,247,.12) 0%, transparent 60%); pointer-events: none; }
.vb-inner { position: relative; z-index: 1; }
.vb-counter { display: inline-flex; align-items: center; gap: 20px; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 20px 32px; margin-bottom: 32px; backdrop-filter: blur(20px); }
.vb-num { font-family: var(--font-d); font-size: 64px; font-weight: 900; color: var(--teal); line-height: 1; text-shadow: 0 0 40px rgba(20,180,157,.5); }
.vb-label { }
.vb-label strong { display: block; font-family: var(--font-d); font-size: 22px; font-weight: 900; color: var(--text); }
.vb-label span { font-size: 14px; color: var(--text3); }
.vb-h { font-family: var(--font-d); font-size: clamp(26px,3.5vw,44px); font-weight: 900; color: var(--text); letter-spacing: -1px; margin-bottom: 12px; }
.vb-p { font-size: 16px; color: var(--text3); line-height: 1.7; max-width: 600px; margin-bottom: 32px; }
.vb-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.vb-step { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 24px; transition: all .25s; }
.vb-step:hover { border-color: rgba(20,180,157,.3); background: rgba(20,180,157,.06); transform: translateY(-3px); }
.step-n { width: 40px; height: 40px; background: linear-gradient(135deg, var(--teal), var(--teal2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 14px; box-shadow: 0 4px 16px rgba(20,180,157,.4); }
.step-t { font-family: var(--font-d); font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.step-d { font-size: 13px; color: var(--text3); line-height: 1.65; }
.urgency-bar { display: flex; align-items: center; gap: 12px; background: rgba(245,158,11,.07); border: 1px solid rgba(245,158,11,.2); border-radius: 12px; padding: 14px 22px; margin-top: 28px; }
.urgency-bar svg { color: var(--gold); flex-shrink: 0; }
.urgency-bar p { font-size: 14px; font-weight: 600; color: var(--gold); }
.urgency-bar strong { font-weight: 800; }

/* ─── FEATURES ─── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; transition: all .28s; position: relative; overflow: hidden; }
.feat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0; transition: opacity .3s; }
.feat:hover { border-color: rgba(20,180,157,.28); transform: translateY(-5px); box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(20,180,157,.1); }
.feat:hover::before { opacity: 1; }
.feat-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.feat-icon svg { width: 24px; height: 24px; }
.fi-teal { background: rgba(20,180,157,.12); color: var(--teal); }
.fi-purple { background: rgba(168,85,247,.12); color: var(--purple); }
.fi-gold { background: rgba(245,158,11,.12); color: var(--gold); }
.fi-blue { background: rgba(59,130,246,.12); color: var(--blue); }
.fi-rose { background: rgba(244,63,94,.12); color: var(--rose); }
.fi-green { background: rgba(34,197,94,.12); color: #22c55e; }
.feat h3 { font-family: var(--font-d); font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.feat p { font-size: 14px; color: var(--text3); line-height: 1.72; }

/* ─── STATS ─── */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; margin: 64px 0; }
.stat-b { padding: 40px 28px; text-align: center; border-right: 1px solid var(--border); transition: background .2s; }
.stat-b:last-child { border-right: none; }
.stat-b:hover { background: var(--bg3); }
.stat-n { font-family: var(--font-d); font-size: clamp(36px,3.5vw,56px); font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.stat-l { font-size: 14px; color: var(--text3); font-weight: 500; }

/* ─── MAP / AFRICA ─── */
.africa-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.africa-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.africa-dots { position: relative; width: 320px; height: 420px; }
.city-dot { position: absolute; }
.city-dot-inner { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px rgba(20,180,157,.9); animation: cityPulse 2.5s ease-in-out infinite; }
.city-dot-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid rgba(20,180,157,.6); animation: cityRing 2.5s ease-out infinite; }
@keyframes cityPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:.8} }
@keyframes cityRing { 0%{transform:translate(-50%,-50%) scale(1);opacity:.8} 100%{transform:translate(-50%,-50%) scale(4);opacity:0} }
.africa-connect { position: absolute; inset: 0; pointer-events: none; }
.connect-line { stroke: rgba(20,180,157,.25); stroke-width: 1; fill: none; stroke-dasharray: 4 4; animation: dashMove 3s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -16; } }

/* ─── LANGUAGE PILLS ─── */
.lang-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.lang-pill { display: flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 99px; border: 1px solid var(--border); background: rgba(255,255,255,.03); font-size: 13px; font-weight: 600; color: var(--text2); transition: all .18s; cursor: pointer; }
.lang-pill:hover { border-color: rgba(20,180,157,.35); color: var(--teal); background: rgba(20,180,157,.06); transform: translateY(-2px); }
.lang-pill .lf { font-size: 18px; line-height: 1; }

/* ─── TESTIMONIALS ─── */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.test-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 28px; transition: all .22s; display: flex; flex-direction: column; }
.test-card:hover { border-color: rgba(20,180,157,.22); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 14px; height: 14px; color: var(--gold); }
.test-q { font-size: 15px; color: var(--text2); line-height: 1.75; font-style: italic; margin-bottom: 20px; flex: 1; }
.test-q::before { content: '\201C'; font-size: 32px; line-height: .7; color: var(--teal); font-family: var(--font-d); display: block; margin-bottom: 8px; }
.test-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.test-av { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.test-name { font-size: 14px; font-weight: 700; color: var(--text); }
.test-loc { font-size: 12px; color: var(--text4); margin-top: 2px; }

/* ─── FAQ ─── */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .2s; }
.faq-item.active { border-color: rgba(20,180,157,.28); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; user-select: none; gap: 16px; }
.faq-q span { font-size: 15px; font-weight: 700; color: var(--text); }
.faq-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; }
.faq-icon svg { width: 14px; height: 14px; color: var(--text3); transition: transform .25s; }
.faq-item.active .faq-icon { background: rgba(20,180,157,.12); }
.faq-item.active .faq-icon svg { transform: rotate(45deg); color: var(--teal); }
.faq-a { font-size: 14px; color: var(--text3); line-height: 1.8; padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .2s; }
.faq-item.active .faq-a { max-height: 300px; padding: 0 24px 22px; }

/* ─── SUPPORT ─── */
.support-box { background: linear-gradient(135deg, rgba(20,180,157,.1), rgba(59,130,246,.06)); border: 1px solid rgba(20,180,157,.2); border-radius: var(--r-xl); padding: 64px; text-align: center; }
.support-box h2 { font-family: var(--font-d); font-size: clamp(28px,3.5vw,46px); font-weight: 900; color: var(--text); margin-bottom: 14px; letter-spacing: -1px; }
.support-box p { font-size: 17px; color: var(--text3); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.support-email-link { display: inline-flex; align-items: center; gap: 10px; background: rgba(20,180,157,.1); border: 1px solid rgba(20,180,157,.3); border-radius: var(--r); padding: 14px 28px; font-size: 17px; font-weight: 700; color: var(--teal); transition: all .22s; margin-bottom: 20px; }
.support-email-link:hover { background: rgba(20,180,157,.18); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(20,180,157,.25); }
.support-hours { font-size: 13px; color: var(--text4); }

/* ─── CTA SECTION ─── */
.cta-box { background: linear-gradient(135deg, rgba(20,180,157,.1), rgba(168,85,247,.07)); border: 1px solid rgba(20,180,157,.18); border-radius: var(--r-xl); padding: 88px 64px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(20,180,157,.12) 0%, transparent 60%); pointer-events: none; }
.cta-box h2 { font-family: var(--font-d); font-size: clamp(32px,4vw,58px); font-weight: 900; color: var(--text); letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 16px; }
.cta-box p { font-size: 18px; color: var(--text3); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; }
.cta-url { font-family: var(--font-m); font-size: 13px; color: var(--text4); margin-top: 20px; }

/* ─── FOOTER ─── */
footer { border-top: 1px solid var(--border); padding: 64px 0 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { width: 38px; height: 38px; margin-bottom: 14px; }
.footer-brand h3 { font-family: var(--font-d); font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.footer-brand p { font-size: 14px; color: var(--text3); line-height: 1.7; max-width: 250px; }
.footer-col h4 { font-family: var(--font-d); font-size: 13px; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 14px; color: var(--text3); transition: color .15s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13px; color: var(--text4); }
.footer-langs-row { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-langs-row a { font-size: 12px; color: var(--text4); padding: 4px 10px; border: 1px solid var(--border); border-radius: 7px; transition: all .15s; }
.footer-langs-row a:hover { color: var(--teal); border-color: rgba(20,180,157,.3); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.reveal.from-left { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.scale { transform: scale(.94); }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }
.reveal[data-d="5"] { transition-delay: .5s; }
.reveal[data-d="6"] { transition-delay: .6s; }

/* ─── VERIFIED BADGE SVG ─── */
.vcheck { display: inline-flex; align-items: center; }
.vcheck svg { width: 16px; height: 16px; }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border2), transparent); margin: 80px 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .phone-outer { display: none; }
  .africa-section { grid-template-columns: 1fr; }
  .africa-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .verified-banner { padding: 40px; }
  .vb-steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-end { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 28px; }
  .hero { padding: 100px 0 70px; }
  section { padding: 80px 0; }
  .verified-banner { padding: 28px 22px; }
  .support-box { padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .vb-counter { flex-direction: column; text-align: center; }
  .vb-num { font-size: 48px; }
}
