
    /* ─── DESIGN TOKENS ─── */
    :root {
      --brand: #7C3AED;
      --brand-dim: #6D28D9;
      --brand-glow: rgba(124, 58, 237, 0.18);
      --brand-subtle: rgba(124, 58, 237, 0.08);

      /* Dark theme (default) */
      --bg: #080c0e;
      --bg2: #0d1317;
      --bg3: #121a1f;
      --surface: #141c22;
      --surface2: #1a2530;
      --border: rgba(255,255,255,0.07);
      --border-soft: rgba(255,255,255,0.04);
      --text: #edf2f4;
      --text-2: #8fa3b0;
      --text-3: #5a7280;
      --shadow: rgba(0,0,0,0.5);
      --nav-bg: rgba(8,12,14,0.85);
      --card-bg: #111820;
      --card-hover: #16202a;
      --invert-icon: invert(1);
      --hero-gradient: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(124,58,237,0.08) 0%, transparent 70%);
    }

    [data-theme="light"] {
      --bg: #f4f7f5;
      --bg2: #edf2ee;
      --bg3: #e4ece6;
      --surface: #ffffff;
      --surface2: #f0f5f1;
      --border: rgba(0,0,0,0.08);
      --border-soft: rgba(0,0,0,0.04);
      --text: #1a0d2e;
      --text-2: #4c3562;
      --text-3: #7a6a8e;
      --shadow: rgba(0,0,0,0.1);
      --nav-bg: rgba(244,247,245,0.9);
      --card-bg: #ffffff;
      --card-hover: #f5faf6;
      --invert-icon: invert(0);
      --hero-gradient: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(124,58,237,0.12) 0%, transparent 70%);
    }

    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
      transition: background 0.3s, color 0.3s;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; }

    /* ─── TYPOGRAPHY ─── */
    h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.1; }

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

    /* ─── UTILITY ─── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 96px 0; }
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--brand); background: var(--brand-subtle);
      border: 1px solid rgba(124,58,237,0.2); border-radius: 100px;
      padding: 5px 14px; margin-bottom: 16px;
    }
    .section-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
    .section-title { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
    .section-sub { font-size: 17px; color: var(--text-2); max-width: 520px; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; border-radius: 10px;
      background: var(--brand); color: #fff;
      font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600;
      border: none; cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 0 24px var(--brand-glow);
    }
    .btn-primary:hover { background: var(--brand-dim); transform: translateY(-1px); box-shadow: 0 4px 32px var(--brand-glow); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; border-radius: 10px;
      background: transparent; color: var(--text);
      font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600;
      border: 1px solid var(--border); cursor: pointer;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }
    .btn-ghost:hover { border-color: var(--brand); background: var(--brand-subtle); transform: translateY(-1px); }
    .tag {
      display: inline-block; padding: 3px 10px; border-radius: 6px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
      background: rgba(7,127,255,0.15); color: #4da6ff;
    }

    /* ─── BACKGROUND GRID ─── */
    .bg-grid {
      position: fixed; inset: 0; pointer-events: none; z-index: 0;
      background-image:
        linear-gradient(var(--border-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    }

    /* ─── NOISE OVERLAY ─── */
    .bg-noise {
      position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    /* ─── NAV ─── */
    #header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--nav-bg);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }
    .nav-inner {
      display: flex; align-items: center; height: 68px; gap: 32px;
    }
    .logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px;
      flex-shrink: 0;
    }
    .logo img {
      width: 36px; height: 36px; border-radius: 8px;
    }
    .logo-text { color: var(--text); }
    .logo-text span { color: var(--brand); }
    nav { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
    nav a {
      font-size: 14px; font-weight: 500; color: var(--text-2);
      padding: 6px 14px; border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }
    nav a:hover, nav a.active { color: var(--text); background: var(--border); }
    .nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

    /* Theme Toggle */
    .theme-btn {
      width: 38px; height: 38px; border-radius: 8px;
      background: var(--surface); border: 1px solid var(--border);
      color: var(--text-2); cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: all 0.2s; font-size: 17px;
    }
    .theme-btn:hover { color: var(--brand); border-color: var(--brand); }

    /* Mobile nav */
    .mobile-toggle {
      display: none; background: none; border: 1px solid var(--border);
      border-radius: 8px; width: 38px; height: 38px; cursor: pointer;
      color: var(--text); font-size: 20px; align-items: center; justify-content: center;
    }
    .mobile-nav {
      display: none; flex-direction: column; gap: 4px;
      padding: 12px 24px 20px; border-top: 1px solid var(--border);
      background: var(--nav-bg);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { padding: 10px 12px; border-radius: 8px; font-weight: 500; color: var(--text-2); }
    .mobile-nav a:hover { background: var(--surface); color: var(--text); }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh; display: flex; align-items: center;
      padding-top: 68px; position: relative; overflow: hidden;
    }
    .hero-glow {
      position: absolute; top: 10%; right: -10%; width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
      border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-glow-2 {
      position: absolute; bottom: -10%; left: -5%; width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
      border-radius: 50%; background: radial-gradient(circle, rgba(7,127,255,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
      position: relative; z-index: 1; padding: 80px 0;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--brand); background: var(--brand-subtle);
      border: 1px solid rgba(124,58,237,0.25); border-radius: 100px;
      padding: 6px 16px; margin-bottom: 24px;
    }
    .hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.7); } }
    .hero-title {
      font-size: clamp(40px, 6vw, 72px); font-weight: 800;
      line-height: 1.05; margin-bottom: 24px;
    }
    .hero-title .accent { color: var(--brand); }
    .typing-text {
      color: var(--brand);
      display: inline-block;
      border-right: 3px solid var(--brand);
      animation: blink 0.7s infinite;
    }
    @keyframes blink {
      0%, 100% { border-color: var(--brand); }
      50% { border-color: transparent; }
    }
    .hero-title .stroke {
      -webkit-text-stroke: 1.5px var(--brand);
      color: transparent;
    }
    .hero-desc { font-size: 17px; color: var(--text-2); max-width: 480px; margin-bottom: 40px; line-height: 1.7; }
    .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
    .hero-stats {
      display: flex; gap: 32px; padding-top: 32px;
      border-top: 1px solid var(--border);
    }
    .stat-num { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--text); }
    .stat-label { font-size: 13px; color: var(--text-3); margin-top: 2px; }

    /* App Store Badges */
    .app-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .app-badge {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 20px; border-radius: 10px;
      background: var(--surface); border: 1px solid var(--border);
      cursor: pointer; transition: all 0.2s;
      min-width: 148px;
    }
    .app-badge:hover { border-color: var(--brand); background: var(--brand-subtle); transform: translateY(-2px); box-shadow: 0 8px 24px var(--brand-glow); }
    .app-badge img { height: 40px; }

    /* Hero visual */
    .hero-visual { position: relative; }
    .hero-phone-wrap {
      position: relative; display: flex; justify-content: center; align-items: center;
    }
    .hero-mockup {
      width: 100%; max-width: 460px; border-radius: 24px;
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px var(--border);
      overflow: hidden;
      padding: 28px;
    }
    .mockup-header {
      display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px;
    }
    .mockup-avatar {
      width: 40px; height: 40px; border-radius: 10px;
      background: var(--brand); display: flex; align-items: center; justify-content: center;
      font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 800; color: #fff;
    }
    .mockup-greeting { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; }
    .mockup-greeting span { color: var(--text-2); font-weight: 400; font-size: 12px; display: block; margin-top: 1px; }
    .mockup-balance-card {
      border-radius: 14px; padding: 20px;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dim) 100%);
      margin-bottom: 20px;
    }
    .mockup-balance-label { font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }
    .mockup-balance-amount { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: #fff; margin: 6px 0; }
    .mockup-balance-sub { font-size: 12px; color: rgba(255,255,255,0.7); }
    .mockup-quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
    .mockup-quick-item {
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      padding: 12px 6px; border-radius: 10px; background: var(--bg3);
      cursor: pointer; transition: background 0.2s;
    }
    .mockup-quick-item:hover { background: var(--brand-subtle); }
    .mockup-quick-icon { font-size: 20px; }
    .mockup-quick-label { font-size: 10px; color: var(--text-2); text-align: center; font-weight: 500; }
    .mockup-recent-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 12px; color: var(--text-2); }
    .mockup-txn { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-soft); }
    .mockup-txn:last-child { border-bottom: none; }
    .mockup-txn-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
    .mockup-txn-info { flex: 1; }
    .mockup-txn-name { font-size: 13px; font-weight: 600; }
    .mockup-txn-time { font-size: 11px; color: var(--text-3); }
    .mockup-txn-amount { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; }
    .mockup-txn-amount.in { color: var(--brand); }
    .mockup-txn-amount.out { color: #f87171; }

    /* Floating badge */
    .float-badge {
      position: absolute; background: var(--surface2);
      border: 1px solid var(--border); border-radius: 12px;
      padding: 10px 14px; box-shadow: 0 12px 40px var(--shadow);
      display: flex; align-items: center; gap: 10px;
      animation: float 4s ease-in-out infinite;
    }
    .float-badge.left { left: -40px; bottom: 20%; }
    .float-badge.top-right { right: -30px; top: 20%; }
    @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    .float-badge-icon { font-size: 22px; }
    .float-badge-text { font-size: 12px; font-weight: 600; }
    .float-badge-sub { font-size: 11px; color: var(--text-3); }

    /* ─── SERVICES ─── */
    #services { background: var(--bg2); }
    .services-header { text-align: center; margin-bottom: 64px; }
    .services-header .section-sub { margin: 0 auto; }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    .service-card {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 18px; padding: 28px;
      transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; inset: 0; opacity: 0;
      background: radial-gradient(circle at top left, var(--brand-glow), transparent 70%);
      transition: opacity 0.3s;
    }
    .service-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px var(--shadow); }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 50px; height: 50px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; margin-bottom: 18px;
      background: var(--brand-subtle); border: 1px solid rgba(124,58,237,0.2);
    }
    .service-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .service-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 20px; }
    .service-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600; color: var(--brand);
      transition: gap 0.2s;
    }
    .service-card:hover .service-link { gap: 10px; }

    /* USSD Section */
    .ussd-section { margin-top: 48px; }
    .ussd-cards {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px;
    }
    .ussd-card {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 16px; padding: 24px; text-align: center;
    }
    .ussd-card-icon { font-size: 32px; margin-bottom: 12px; }
    .ussd-card h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .ussd-card p { font-size: 13px; color: var(--text-2); }
    .ussd-highlight {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dim) 100%);
      border-radius: 20px; padding: 40px; text-align: center;
    }
    .ussd-highlight h3 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 12px; }
    .ussd-code {
      font-size: 32px; font-weight: 800; background: #fff; color: var(--brand);
      padding: 8px 20px; border-radius: 10px; display: inline-block;
    }
    .ussd-highlight p { color: rgba(255,255,255,0.85); font-size: 15px; max-width: 500px; margin: 16px auto 20px; }

    /* ─── TOOLS ─── */
    .tools-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
    .tool-card {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 14px; padding: 22px 18px; text-align: center;
      transition: all 0.2s;
    }
    .tool-card:hover { border-color: rgba(124,58,237,0.3); background: var(--card-hover); transform: translateY(-3px); }
    .tool-emoji { font-size: 28px; margin-bottom: 10px; }
    .tool-card h3 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
    .tool-card p { font-size: 12px; color: var(--text-2); line-height: 1.5; margin-bottom: 16px; }
    .tool-btn {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 12px; font-weight: 600; color: var(--brand);
      padding: 6px 14px; border-radius: 8px;
      background: var(--brand-subtle); border: 1px solid rgba(124,58,237,0.2);
      transition: all 0.2s;
    }
    .tool-btn:hover { background: var(--brand); color: #fff; }

    /* ─── VALUES ─── */
    #values { background: var(--bg); }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .value-card {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 18px; padding: 32px; position: relative; overflow: hidden;
    }
    .value-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--brand), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .value-card:hover::after { opacity: 1; }
    .value-num {
      font-family: 'Syne', sans-serif; font-size: 64px; font-weight: 800;
      color: var(--border); line-height: 1; margin-bottom: 16px;
      background: linear-gradient(135deg, var(--brand-glow), transparent);
      -webkit-background-clip: text;
    }
    .value-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; margin-bottom: 10px; }
    .value-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }

    /* ─── STATS ─── */
    .stats-band {
      background: var(--brand); padding: 56px 0;
    }
    .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
    .stat-item { text-align: center; }
    .stat-big { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: #fff; }
    .stat-desc { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 4px; font-weight: 500; }

    /* ─── FAQ ─── */
    #faq { background: var(--bg2); }
    .faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
    .faq-list { display: flex; flex-direction: column; gap: 10px; }
    .faq-item {
      border: 1px solid var(--border); border-radius: 12px;
      background: var(--card-bg); overflow: hidden;
    }
    .faq-trigger {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 20px; text-align: left; color: var(--text);
      font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600;
    }
    .faq-trigger .chevron { font-size: 18px; color: var(--text-3); transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .chevron { transform: rotate(180deg); color: var(--brand); }
    .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-body-inner { padding: 0 20px 18px; font-size: 14px; color: var(--text-2); line-height: 1.7; }

    /* ─── CONTACT ─── */
    #contact { background: var(--bg); }
    .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
    .contact-info { display: flex; flex-direction: column; gap: 20px; }
    .info-card {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 14px; padding: 20px; display: flex; align-items: flex-start; gap: 16px;
    }
    .info-icon {
      width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
      background: var(--brand-subtle); display: flex; align-items: center; justify-content: center;
      font-size: 20px; border: 1px solid rgba(124,58,237,0.2);
    }
    .info-card h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
    .info-card p { font-size: 13px; color: var(--text-2); line-height: 1.7; }
    .contact-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-label { font-size: 13px; font-weight: 600; color: var(--text-2); }
    .form-input, .form-textarea {
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: 10px; padding: 12px 14px; color: var(--text);
      font-family: 'DM Sans', sans-serif; font-size: 14px;
      transition: border-color 0.2s; resize: none; outline: none;
    }
    .form-input:focus, .form-textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-glow); }
    .form-textarea { min-height: 110px; }
    .form-submit {
      width: 100%; padding: 13px; border-radius: 10px;
      background: var(--brand); color: #fff; border: none; cursor: pointer;
      font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
      transition: background 0.2s, transform 0.2s;
    }
    .form-submit:hover { background: var(--brand-dim); transform: translateY(-1px); }

    /* ─── CTA BAND ─── */
    .cta-band {
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dim) 100%);
      padding: 80px 0; text-align: center; position: relative; overflow: hidden;
    }
    .cta-band::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 70%);
    }
    .cta-band h2 { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 44px); color: #fff; margin-bottom: 14px; position: relative; }
    .cta-band p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; position: relative; }
    .cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; border-radius: 10px;
      background: #fff; color: var(--brand);
      font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
    .btn-outline-white {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; border-radius: 10px;
      background: transparent; color: #fff;
      font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
      border: 2px solid rgba(255,255,255,0.4);
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg2); border-top: 1px solid var(--border);
      padding: 64px 0 32px;
    }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand p { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-top: 16px; max-width: 280px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 20px; }
    .social-btn {
      width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border);
      background: var(--surface); display: flex; align-items: center; justify-content: center;
      font-size: 15px; color: var(--text-2); cursor: pointer; transition: all 0.2s;
    }
    .social-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-subtle); }
    .footer-col h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 14px; color: var(--text-2); transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--brand); }
    .footer-bottom {
      padding-top: 24px; border-top: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      font-size: 13px; color: var(--text-3);
    }

    /* Newsletter */
    .newsletter-bar {
      background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
      padding: 24px 32px; display: flex; align-items: center; gap: 24px;
      margin-bottom: 48px; flex-wrap: wrap;
    }
    .newsletter-bar h4 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; white-space: nowrap; }
    .newsletter-bar p { font-size: 14px; color: var(--text-2); flex: 1; min-width: 200px; }
    .newsletter-form { display: flex; gap: 10px; flex: 1; min-width: 280px; }
    .newsletter-input {
      flex: 1; background: var(--bg3); border: 1px solid var(--border);
      border-radius: 8px; padding: 10px 14px; color: var(--text);
      font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none;
      transition: border-color 0.2s;
    }
    .newsletter-input:focus { border-color: var(--brand); }
    .newsletter-btn {
      padding: 10px 20px; border-radius: 8px; background: var(--brand);
      color: #fff; border: none; cursor: pointer;
      font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600;
      transition: background 0.2s; white-space: nowrap;
    }
    .newsletter-btn:hover { background: var(--brand-dim); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { display: none; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .ussd-cards { grid-template-columns: repeat(2, 1fr); }
      .tools-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      nav { display: none; }
      .mobile-toggle { display: flex; }
      .nav-actions .btn-primary { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .ussd-cards { grid-template-columns: 1fr 1fr; }
      .values-grid { grid-template-columns: 1fr; }
      .tools-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .faq-layout { grid-template-columns: 1fr; gap: 40px; }
      .contact-layout { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .hero-stats { flex-wrap: wrap; gap: 20px; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .tools-grid { grid-template-columns: 1fr 1fr; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .app-badges { flex-direction: column; }
      .app-badge { width: 100%; max-width: 200px; }
    }

    /* ─── ENTRY ANIMATIONS ─── */
    .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.visible { opacity: 1; transform: none; }

    /* Coming soon tag */
    .badge-soon {
      font-size: 10px; padding: 2px 7px;
      background: rgba(7,127,255,0.15); color: #4da6ff;
      border-radius: 8px; vertical-align: middle; margin-left: 6px; font-weight: 600;
    }

    /* Scroll top */
    #scroll-top {
      position: fixed; bottom: 24px; right: 24px; width: 42px; height: 42px;
      border-radius: 10px; background: var(--brand); color: #fff;
      display: flex; align-items: center; justify-content: center; font-size: 20px;
      box-shadow: 0 4px 24px var(--brand-glow); transition: all 0.2s;
      opacity: 0; pointer-events: none; z-index: 99;
    }
    #scroll-top.show { opacity: 1; pointer-events: all; }
    #scroll-top:hover { transform: translateY(-3px); }

    .appsection-sub { 
      font-size: 17px; 
      color: var(--text-2); 
      /* max-width: 520px; */
      text-align: center; 
    }

















    /* From Uiverse.io by himanshu9682 */ 
.type--A {
  --line_color: #555555;
  --back_color: #ffecf6;
}
.type--B {
  --line_color: #1b1919;
  --back_color: #e9ecff;
}
.type--C {
  --line_color: #777777;
  --back_color: #defffa;
}
.button {
  position: absolute;
  z-index: 0;
  width: 240px;
  height: 56px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: var(--line_color);
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.button__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.button::before,
.button::after,
.button__text::before,
.button__text::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: var(--line_color);
  transition: all 0.5s ease;
}
.button::before {
  top: 0;
  left: 54px;
  width: calc(100% - 56px * 2 - 16px);
}
.button::after {
  top: 0;
  right: 54px;
  width: 8px;
}
.button__text::before {
  bottom: 0;
  right: 54px;
  width: calc(100% - 56px * 2 - 16px);
}
.button__text::after {
  bottom: 0;
  left: 54px;
  width: 8px;
}
.button__line {
  position: absolute;
  top: 0;
  width: 56px;
  height: 100%;
  overflow: hidden;
}
.button__line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 150%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 300px;
  border: solid 3px var(--line_color);
}
.button__line:nth-child(1),
.button__line:nth-child(1)::before {
  left: 0;
}
.button__line:nth-child(2),
.button__line:nth-child(2)::before {
  right: 0;
}
.button:hover {
  letter-spacing: 6px;
}
.button:hover::before,
.button:hover .button__text::before {
  width: 8px;
}
.button:hover::after,
.button:hover .button__text::after {
  width: calc(100% - 56px * 2 - 16px);
}
.button__drow1,
.button__drow2 {
  position: absolute;
  z-index: -1;
  border-radius: 16px;
  transform-origin: 16px 16px;
}
.button__drow1 {
  top: -16px;
  left: 40px;
  width: 32px;
  height: 0;
  transform: rotate(30deg);
}
.button__drow2 {
  top: 44px;
  left: 77px;
  width: 32px;
  height: 0;
  transform: rotate(-127deg);
}
.button__drow1::before,
.button__drow1::after,
.button__drow2::before,
.button__drow2::after {
  content: "";
  position: absolute;
}
.button__drow1::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-60deg);
}
.button__drow1::after {
  top: -10px;
  left: 45px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(69deg);
}
.button__drow2::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-146deg);
}
.button__drow2::after {
  bottom: 26px;
  left: -40px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-262deg);
}
.button__drow1,
.button__drow1::before,
.button__drow1::after,
.button__drow2,
.button__drow2::before,
.button__drow2::after {
  background: var(--back_color);
}
.button:hover .button__drow1 {
  animation: drow1 ease-in 0.06s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow1::before {
  animation: drow2 linear 0.08s 0.06s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow1::after {
  animation: drow3 linear 0.03s 0.14s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2 {
  animation: drow4 linear 0.06s 0.2s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2::before {
  animation: drow3 linear 0.03s 0.26s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2::after {
  animation: drow5 linear 0.06s 0.32s;
  animation-fill-mode: forwards;
}
@keyframes drow1 {
  0% {
    height: 0;
  }
  100% {
    height: 100px;
  }
}
@keyframes drow2 {
  0% {
    width: 0;
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  100% {
    width: 120px;
  }
}
@keyframes drow3 {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}
@keyframes drow4 {
  0% {
    height: 0;
  }
  100% {
    height: 120px;
  }
}
@keyframes drow5 {
  0% {
    width: 0;
  }
  100% {
    width: 124px;
  }
}


.button:not(:last-child) {
  margin-bottom: 64px;
}