/* BCOM SMS — public marketing landing (header → footer) */

.bc-home--landing {
  /* Logo gradient palette: #4dd2ff → #1e88e5 → #003366 */
  scroll-padding-top: var(--bm-nav-h);
  --bm-cyan: var(--bc-cyan, #4dd2ff);
  --bm-blue: var(--bc-blue, #1e88e5);
  --bm-blue-dark: var(--bc-blue-dark, #0d47a1);
  --bm-navy: var(--bc-navy, #003366);
  --bm-navy-deep: var(--bc-navy-deep, #002244);
  --bm-accent: var(--bc-blue, #1e88e5);
  --bm-accent-hover: #1565c0;
  --bm-gradient: var(--bc-gradient, linear-gradient(135deg, #4dd2ff 0%, #1e88e5 48%, #003366 100%));
  --bm-gradient-btn: var(--bc-gradient-btn, linear-gradient(90deg, #4dd2ff 0%, #29b6f6 30%, #1e88e5 65%, #1565c0 100%));
  --bm-gradient-hero: var(--bc-gradient-hero, linear-gradient(165deg, #002244 0%, #003366 35%, #0d47a1 70%, #1565c0 100%));
  --bm-dark: var(--bc-text, #0a2540);
  --bm-text: var(--bc-text, #0a2540);
  --bm-muted: var(--bc-text-muted, #5a7a94);
  --bm-border: var(--bc-border, #d4e8f7);
  --bm-surface: var(--bc-surface, #ffffff);
  --bm-soft: var(--bc-bg, #f4f9fd);
  --bm-soft-alt: var(--bc-bg-alt, #eef6fc);
  --bm-container: 1140px;
  --bm-nav-h: 64px;
  --bm-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--bm-font);
  color: var(--bm-text);
  background: var(--bm-surface);
}

.bc-home--landing .bc-container {
  width: min(100% - 2rem, var(--bm-container));
  margin-inline: auto;
}

/* Landing uses bm-nav (fixed) — keep scroll anchors below the header */
html:has(.bm-nav),
body.bc-site:has(.bm-nav) {
  scroll-padding-top: var(--bm-nav-h, 64px);
}

html.bc-landing-page,
body.bc-landing-page {
  overflow-anchor: none;
}

body.bc-site:has(.bm-nav) {
  --bm-nav-h: 64px;
}

/* ── Header ── */
.bm-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--bm-nav-h);
  min-height: var(--bm-nav-h);
  max-height: var(--bm-nav-h);
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  box-shadow: none;
  overflow: visible;
  /* Nav is outside .bc-home--landing — expose landing tokens here for buttons & mobile panel */
  --bm-nav-h: 64px;
  --bm-gradient-btn: var(--bc-gradient-btn, linear-gradient(90deg, #4dd2ff 0%, #29b6f6 30%, #1e88e5 65%, #1565c0 100%));
  --bm-border: var(--bc-border, #d4e8f7);
  --bm-muted: var(--bc-text-muted, #5a7a94);
  --bm-accent: var(--bc-blue, #1e88e5);
  --bm-blue: var(--bc-blue, #1e88e5);
  --bm-navy: var(--bc-navy, #003366);
  --bm-container: 1140px;
}

.bm-nav.is-scrolled {
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
}

.bm-nav__inner {
  width: min(100% - 2rem, var(--bm-container));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding: 0 0.25rem;
  overflow: visible;
}

.bm-nav__brand {
  flex-shrink: 0;
}

.bm-nav__panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
  min-width: 0;
  position: static;
  overflow: visible;
}

.bm-nav__toggle {
  flex-shrink: 0;
}

.bm-nav__menu {
  position: static;
  left: auto;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1.15rem;
  flex-wrap: nowrap;
  overflow: visible;
}

.bm-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--bm-dark);
  flex-shrink: 0;
}

.bm-nav__brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bm-gradient);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 14px rgba(30, 136, 229, 0.28);
}

.bm-nav .bc-logo__mark {
  animation: none;
  transform: none;
  width: 36px;
  height: 36px;
  border-width: 2px;
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.18);
}

.bm-nav .bc-logo__mark .bc-logo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.bm-nav .bc-logo__text strong {
  background: linear-gradient(135deg, #4dd2ff 0%, #29b6f6 38%, #1e88e5 72%, #42a5f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.bm-nav .bc-logo__text--name-only strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bm-nav__brand-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bm-nav__brand-text small {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--bm-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bm-nav__menu a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bm-text);
  text-decoration: none;
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.bm-nav__menu a:hover { color: var(--bm-accent); }

/* bCom Africa-style mega menus — hover on desktop, tap on mobile */
.bm-mega {
  position: static;
}

@media (min-width: 961px) {
  .bm-mega__trigger {
    cursor: default;
  }
}

.bm-mega__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bm-text);
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.bm-mega__trigger:hover,
.bm-mega__trigger:focus-visible,
.bm-mega.is-open .bm-mega__trigger {
  color: var(--bm-blue);
  background: rgba(30, 136, 229, 0.08);
  outline: none;
}

.bm-mega__chev {
  transition: transform 0.2s ease;
  opacity: 0.92;
  color: currentColor;
}

.bm-mega.is-open .bm-mega__chev {
  transform: rotate(180deg);
  opacity: 1;
}

.bm-mega__panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--bm-nav-h);
  z-index: 340;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
  border-bottom: 1px solid rgba(30, 136, 229, 0.16);
  box-shadow: 0 24px 48px rgba(10, 37, 64, 0.1);
  padding: 2rem 0 2.25rem;
  max-height: calc(100dvh - var(--bm-nav-h));
  overflow-y: auto;
  --bm-gradient-btn: var(--bc-gradient-btn, linear-gradient(90deg, #4dd2ff 0%, #29b6f6 30%, #1e88e5 65%, #1565c0 100%));
}

.bm-mega__panel--solutions {
  background: linear-gradient(180deg, #ffffff 0%, #f2f8f4 55%, #eef6fb 100%);
  border-bottom-color: rgba(5, 150, 105, 0.14);
}

.bm-mega__panel[hidden] {
  display: none !important;
}

.bm-mega__panel:not([hidden]) {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

.bm-mega__panel.is-portaled {
  z-index: 340;
  isolation: isolate;
}

.bm-mega__panel.is-portaled::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.bm-mega__inner {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  padding: 0 clamp(16px, 2vw, 28px);
}

.bm-mega__intro {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--bm-muted);
  max-width: 72ch;
}

.bm-mega__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 0.85rem 1rem;
}

@media (min-width: 1200px) {
  .bm-mega__product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bm-mega__product-grid--solutions {
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
}

@media (min-width: 1200px) {
  .bm-mega__product-grid--solutions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bm-mega__product-card {
  --bm-card-accent: #1e88e5;
  --bm-card-accent-soft: rgba(30, 136, 229, 0.1);
  --bm-card-accent-border: rgba(30, 136, 229, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 7.5rem;
  padding: 1rem 1.05rem 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--bm-card-accent-border);
  border-left: 4px solid var(--bm-card-accent);
  background: linear-gradient(135deg, #ffffff 0%, var(--bm-card-accent-soft) 100%);
  text-decoration: none;
  color: var(--bm-text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  overflow: hidden;
}

.bm-mega__product-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0 12px 0 100%;
  background: radial-gradient(circle at 100% 0%, var(--bm-card-accent-soft) 0%, transparent 68%);
  pointer-events: none;
}

.bm-mega__product-card:hover {
  border-color: var(--bm-card-accent);
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--bm-card-accent) 14%, #fff) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px color-mix(in srgb, var(--bm-card-accent) 18%, transparent);
}

.bm-mega__product-title {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--bm-navy);
  line-height: 1.25;
}

.bm-mega__product-summary {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bm-card-accent);
  line-height: 1.35;
}

.bm-mega__product-desc {
  position: relative;
  z-index: 1;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--bm-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* Products — distinct accent per offering */
.bm-mega__product-card--fullstack-web {
  --bm-card-accent: #1e88e5;
  --bm-card-accent-soft: rgba(30, 136, 229, 0.11);
  --bm-card-accent-border: rgba(30, 136, 229, 0.24);
}

.bm-mega__product-card--business-email {
  --bm-card-accent: #0d9488;
  --bm-card-accent-soft: rgba(13, 148, 136, 0.11);
  --bm-card-accent-border: rgba(13, 148, 136, 0.24);
}

.bm-mega__product-card--sms-gateway {
  --bm-card-accent: #0891b2;
  --bm-card-accent-soft: rgba(8, 145, 178, 0.13);
  --bm-card-accent-border: rgba(8, 145, 178, 0.28);
}

.bm-mega__product-card--api-integration {
  --bm-card-accent: #7c3aed;
  --bm-card-accent-soft: rgba(124, 58, 237, 0.11);
  --bm-card-accent-border: rgba(124, 58, 237, 0.24);
}

.bm-mega__product-card--mobile-apps {
  --bm-card-accent: #2563eb;
  --bm-card-accent-soft: rgba(37, 99, 235, 0.11);
  --bm-card-accent-border: rgba(37, 99, 235, 0.24);
}

.bm-mega__product-card--custom-management-systems {
  --bm-card-accent: #0369a1;
  --bm-card-accent-soft: rgba(3, 105, 161, 0.11);
  --bm-card-accent-border: rgba(3, 105, 161, 0.24);
}

/* Solutions — distinct accent per offering */
.bm-mega__product-card--commercial-wifi {
  --bm-card-accent: #0b6bff;
  --bm-card-accent-soft: rgba(11, 107, 255, 0.11);
  --bm-card-accent-border: rgba(11, 107, 255, 0.24);
}

.bm-mega__product-card--cyber-awareness {
  --bm-card-accent: #dc2626;
  --bm-card-accent-soft: rgba(220, 38, 38, 0.1);
  --bm-card-accent-border: rgba(220, 38, 38, 0.22);
}

.bm-mega__product-card--business-strategy {
  --bm-card-accent: #d97706;
  --bm-card-accent-soft: rgba(217, 119, 6, 0.11);
  --bm-card-accent-border: rgba(217, 119, 6, 0.24);
}

.bm-mega__product-card--ai-automation {
  --bm-card-accent: #9333ea;
  --bm-card-accent-soft: rgba(147, 51, 234, 0.11);
  --bm-card-accent-border: rgba(147, 51, 234, 0.24);
}

.bm-mega__product-card--cloud-infra {
  --bm-card-accent: #0284c7;
  --bm-card-accent-soft: rgba(2, 132, 199, 0.11);
  --bm-card-accent-border: rgba(2, 132, 199, 0.24);
}

.bm-mega__product-card--technical-consultation {
  --bm-card-accent: #059669;
  --bm-card-accent-soft: rgba(5, 150, 105, 0.11);
  --bm-card-accent-border: rgba(5, 150, 105, 0.24);
}

.bm-mega__products-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--bm-border);
}

.bm-mega__products-footer-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bm-blue);
  text-decoration: none;
}

.bm-mega__products-footer-link:hover {
  text-decoration: underline;
  color: var(--bm-blue-dark);
}

.bm-mega__footer-cta {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  background: var(--bm-gradient-btn);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(30, 136, 229, 0.24);
}

.bm-mega__footer-cta:hover {
  color: #fff !important;
  opacity: 0.95;
}

.bm-mega-backdrop {
  position: fixed;
  inset: var(--bm-nav-h) 0 0 0;
  z-index: 330;
  background: rgba(10, 37, 64, 0.18);
  pointer-events: auto;
}

.bm-mega-backdrop[hidden] {
  display: none !important;
}

body.bm-mega-open {
  overflow: hidden;
}

body.bm-mega-open .bm-nav {
  z-index: 350;
}

.bm-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.bm-nav__signin {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bm-text) !important;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  text-decoration: none;
  background: transparent;
  transition: color 0.15s ease, background 0.15s ease;
}

.bm-nav__signin:hover,
.bm-nav__signin:focus-visible {
  color: var(--bm-accent) !important;
  background: rgba(30, 136, 229, 0.08);
}

.bm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.bm-btn--primary {
  background: var(--bc-gradient-btn, linear-gradient(90deg, #4dd2ff 0%, #29b6f6 30%, #1e88e5 65%, #1565c0 100%));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  box-shadow: 0 4px 16px rgba(30, 136, 229, 0.28);
}

.bm-btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 48%);
  pointer-events: none;
  z-index: 0;
}

.bm-btn--primary:hover {
  background: linear-gradient(90deg, #5dd8ff 0%, #42bff8 30%, #2196f3 65%, #1976d2 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.35);
}

.bm-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.bm-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.bm-btn--light {
  background: #fff;
  color: var(--bm-navy);
  box-shadow: 0 4px 16px rgba(0, 20, 48, 0.18);
}

.bm-btn--light:hover {
  background: var(--bm-soft);
  color: var(--bm-blue-dark);
}

.bm-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.bm-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.bm-btn--block {
  width: 100%;
}

.bm-btn--dark {
  background: var(--bm-dark);
  color: #fff;
}

.bm-btn--lg { padding: 0.85rem 1.65rem; font-size: 0.95rem; }

.bm-nav__actions .bm-btn {
  padding: 0.45rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
}

.bm-nav__actions .bm-btn--primary {
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(30, 136, 229, 0.28);
}

.bm-nav__actions .bm-btn--primary:hover,
.bm-nav__actions .bm-btn--primary:focus-visible,
.bm-nav__actions .bm-btn--primary:active {
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.38);
  transform: translateY(-1px);
}

.bm-nav__toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(30, 136, 229, 0.42);
  border-radius: 10px;
  background: linear-gradient(135deg, #4dd2ff 0%, #29b6f6 35%, #1e88e5 72%, #1565c0 100%);
  box-shadow: 0 4px 14px rgba(30, 136, 229, 0.3);
  cursor: pointer;
  position: relative;
  z-index: 360;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  color: transparent;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.bm-nav__toggle:hover,
.bm-nav__toggle:focus-visible {
  box-shadow: 0 6px 18px rgba(30, 136, 229, 0.42);
  outline: none;
}

.bm-nav__toggle span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #ffffff !important;
  border-radius: 999px;
}

.bm-nav__toggle span:nth-child(1) { transform: translate(-50%, -6px); }
.bm-nav__toggle span:nth-child(2) { transform: translate(-50%, 0); }
.bm-nav__toggle span:nth-child(3) { transform: translate(-50%, 6px); }

.bc-main.bc-home--landing {
  padding-top: var(--bm-nav-h, 64px);
}

/* Hero starts flush below fixed nav (backdrop div sits between nav and main — do not use nav + main) */
.bc-main.bc-home--landing > .bm-hero:first-child {
  margin-top: 0;
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  min-height: calc(100svh - var(--bm-nav-h, 64px));
  min-height: calc(100dvh - var(--bm-nav-h, 64px));
  box-sizing: border-box;
  align-items: stretch;
  justify-content: flex-start;
}

.bc-main.bc-home--landing > .bm-hero:first-child > .bc-container {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: min(100% - clamp(2rem, 5vw, 4rem), var(--bm-container));
  max-width: var(--bm-container);
  margin-inline: auto;
  min-height: 0;
  padding-inline: clamp(1rem, 3vw, 2rem);
  padding-top: clamp(0.5rem, 2vh, 1.25rem);
  box-sizing: border-box;
}

.bc-main.bc-home--landing > .bm-hero:first-child .bm-hero__grid {
  padding-top: 0;
  padding-bottom: 0;
  padding-inline: clamp(0.25rem, 1.5vw, 0.75rem);
  width: 100%;
  align-items: center;
}

@media (min-width: 961px) {
  .bc-main.bc-home--landing > .bm-hero:first-child > .bc-container {
    align-items: center;
    padding-top: clamp(0.75rem, 2.5vh, 1.75rem);
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  }

  .bc-main.bc-home--landing > .bm-hero:first-child .bm-hero__copy {
    padding-left: clamp(0.5rem, 1.5vw, 1.25rem);
  }
}

/* ── Hero (split: copy + iPhone preview) ── */
.bm-hero--split {
  text-align: left;
}

.bm-hero--split .bm-hero__bg {
  background:
    radial-gradient(ellipse 55% 70% at 78% 45%, rgba(77, 210, 255, 0.22) 0%, transparent 58%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: auto, 28px 28px;
}

.bm-hero--split .bm-hero__copy {
  max-width: 36rem;
}

.bm-hero--split .bm-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
}

.bm-hero--split .bm-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.bm-hero--split .bm-hero__actions {
  justify-content: flex-start;
  gap: 0.75rem;
  max-width: none;
  margin-inline: 0;
}

.bm-hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bm-cyan);
}

.bm-hero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.bm-hero__perk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 20, 48, 0.18);
}

.bm-hero__perk-icon {
  flex-shrink: 0;
  color: var(--bm-cyan);
}

.bm-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(77, 210, 255, 0.2) 0%, transparent 55%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: auto, 28px 28px;
  pointer-events: none;
}

.bm-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--bm-gradient-hero);
  color: #fff;
  overflow-x: hidden;
  overflow-y: visible;
}

.bm-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.75fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

.bm-hero__copy {
  max-width: 34rem;
}

.bm-hero__title {
  margin: 0 0 1.1rem;
  font-size: clamp(2.1rem, 4.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.bm-hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 30rem;
}

.bm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.bm-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bm-hero__stats div {
  min-width: 4.5rem;
}

.bm-hero__stats dt {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.bm-hero__stats dd {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* iPhone preview */
.bm-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.25rem;
}

.bm-hero__phone {
  width: min(100%, 290px);
  padding: 0.55rem;
  border-radius: 2.4rem;
  background: linear-gradient(160deg, #2a2a2e 0%, #0f0f12 55%, #1c1c1f 100%);
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 80px rgba(0, 10, 30, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}

.bm-hero__phone-island {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 22px;
  border-radius: 999px;
  background: #000;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.bm-hero__phone-screen {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border-radius: 1.9rem;
  background: #f2f2f7;
  overflow: hidden;
  color: #1c1c1e;
}

.bm-hero__ios-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #1c1c1e;
}

.bm-hero__ios-signal {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
}

.bm-hero__ios-signal i {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: #1c1c1e;
}

.bm-hero__ios-signal i:nth-child(1) { height: 4px; }
.bm-hero__ios-signal i:nth-child(2) { height: 6px; }
.bm-hero__ios-signal i:nth-child(3) { height: 8px; }
.bm-hero__ios-signal i:nth-child(4) { height: 10px; }

.bm-hero__ios-header {
  padding: 0.35rem 0.85rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(60, 60, 67, 0.12);
  background: rgba(242, 242, 247, 0.92);
  backdrop-filter: blur(8px);
}

.bm-hero__ios-back {
  display: block;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bm-blue);
  margin-bottom: 0.45rem;
}

.bm-hero__ios-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.bm-hero__ios-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: var(--bm-gradient-btn);
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.28);
}

.bm-hero__ios-contact strong {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bm-hero__ios-thread {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem 0.75rem 1rem;
  background: #fff;
}

.bm-hero__ios-msg {
  align-self: flex-start;
  max-width: 92%;
  padding: 0.6rem 0.75rem;
  border-radius: 18px 18px 18px 6px;
  background: #e9e9eb;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #1c1c1e;
}

.bm-hero__ios-msg p {
  margin: 0;
}

.bm-hero__ios-msg time {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.62rem;
  color: rgba(60, 60, 67, 0.55);
}

.bm-hero__ios-msg::before {
  content: 'BCOM';
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(60, 60, 67, 0.65);
}

/* ── Omni tagline band ── */
.bm-omni-band {
  padding: 3.5rem 0;
  text-align: center;
  background: var(--bm-surface);
}

.bm-omni-band h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--bm-dark);
  max-width: 52rem;
  margin-inline: auto;
}

.bm-omni-band h2 span {
  display: block;
  font-weight: 800;
  background: var(--bm-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Stats ── */
.bm-stats {
  padding: 3rem 0 4rem;
  background: var(--bm-soft-alt);
  border-block: 1px solid var(--bm-border);
}

.bm-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.bm-stats__num {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  background: var(--bm-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}

.bm-stats__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bm-muted);
}

/* ── Explore cards ── */
.bm-explore {
  padding: 4.5rem 0;
}

.bm-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.bm-section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--bm-dark);
  letter-spacing: -0.02em;
}

.bm-section-head p {
  margin: 0;
  color: var(--bm-muted);
  line-height: 1.6;
}

.bm-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bm-card {
  background: var(--bm-surface);
  border: 1px solid var(--bm-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bm-card:hover {
  box-shadow: 0 16px 40px rgba(30, 136, 229, 0.1);
  transform: translateY(-3px);
  border-color: #b8ddf5;
}

.bm-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bm-dark);
}

.bm-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--bm-muted);
  flex: 1;
}

.bm-card__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bm-accent);
  text-decoration: none;
}

.bm-card__link:hover { text-decoration: underline; }

/* ── Platform blurb ── */
.bm-blurb {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bm-soft) 0%, var(--bm-soft-alt) 100%);
}

