@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

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

:root {
    --green: #228B22;
    --dark-green: #006400;
    --yellow: #FFD700;
    --red: #DC143C;
    --orange: #FF6B35;
    --blue: #3498db;
    --dark-blue: #2980b9;
    --purple: #9b59b6;
    --text: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-light: #f8f9fa;
    --radius: 16px;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.13);
    --ease: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--green), var(--yellow), var(--orange));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ── PARTICLES CANVAS ── */
#particles-canvas {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 0; opacity: 0.35;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.9rem 20px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s var(--ease), filter 0.3s ease;
}
.nav-logo-img:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 4px 12px rgba(34,139,34,0.35));
}

.accent {
    background: linear-gradient(135deg, var(--green), var(--yellow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.nav-menu { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
.nav-menu a {
    text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.92rem;
    position: relative; transition: color 0.3s;
}
.nav-menu a:not(.cta-button)::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--green); border-radius: 1px;
    transition: width 0.3s ease;
}
.nav-menu a:not(.cta-button):hover::after { width: 100%; }
.nav-menu a:not(.cta-button):hover { color: var(--green); }

.cta-button {
    background: linear-gradient(135deg, var(--blue), var(--dark-blue)) !important;
    color: white !important; padding: 0.65rem 1.4rem;
    border-radius: 25px; font-weight: 600 !important;
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease !important;
    -webkit-text-fill-color: white !important;
}
.cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(52,152,219,0.35) !important;
}
.cta-button::after { display: none !important; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
    margin-top: 68px;
    min-height: calc(100vh - 68px);
    background:
        linear-gradient(135deg, #0b3318 0%, #1a5c2a 35%, #1a3a5c 70%, #0b1e33 100%);
    color: white; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 3rem 0 6rem;
}
.hero::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 65% 40%, rgba(255,215,0,0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(34,139,34,0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 80%, rgba(52,152,219,0.06) 0%, transparent 40%);
}

.hero-wrapper {
    max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 20px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; position: relative; z-index: 1;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 1rem; border-radius: 20px;
    font-size: 0.88rem; margin-bottom: 1.5rem;
    animation: fadeInDown 0.7s ease both;
}
.flag-icon { font-size: 1.2rem; }

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.title-line { display: block; opacity: 0; animation: slideInLeft 0.7s ease both; }
.title-line:nth-child(2) { animation-delay: 0.12s; }
.title-line:nth-child(3) { animation-delay: 0.24s; }

.accent-animated {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 50%, var(--yellow) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    background-size: 200% auto;
    animation: slideInLeft 0.7s ease 0.12s both, shimmerText 3s ease infinite 1s;
}
@keyframes shimmerText {
    0%,100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.05rem; opacity: 0; line-height: 1.75;
    margin-bottom: 2.5rem; color: rgba(255,255,255,0.85);
    animation: fadeInUp 0.7s ease 0.35s both;
}

.hero-stats {
    display: flex; align-items: center; gap: 2rem;
    margin-bottom: 2.5rem; opacity: 0;
    animation: fadeInUp 0.7s ease 0.48s both;
}
.stat h3 {
    font-family: 'Poppins', sans-serif; font-size: 2.1rem; font-weight: 800;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 0.2rem;
}
.stat p { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.18); }

.hero-cta {
    display: flex; gap: 1rem; margin-bottom: 2rem; opacity: 0;
    animation: fadeInUp 0.7s ease 0.6s both; flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, var(--green), var(--dark-green));
    color: white; padding: 0.9rem 2rem; text-decoration: none;
    border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    border: none; cursor: pointer;
    box-shadow: 0 8px 30px rgba(34,139,34,0.3);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
    position: relative; overflow: hidden;
}
.btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.25), transparent);
    transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(34,139,34,0.4); }
