function Footer({ go }) {
  const { Logo } = window.B2B_4a97d9;
  const col = (h, items) => (
    <div>
      <h5 style={{ fontFamily: 'var(--tb-font-mono)', fontSize: '11px', letterSpacing: '0.1em', textTransform: 'uppercase', color: 'var(--tb-muted-d)', marginBottom: '16px' }}>{h}</h5>
      {items.map(([label, action], i) => (
        <a key={i} onClick={typeof action === 'function' ? action : undefined}
           href={typeof action === 'string' ? action : undefined}
           target={typeof action === 'string' ? '_blank' : undefined}
           style={{ display: 'block', color: '#c3c2bc', fontSize: '14px', padding: '5px 0', cursor: 'pointer' }}>{label}</a>
      ))}
    </div>
  );
  return (
    <footer style={{ background: 'var(--tb-ink)', color: 'var(--tb-paper)', borderTop: '3px solid var(--tb-signal)' }}>
      <div style={{ maxWidth: '1240px', margin: '0 auto', padding: '56px 32px 32px' }}>
        <div style={{ display: 'grid', gridTemplateColumns: '1.4fr 1fr 1fr 1fr', gap: '32px' }}>
          <div>
            <div style={{ marginBottom: '16px', cursor: 'pointer' }} onClick={() => go('home')}><Logo onDark height={28} /></div>
            <p style={{ color: '#9a9c96', fontSize: '14px', maxWidth: '34ch' }}>Промышленный маркетинг из интуитивного искусства — в системную практику. Бюро «Фактура».</p>
          </div>
          {col('Разделы', [['О нас', () => go('about')], ['Мероприятия', () => go('events')], ['Спикеры', () => go('speakers')], ['База знаний', () => go('knowledge')]])}
          {col('Участие', [['Форматы участия', () => go('formats')], ['Блог', () => go('blog')], ['Стать партнёром', () => go('partner')], ['Присоединиться', () => go('join')]])}
          {col('Связь', [['Telegram', 'https://t.me/b2b_terra'], ['ВКонтакте', 'https://vk.com/b2b_terra'], ['b2b-conf.ru', 'https://b2b-conf.ru'], ['knm@faktura.su', 'mailto:knm@faktura.su']])}
        </div>
        <div style={{ borderTop: '1px solid #33383b', marginTop: '40px', paddingTop: '24px', display: 'flex', justifyContent: 'space-between', flexWrap: 'wrap', gap: '12px', fontFamily: 'var(--tb-font-mono)', fontSize: '11px', color: 'var(--tb-muted-d)', letterSpacing: '0.04em' }}>
          <span>© 2026 ТЕРРИТОРИЯ B2B · БЮРО «ФАКТУРА»</span>
          <span>СООБЩЕСТВО ПРАКТИКОВ ПРОМЫШЛЕННОГО МАРКЕТИНГА</span>
        </div>
      </div>
    </footer>
  );
}
window.Footer = Footer;