.bm-blurb__inner {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.bm-blurb h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bm-dark);
}

.bm-blurb p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bm-muted);
}

/* ── Spotlight (Moja / Engage / API style) ── */
.bm-spotlight {
  padding: 4.5rem 0;
}

.bm-spotlight--alt { background: var(--bm-soft-alt); }

.bm-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bm-spotlight__grid--reverse .bm-spotlight__visual { order: 2; }
.bm-spotlight__grid--reverse .bm-spotlight__copy { order: 1; }

.bm-spotlight__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--bm-dark);
  letter-spacing: -0.02em;
}

.bm-spotlight__copy > p {
  margin: 0 0 1.25rem;
  color: var(--bm-muted);
  line-height: 1.65;
}

.bm-checklist {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.bm-checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--bm-text);
}

.bm-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bm-accent);
  font-weight: 800;
}

.bm-spotlight__visual {
  border-radius: 16px;
  min-height: 280px;
  background: var(--bm-gradient-hero);
  border: 1px solid rgba(77, 210, 255, 0.15);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 24px 60px rgba(0, 51, 102, 0.22);
}

.bm-spotlight__visual--light {
  background: linear-gradient(145deg, #fff 0%, var(--bm-soft-alt) 100%);
  border-color: var(--bm-border);
  box-shadow: 0 16px 48px rgba(30, 136, 229, 0.08);
}

.bm-mock {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.bm-mock--light {
  background: #fff;
  border: 1px solid var(--bm-border);
}

.bm-mock__bar {
  height: 8px;
  width: 40%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.bm-mock--light .bm-mock__bar { background: #e5e7eb; }

.bm-mock__line {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  margin-bottom: 0.45rem;
}

.bm-mock--light .bm-mock__line { background: #f3f4f6; }

.bm-mock__line--short { width: 65%; }

/* ── Features (stats + map + cards) ── */
.bm-features {
  padding: 0 0 4.5rem;
  background: var(--bm-surface);
  color: var(--bm-text);
}

.bm-features__intro {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  background: var(--bm-soft-alt);
  border-bottom: 1px solid var(--bm-border);
}

.bm-features__eyebrow,
.bm-section-head__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bm-blue);
}

.bm-features__intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--bm-dark);
  letter-spacing: -0.02em;
}

.bm-features__intro p {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--bm-muted);
  line-height: 1.65;
}