.btn-full { width: 100%; justify-content: center; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.08); color: white;
    padding: 0.9rem 1.8rem; text-decoration: none; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    border: 1.5px solid rgba(255,255,255,0.28); backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.hero-partners {
    display: flex; align-items: center; gap: 1rem; opacity: 0;
    animation: fadeInUp 0.7s ease 0.72s both; font-size: 0.83rem;
    color: rgba(255,255,255,0.6); flex-wrap: wrap;
}
.partner-logos { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.partner-badge {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
    padding: 0.25rem 0.7rem; border-radius: 12px; font-size: 0.78rem;
}

/* ── HERO ILLUSTRATION ── */
.hero-illustration {
    position: relative; display: flex; justify-content: center; align-items: center;
    opacity: 0; animation: fadeInRight 0.9s ease 0.3s both;
}
.pitch-wrapper {
    position: relative; width: 100%; max-width: 480px;
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
    animation: float-gentle 6s ease-in-out infinite;
}
@keyframes float-gentle {
    0%,100% { transform: translateY(0) rotate(0.4deg); }
    50% { transform: translateY(-14px) rotate(-0.4deg); }
}
.pitch-svg { width: 100%; height: auto; display: block; }
.pitch-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(34,139,34,0.15) 0%, transparent 65%);
    pointer-events: none;
}

/* Floating stat cards */
.floating-stat-card {
    position: absolute;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px); border-radius: 14px;
    padding: 0.9rem 1.1rem; min-width: 145px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    color: var(--text); border: 1px solid rgba(255,255,255,0.95); z-index: 10;
}
.fsc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.35rem; }
.fsc-icon { font-size: 1.1rem; }
.fsc-trend { font-size: 0.68rem; font-weight: 700; color: #27ae60; background: rgba(39,174,96,0.1); padding: 0.15rem 0.4rem; border-radius: 8px; }
.fsc-body { display: flex; flex-direction: column; margin-bottom: 0.5rem; }
.fsc-value { font-size: 1.55rem; font-weight: 800; line-height: 1; color: var(--text); }
.fsc-unit { font-size: 0.72rem; font-weight: 500; color: var(--text-muted); margin-left: 0.15rem; }
.fsc-label { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }
.fsc-bar { height: 4px; background: #ecf0f1; border-radius: 2px; overflow: hidden; margin-top: 0.5rem; }
.fsc-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--yellow)); border-radius: 2px; transition: width 1.4s ease 1s; }

.fsc-1 { top: 6%; right: -8%; animation: floatCard1 4s ease-in-out infinite; }
.fsc-2 { bottom: 18%; right: -10%; animation: floatCard2 4.5s ease-in-out infinite 0.5s; }
.fsc-3 { top: 42%; left: -10%; animation: floatCard3 5s ease-in-out infinite 1s; }

@keyframes floatCard1 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-10px) rotate(0)} }
@keyframes floatCard2 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-8px) rotate(-1deg)} }
@keyframes floatCard3 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(12px) rotate(1deg)} }

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    color: rgba(255,255,255,0.5); font-size: 0.75rem; z-index: 1;
    opacity: 0; animation: fadeInUp 0.7s ease 1.4s both;
}
.scroll-mouse { width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,0.35); border-radius: 11px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 3px; height: 7px; background: rgba(255,255,255,0.55); border-radius: 2px; animation: scrollWheel 1.6s ease-in-out infinite; }
@keyframes scrollWheel { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(12px);opacity:0} }