.bm-features__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2.5rem;
  text-align: center;
}

.bm-features__stat-num {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  background: var(--bm-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}

.bm-features__stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bm-muted);
}

.bm-features__map-block {
  margin-bottom: 2.5rem;
}

.bm-features__cards {
  scroll-margin-top: calc(var(--bm-nav-h) + 1rem);
}

.bm-africa-map {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(145deg, #fff 0%, var(--bm-soft-alt) 100%);
  border: 1px solid var(--bm-border);
  border-radius: 16px;
}

.bm-africa-map__visual {
  position: relative;
  width: min(100%, 380px);
  margin-inline: auto;
  aspect-ratio: 1;
}

.bm-africa-map__globe {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(30, 136, 229, 0.14));
  pointer-events: none;
  user-select: none;
}

.bm-africa-map__pins {
  position: absolute;
  inset: 9%;
  pointer-events: none;
}

.bm-africa-map__pin {
  position: absolute;
  left: var(--pin-x, 50%);
  top: var(--pin-y, 50%);
  pointer-events: auto;
  width: 11px;
  height: 11px;
  margin: -5.5px 0 0 -5.5px;
  border-radius: 50%;
  background: var(--bm-blue);
  border: 2px solid #fff;
  box-shadow: 0 0 0 5px rgba(30, 136, 229, 0.2);
  animation: bm-map-pin-pulse 2.4s ease-out infinite;
  cursor: default;
  z-index: 2;
}

.bm-africa-map__pin--sm {
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.18);
}

.bm-africa-map__pin--md {
  width: 11px;
  height: 11px;
}

.bm-africa-map__pin:hover {
  transform: scale(1.25);
  z-index: 3;
}

.bm-africa-map__pin::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(30, 136, 229, 0.4);
  animation: bm-map-pin-ring 2.4s ease-out infinite;
}

.bm-africa-map__pin--sm::before {
  inset: -5px;
}

@keyframes bm-map-pin-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes bm-map-pin-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.bm-africa-map__countries {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
}

.bm-africa-map__countries li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bm-text);
}

.bm-africa-map__flag {
  display: block;
  width: 28px;
  height: 21px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(10, 37, 64, 0.12);
  flex-shrink: 0;
}

.bm-features__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.bm-feature-tile {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, #fff 0%, var(--bm-soft-alt) 100%);
  border: 1px solid var(--bm-border);
  border-radius: 16px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.bm-feature-tile:hover {
  box-shadow: 0 16px 40px rgba(30, 136, 229, 0.1);
  transform: translateY(-3px);
  border-color: rgba(30, 136, 229, 0.25);
}

.bm-feature-tile__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--bm-gradient-btn);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.22);
}

.bm-feature-tile__icon svg {
  width: 26px;
  height: 26px;
}