/* ── SHARED SECTION STYLES ── */
section { padding: 6rem 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
    display: inline-block; padding: 0.28rem 1rem; border-radius: 20px;
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 0.9rem;
    background: rgba(34,139,34,0.09); color: var(--green); border: 1px solid rgba(34,139,34,0.18);
}
.section-tag.light { background: rgba(255,255,255,0.14); color: white; border-color: rgba(255,255,255,0.28); }
.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 800; color: var(--text); margin-bottom: 1rem; line-height: 1.2;
}
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.section-subtitle.light-text { color: rgba(255,255,255,0.72); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--bg-light); }
.steps-wrapper {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    position: relative;
}
.steps-wrapper::before {
    content: ''; position: absolute; top: 55px; left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, var(--green), var(--yellow), var(--orange), var(--red));
    opacity: 0.25; z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
    font-size: 0.72rem; font-weight: 800; color: var(--green);
    background: rgba(34,139,34,0.1); border: 1.5px solid rgba(34,139,34,0.25);
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.7rem;
}
.step-visual { margin-bottom: 1.2rem; }
.step-icon-wrap {
    width: 66px; height: 66px;
    background: linear-gradient(135deg, var(--green), var(--dark-green));
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto; box-shadow: 0 10px 28px rgba(34,139,34,0.25);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.step-item:hover .step-icon-wrap { transform: scale(1.1) rotate(-5deg); box-shadow: 0 15px 38px rgba(34,139,34,0.35); }
.step-icon-wrap i { font-size: 1.5rem; color: white; }
.step-purple { background: linear-gradient(135deg, var(--purple), #6c3483) !important; box-shadow: 0 10px 28px rgba(155,89,182,0.25) !important; }
.step-item:nth-child(2):hover .step-icon-wrap { box-shadow: 0 15px 38px rgba(155,89,182,0.35) !important; }
.step-blue { background: linear-gradient(135deg, var(--blue), var(--dark-blue)) !important; box-shadow: 0 10px 28px rgba(52,152,219,0.25) !important; }
.step-item:nth-child(3):hover .step-icon-wrap { box-shadow: 0 15px 38px rgba(52,152,219,0.35) !important; }
.step-orange { background: linear-gradient(135deg, #f39c12, #d68910) !important; box-shadow: 0 10px 28px rgba(243,156,18,0.25) !important; }
.step-item:nth-child(4):hover .step-icon-wrap { box-shadow: 0 15px 38px rgba(243,156,18,0.35) !important; }
.step-item h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.65rem; }
.step-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.8rem; }
.step-list { list-style: none; text-align: left; padding: 0 0.4rem; }
.step-list li { font-size: 0.8rem; color: var(--text-muted); padding: 0.22rem 0; display: flex; align-items: center; gap: 0.4rem; }
.step-list i { color: var(--green); font-size: 0.72rem; }

/* ── SOLUTION ── */
.solution { background: white; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.solution-item {
    background: white; border-radius: var(--radius); padding: 2.5rem 2rem;
    text-align: center; box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.3s;
    border: 1px solid rgba(0,0,0,0.04); position: relative; overflow: hidden;
}
.solution-item::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(34,139,34,0.03), rgba(52,152,219,0.03));
    opacity: 0; transition: opacity 0.3s;
}
.solution-item:hover::before { opacity: 1; }
.solution-item:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: rgba(34,139,34,0.12); }
.solution-illustration { width: 110px; height: 110px; margin: 0 auto 1.2rem; }
.sol-svg { width: 100%; height: 100%; }
.solution-icon {
    width: 66px; height: 66px;
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.3rem; box-shadow: 0 8px 24px rgba(52,152,219,0.25);
    transition: transform 0.3s var(--ease);
}
.solution-item:hover .solution-icon { transform: rotate(-8deg) scale(1.06); }
.solution-icon i { font-size: 1.7rem; color: white; }
.sol-purple { background: linear-gradient(135deg, var(--purple), #6c3483) !important; box-shadow: 0 8px 24px rgba(155,89,182,0.25) !important; }
.sol-green  { background: linear-gradient(135deg, #27ae60, #1e8449) !important; box-shadow: 0 8px 24px rgba(39,174,96,0.25) !important; }
.solution-item h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.7rem; color: var(--text); }
.solution-item p { color: var(--text-muted); line-height: 1.7; font-size: 0.9rem; margin-bottom: 1.3rem; }
.solution-tags { display: flex; justify-content: center; gap: 0.45rem; flex-wrap: wrap; }
.solution-tags span { background: rgba(52,152,219,0.08); color: var(--blue); padding: 0.22rem 0.7rem; border-radius: 10px; font-size: 0.72rem; font-weight: 600; border: 1px solid rgba(52,152,219,0.14); }
.sol-purple-tags span { background: rgba(155,89,182,0.08) !important; color: var(--purple) !important; border-color: rgba(155,89,182,0.14) !important; }
.sol-green-tags span  { background: rgba(39,174,96,0.08) !important; color: #27ae60 !important; border-color: rgba(39,174,96,0.14) !important; }

/* ── TECHNOLOGY ── */
.technology { background: var(--bg-light); }
.tech-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.tech-feature {
    background: white; padding: 2rem; border-radius: var(--radius);
    border-top: 4px solid var(--blue); box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.tech-feature:nth-child(2) { border-top-color: var(--purple); }
.tech-feature:nth-child(3) { border-top-color: var(--green); }
.tech-feature:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.tech-feature-icon {
    width: 48px; height: 48px; background: rgba(52,152,219,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.tech-feature-icon i { font-size: 1.2rem; color: var(--blue); }
.tf-purple { background: rgba(155,89,182,0.1) !important; }
.tf-purple i { color: var(--purple) !important; }
.tf-green  { background: rgba(34,139,34,0.1) !important; }
.tf-green i  { color: var(--green) !important; }
.tech-feature h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.tech-feature ul { list-style: none; margin-bottom: 1.4rem; }
.tech-feature li { padding: 0.42rem 0 0.42rem 1.4rem; position: relative; font-size: 0.86rem; color: var(--text-muted); border-bottom: 1px solid rgba(0,0,0,0.04); }
.tech-feature li:last-child { border-bottom: none; }
.tech-feature li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: bold; }
.tech-progress-bars { margin-top: 1.4rem; }
.tp-bar { display: grid; grid-template-columns: 1fr 2fr auto; align-items: center; gap: 0.5rem; margin-bottom: 0.7rem; font-size: 0.76rem; color: var(--text-muted); }
.tp-val { font-weight: 700; font-size: 0.75rem; color: var(--text); }
.progress-track { height: 6px; background: #ecf0f1; border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--yellow)); border-radius: 3px; transition: width 1.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.pf-purple { background: linear-gradient(90deg, var(--purple), #e056fd) !important; }
.pf-green  { background: linear-gradient(90deg, var(--blue), var(--green)) !important; }

/* ── MARKET ── */
.market {
    background: linear-gradient(135deg, #0a2e18 0%, #1a5c2a 45%, #1e3a6e 100%);
    color: white;
}
.market .section-header h2 { color: white; }
.market-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.market-size h3, .target-segments h3 { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 1.8rem; }
.market-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 2rem; }
.market-stat {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    padding: 1.4rem 1rem; border-radius: 14px; text-align: center;
    transition: transform 0.3s var(--ease), background 0.3s;
}
.market-stat:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.mstat-icon { font-size: 1.7rem; margin-bottom: 0.7rem; }
.market-stat h4 { font-family: 'Poppins', sans-serif; font-size: 1.55rem; font-weight: 800; color: var(--yellow); margin-bottom: 0.4rem; }
.market-stat p { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

.africa-expansion { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 1.4rem; }
.africa-expansion h4 { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.7); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.expansion-countries { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.country {
    display: flex; align-items: center; gap: 0.45rem;
    background: rgba(255,255,255,0.05); padding: 0.55rem 0.75rem;
    border-radius: 10px; border: 1px solid rgba(255,255,255,0.07);
    font-size: 0.82rem; color: rgba(255,255,255,0.7); transition: all 0.3s;
}
.country.active { background: rgba(34,139,34,0.2); border-color: rgba(34,139,34,0.4); color: white; }
.country-status { margin-left: auto; font-size: 0.68rem; padding: 0.12rem 0.4rem; border-radius: 6px; background: rgba(255,215,0,0.12); color: var(--yellow); }
.active-status { background: rgba(34,139,34,0.3) !important; color: #7fff7f !important; }

.segments { display: grid; gap: 1rem; }
.segment {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    padding: 1.1rem 1.4rem; border-radius: 12px; transition: all 0.3s ease;
}
.segment:hover { background: rgba(255,255,255,0.12); transform: translateX(6px); }
.seg-icon { font-size: 1.9rem; flex-shrink: 0; }
.seg-content h4 { font-weight: 700; color: white; margin-bottom: 0.2rem; font-size: 0.95rem; }
.seg-content p { font-size: 0.82rem; color: rgba(255,255,255,0.62); }
.seg-badge { margin-left: auto; padding: 0.28rem 0.7rem; background: rgba(255,215,0,0.12); color: var(--yellow); border-radius: 10px; font-size: 0.72rem; font-weight: 800; border: 1px solid rgba(255,215,0,0.2); flex-shrink: 0; }

/* ── TESTIMONIALS ── */
.testimonials { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
    background: var(--bg-light); border-radius: var(--radius); padding: 2rem;
    position: relative; border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease, background 0.3s;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: white; }
.quote-icon { font-size: 3rem; line-height: 0.8; color: var(--green); opacity: 0.25; margin-bottom: 0.6rem; font-family: Georgia, serif; }
.testimonial-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; color: white; flex-shrink: 0; }
.av-blue  { background: linear-gradient(135deg, var(--blue), #1a5276); }
.av-green { background: linear-gradient(135deg, #27ae60, #1e8449); }
.av-gold  { background: linear-gradient(135deg, var(--yellow), #e67e22); }
.author-info { flex: 1; }
.author-info strong { display: block; font-size: 0.88rem; color: var(--text); }
.author-info span   { font-size: 0.76rem; color: var(--text-muted); }
.author-rating { font-size: 0.72rem; }

/* ── INVESTMENT ── */
.investment { background: var(--bg-light); }
.investment-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 2.5rem; }
.investment-highlight, .business-model {
    background: white; padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow);
}
.investment-highlight h3, .business-model h3 {
    font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 1.4rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.investment-highlight h3 i { color: var(--yellow); }
.business-model h3 i { color: var(--green); }
.investment-highlight ul { list-style: none; }
.investment-highlight li { padding: 0.8rem 0 0.8rem 2.2rem; position: relative; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.investment-highlight li:last-child { border-bottom: none; }
.investment-highlight li::before { content: '💡'; position: absolute; left: 0; top: 0.8rem; }
.investment-highlight strong { color: var(--text); }
.stream {
    display: flex; align-items: center; gap: 1rem;
    background: var(--bg-light); padding: 1.1rem; margin-bottom: 0.9rem;
    border-radius: 10px; border-left: 4px solid var(--blue);
    transition: transform 0.3s ease, background 0.3s, box-shadow 0.3s;
}
.stream:hover { transform: translateX(5px); background: white; box-shadow: var(--shadow); }
.stream-icon { font-size: 1.35rem; flex-shrink: 0; }
.stream-content h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 0.18rem; }
.stream-content p  { font-size: 0.78rem; color: var(--text-muted); }

/* ── DASHBOARD PREVIEW ── */
.dashboard-preview { background: white; }
.dashboard-mockup {
    background: #f0f2f5; border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.06);
}
.mockup-header {
    background: #1e293b; padding: 0.9rem 1.4rem;
    display: flex; align-items: center; gap: 1.5rem;
}
.mockup-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.mockup-nav { display: flex; gap: 0.4rem; flex: 1; }
.nav-item { padding: 0.42rem 0.9rem; border-radius: 6px; cursor: pointer; font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: all 0.2s; }
.nav-item:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-item.active { background: var(--blue); color: white; }
.mockup-actions { margin-left: auto; }
.live-badge { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.75); animation: pulseLive 2s ease infinite; }
@keyframes pulseLive { 0%,100%{opacity:1} 50%{opacity:0.45} }

.mockup-content { background: white; padding: 1.4rem; transition: opacity 0.2s ease; }
.dashboard-grid { display: grid; gap: 1.4rem; }
.db-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.db-stat-card {
    display: flex; align-items: center; gap: 0.7rem;
    background: #f8fafc; padding: 0.9rem 1.1rem; border-radius: 10px; border: 1px solid rgba(0,0,0,0.05);
}
.db-stat-card i { font-size: 1.25rem; color: var(--blue); width: 28px; text-align: center; }
.db-val { display: block; font-size: 1.15rem; font-weight: 800; color: var(--text); line-height: 1; }
.db-lbl { font-size: 0.68rem; color: var(--text-muted); }
.db-main-row { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 1.4rem; }
.db-players-panel, .db-chart-panel, .db-radar-panel {
    background: #f8fafc; border-radius: 12px; padding: 1.1rem; border: 1px solid rgba(0,0,0,0.05);
}
.db-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.db-panel-header h4 { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.db-badge { font-size: 0.68rem; background: rgba(52,152,219,0.1); color: var(--blue); padding: 0.18rem 0.5rem; border-radius: 8px; }
.db-player-item { display: flex; align-items: center; gap: 0.7rem; padding: 0.65rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.db-player-item:last-child { border-bottom: none; }
.db-player-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; color: white; flex-shrink: 0; }
.db-player-info strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text); }
.db-player-info span   { font-size: 0.7rem; color: var(--text-muted); }
.score-badge { padding: 0.22rem 0.55rem; border-radius: 8px; font-size: 0.78rem; font-weight: 700; margin-left: auto; }
.score-badge.excellent { background: rgba(39,174,96,0.12); color: #27ae60; }
.score-badge.good      { background: rgba(52,152,219,0.12); color: var(--blue); }

/* Bar chart */
.db-chart { height: 135px; display: flex; align-items: flex-end; }
.db-bar-wrap { display: flex; align-items: flex-end; gap: 7px; width: 100%; height: 100%; }
.db-bar {
    flex: 1; background: rgba(52,152,219,0.15); border-radius: 4px 4px 0 0;
    height: 0; display: flex; justify-content: center; position: relative;
    transition: height 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.db-bar-active { background: linear-gradient(180deg, var(--blue), rgba(52,152,219,0.35)) !important; }
.db-bar span { position: absolute; bottom: -18px; font-size: 0.62rem; color: var(--text-muted); }

.radar-svg { width: 100%; max-height: 155px; }

/* ── TEAM ── */
.team { background: var(--bg-light); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-member {
    background: white; border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
    box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.team-member:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.member-avatar { position: relative; width: fit-content; margin: 0 auto 1.4rem; }
.avatar-circle {
    width: 78px; height: 78px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: white;
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.team-member:hover .avatar-circle { transform: scale(1.08); box-shadow: 0 16px 38px rgba(0,0,0,0.2); }
.member-badge {
    position: absolute; bottom: 2px; right: -6px;
    background: var(--yellow); color: #333;
    font-size: 0.62rem; font-weight: 800; padding: 0.18rem 0.42rem;
    border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}
.team-member h4 { font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.member-role { font-size: 0.8rem; color: var(--blue); font-weight: 600; margin-bottom: 0.7rem; }
.member-bio { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.member-skills { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.38rem; }
.member-skills span { font-size: 0.68rem; background: rgba(34,139,34,0.08); color: var(--green); padding: 0.18rem 0.52rem; border-radius: 10px; border: 1px solid rgba(34,139,34,0.14); }

/* ── CONTACT ── */
.contact {
    background: linear-gradient(135deg, #1a2744 0%, #2c3e50 100%);
    color: white;
}
.contact .section-header h2 { color: white; }
.contact-content { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-info h3 { font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 0.7rem; }
.contact-info > p { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 1.8rem; }
.contact-details { margin-bottom: 1.8rem; }
.contact-item {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem;
    padding: 0.7rem 1rem; background: rgba(255,255,255,0.06);
    border-radius: 10px; border: 1px solid rgba(255,255,255,0.08);
}
.contact-icon { width: 34px; height: 34px; background: rgba(52,152,219,0.2); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { color: var(--blue); font-size: 0.85rem; }
.contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.78); }
.social-links { display: flex; gap: 0.7rem; margin-bottom: 1.4rem; }
.social-link {
    width: 38px; height: 38px; background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem;
    transition: all 0.3s ease;
}
.social-link:hover { background: var(--blue); border-color: var(--blue); color: white; transform: translateY(-3px); }
.trust-badges { display: flex; gap: 1rem; }
.trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.trust-item i { color: var(--yellow); }
.contact-form { background: rgba(255,255,255,0.07); backdrop-filter: blur(20px); padding: 2.2rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.11); }
.contact-form form { display: grid; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    padding: 0.85rem 1rem; border: 1.5px solid rgba(255,255,255,0.13);
    border-radius: 10px; background: rgba(255,255,255,0.08); color: white;
    font-family: inherit; font-size: 0.9rem; transition: all 0.3s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.38); }
.contact-form select option { background: #2c3e50; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--blue); background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(52,152,219,0.18);
}

/* ── FOOTER ── */
.footer { background: #0f172a; color: white; padding: 4rem 0 1.5rem; }
.footer-content {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; margin-bottom: 0.7rem; }
.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.footer-logo-img:hover { opacity: 1; filter: brightness(0) saturate(100%) invert(35%) sepia(80%) saturate(400%) hue-rotate(90deg); }
.footer-brand > p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 1.4rem; line-height: 1.6; }
.footer-social { display: flex; gap: 0.65rem; }
.footer-social a {
    width: 34px; height: 34px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; transition: all 0.3s;
}
.footer-social a:hover { background: var(--green); border-color: var(--green); color: white; transform: translateY(-2px); }
.footer-links-group h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.38); margin-bottom: 1.1rem; }
.footer-links-group a, .footer-links-group span { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.86rem; margin-bottom: 0.55rem; transition: color 0.3s; cursor: default; }
.footer-links-group a:hover { color: white; cursor: pointer; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.28); }

/* ── KEYFRAMES ── */
@keyframes fadeInDown { from{opacity:0;transform:translateY(-18px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(28px)}  to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight{ from{opacity:0;transform:translateX(36px)}  to{opacity:1;transform:translateX(0)} }
@keyframes slideInLeft{ from{opacity:0;transform:translateX(-36px)} to{opacity:1;transform:translateX(0)} }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .hero-wrapper { grid-template-columns: 1fr; }
    .hero-illustration { display: none; }
    .hero-content { text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-partners { justify-content: center; }
    .steps-wrapper { grid-template-columns: repeat(2, 1fr); }
    .steps-wrapper::before { display: none; }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-features { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
    .market-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .investment-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .db-main-row { grid-template-columns: 1fr 1fr; }
    .db-radar-panel { display: none; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: 68px; left: 0; right: 0;
        background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
        padding: 1.2rem; flex-direction: column; gap: 0;
        transform: translateY(-115%); transition: transform 0.3s ease;
        box-shadow: 0 12px 40px rgba(0,0,0,0.1); z-index: 999;
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 0.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .nav-menu a:not(.cta-button)::after { display: none; }
    .cta-button { text-align: center; border-radius: 8px !important; margin-top: 0.5rem; }

    section { padding: 4.5rem 0; }
    .hero { padding: 2rem 0 4rem; }
    .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
    .stat-divider { display: none; }
    .hero-partners { flex-direction: column; align-items: center; }

    .steps-wrapper { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .db-stat-row { grid-template-columns: repeat(2, 1fr); }
    .db-main-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .expansion-countries { grid-template-columns: 1fr; }
    .market-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .db-stat-row { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .investment-grid { grid-template-columns: 1fr; }
    .expansion-countries { grid-template-columns: 1fr; }
}