.bm-feature-tile__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--bm-dark);
  letter-spacing: -0.01em;
}

.bm-feature-tile__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--bm-muted);
}

/* Steps inside spotlight */
.bm-spotlight__visual .bc-steps--pro {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.bm-spotlight__visual .bc-step--pro {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: #fff;
}

.bm-spotlight__visual--light .bc-step--pro {
  background: #fff;
  border-color: var(--bm-border);
  color: var(--bm-text);
}

.bm-spotlight__visual .bc-step--pro h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.bm-spotlight__visual .bc-step--pro p {
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.8;
  line-height: 1.45;
}

.bm-spotlight__visual .bc-step__phase {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--bm-accent);
}

/* Mobile nav open */
body.bm-nav-open { overflow: hidden; }

body.bm-nav-open .bm-nav__toggle span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

body.bm-nav-open .bm-nav__toggle span:nth-child(2) { opacity: 0; }

body.bm-nav-open .bm-nav__toggle span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.bm-nav__toggle span {
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hide legacy bm-footer if ever duplicated */
.bm-footer + .bc-bcom-footer { display: none; }

/* ── API block ── */
.bm-api {
  padding: 4.5rem 0;
  background: var(--bm-soft-alt);
  border-top: 1px solid var(--bm-border);
}

.bm-api__bullets {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 40rem;
}

.bm-api__bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--bm-text);
}

.bm-api__bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bm-accent);
  font-weight: 800;
}

.bm-api__panel {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 28px rgba(30, 136, 229, 0.06);
}

.bm-api__base {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--bm-muted);
}

.bm-api__base code {
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  color: var(--bm-navy);
  background: var(--bm-soft);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.bm-api__action {
  margin: 1.75rem 0 0;
  text-align: center;
}

.bm-api__code {
  background: var(--bm-navy-deep);
  border: 1px solid rgba(77, 210, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.8rem;
}

.bm-api__panel .bm-api__code {
  margin-top: 0;
}

.bm-api__code pre {
  margin: 0;
  padding: 1rem 1.15rem;
  color: #e2e8f0;
  overflow-x: auto;
}

.bm-api__endpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.bm-api__endpoint {
  font-size: 0.8rem;
  font-family: ui-monospace, monospace;
  padding: 0.35rem 0.65rem;
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 6px;
}

/* ── FAQ ── */
.bm-faq {
  padding: 4.5rem 0;
}

.bm-faq .bc-faq-enterprise {
  padding: 0;
  background: transparent;
}

.bm-faq .bc-faq-enterprise__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--bm-dark);
}

/* ── CTA ── */
.bm-cta {
  padding: clamp(3.25rem, 6vw, 4.5rem) 0;
  background:
    radial-gradient(ellipse 80% 120% at 50% 0%, rgba(77, 210, 255, 0.28) 0%, transparent 55%),
    var(--bm-gradient-btn);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bm-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='28' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.65;
}

.bm-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.bm-cta__copy {
  max-width: 42rem;
}

.bm-cta h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.bm-cta__lead {
  margin: 0;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.bm-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

.bm-cta__btn {
  background: #fff;
  color: var(--bm-navy);
  box-shadow:
    0 4px 20px rgba(0, 36, 68, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  min-width: min(100%, 15.5rem);
}

.bm-cta__btn:hover {
  background: var(--bm-soft);
  color: var(--bm-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 36, 68, 0.22);
}

.bm-cta__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bm-cta__perk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 24, 56, 0.12);
}

.bm-cta__perk-icon {
  flex-shrink: 0;
  display: block;
  color: var(--bm-cyan);
  opacity: 0.95;
}

/* ── Footer ── */
.bm-footer {
  background: linear-gradient(180deg, var(--bm-navy) 0%, var(--bm-navy-deep) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 0;
}

.bm-footer .bc-logo__mark .bc-logo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.bm-footer .bc-logo__text strong { color: #fff; }
.bm-footer .bc-logo__text--name-only strong { color: #fff; }

.bm-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bm-footer__brand p {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 18rem;
}

.bm-footer__title {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.85rem;
}

.bm-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bm-footer__links li { margin-bottom: 0.45rem; }

.bm-footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.bm-footer__links a:hover { color: #fff; }

.bm-footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  background: #25d366;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
}

.bm-footer__bar {
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.bm-footer__bar a { color: rgba(255, 255, 255, 0.7); }

/* ── Reveal animation ── */
.bc-home--landing [data-bc-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.bc-home--landing [data-bc-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ── Mobile ── */
@media (max-width: 960px) {
  .bm-nav__inner {
    display: flex;
    align-items: center;
    width: min(100% - 1.25rem, var(--bm-container));
    padding-right: max(0.35rem, env(safe-area-inset-right, 0px));
  }

  .bm-nav__brand {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .bm-nav__brand .bc-logo__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bm-nav__toggle {
    display: flex;
    margin-left: 0.65rem;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }

  .bm-nav__toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff !important;
  }

  .bm-nav__toggle span:nth-child(1) { transform: translate(-50%, -6px); }
  .bm-nav__toggle span:nth-child(2) { transform: translate(-50%, 0); }
  .bm-nav__toggle span:nth-child(3) { transform: translate(-50%, 6px); }

  .bm-nav__panel {
    position: fixed;
    inset: var(--bm-nav-h) 0 0 0;
    grid-column: auto;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.25rem;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    z-index: 350;
  }

  body.bm-nav-open .bm-nav__panel { transform: translateX(0); }

  .bm-nav__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 1rem;
    margin-left: 0;
    padding: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--bm-border);
    gap: 0.5rem;
  }

  .bm-nav__signin {
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .bm-nav__menu {
    position: static;
    left: auto;
    transform: none;
    flex: none;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .bm-nav__menu a,
  .bm-mega__trigger {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--bm-border);
    width: 100%;
    justify-content: space-between;
    border-radius: 0;
    background: transparent;
  }

  .bm-mega__panel {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    border: none;
    padding: 0;
    background: var(--bm-soft);
    border-radius: 12px;
    margin: 0.35rem 0 0.75rem;
    z-index: auto;
  }

  .bm-mega__panel:not([hidden]) {
    display: block !important;
  }

  .bm-mega__inner {
    width: 100%;
    padding: 0.75rem;
  }

  .bm-mega__intro {
    font-size: 0.84rem;
    margin-bottom: 0.85rem;
  }

  .bm-mega__product-grid,
  .bm-mega__product-grid--solutions {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  @media (min-width: 480px) {
    .bm-mega__product-grid,
    .bm-mega__product-grid--solutions {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .bm-mega__product-card {
    min-height: 0;
    padding: 0.85rem;
  }

  .bm-mega__products-footer {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
  }

  .bm-mega__footer-cta {
    margin-left: 0;
    justify-content: center;
  }

  body.bm-mega-open {
    overflow: hidden;
  }

  .bm-mega-backdrop[hidden] {
    display: none !important;
  }

  .bm-nav__actions .bm-btn { width: 100%; }

  .bc-main.bc-home--landing > .bm-hero:first-child {
    margin-top: 0;
    padding-top: clamp(1rem, 3vw, 1.5rem);
    padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
    min-height: auto;
  }

  .bc-main.bc-home--landing > .bm-hero:first-child > .bc-container {
    align-items: flex-start;
    width: min(100% - clamp(1.5rem, 5vw, 2.5rem), var(--bm-container));
    padding-inline: clamp(1rem, 4vw, 1.5rem);
    padding-top: 0.35rem;
    padding-bottom: 0;
  }

  .bc-main.bc-home--landing > .bm-hero:first-child .bm-hero__grid {
    padding-top: 0;
    padding-inline: 0;
  }

  .bc-main.bc-home--landing > .bm-hero:first-child .bm-hero__copy {
    padding-left: 0;
  }

  .bm-hero--split .bm-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bm-hero--split .bm-hero__copy {
    max-width: none;
  }

  .bm-hero--split .bm-hero__lead {
    margin-inline: auto;
  }

  .bm-hero--split .bm-hero__actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin-inline: auto;
  }

  .bm-hero--split .bm-btn {
    width: 100%;
  }

  .bm-hero__perks {
    justify-content: center;
  }

  .bm-hero__visual {
    order: -1;
    padding-top: 0.5rem;
    margin-bottom: 0.25rem;
  }

  .bm-hero__phone {
    width: min(100%, 260px);
  }

  .bm-hero__phone-screen {
    min-height: 360px;
  }

  .bm-features__stats,
  .bm-features__cards,
  .bm-africa-map,
  .bm-footer__grid {
    grid-template-columns: 1fr;
  }

  .bm-feature-tile {
    flex-direction: column;
    align-items: flex-start;
  }

  .bm-africa-map__countries {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bc-home--landing [data-bc-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bm-africa-map__pin,
  .bm-africa-map__pin::before {
    animation: none;
  }

  .bm-mega__chev {
    transition: none;
  }

  .bm-nav .bc-logo__mark {
    animation: none;
    transform: none;
  }
}
