/* BMate public website — refined business design system */
:root {
  --bm-ink: #101828;
  --bm-ink-soft: #344054;
  --bm-muted: #667085;
  --bm-line: #e4e7ec;
  --bm-surface: #f7f8fc;
  --bm-white: #ffffff;
  --bm-navy: #101828;
  --bm-primary: #5b5ce2;
  --bm-primary-dark: #4143b8;
  --bm-primary-soft: #eeeeff;
  --bm-accent: #f97316;
  --bm-success: #079455;
  --bm-page-title-size: clamp(2.25rem, 3.8vw, 3.6rem);
  --bm-shadow-sm: 0 .125rem .75rem rgba(71,78,132,.08), 0 0 0 .0625rem rgba(71,78,132,.03);
  --bm-shadow-lg: 0 .5rem 6rem rgba(71,78,132,.12), 0 .225rem 1.35rem rgba(71,78,132,.08), 0 0 0 .0625rem rgba(71,78,132,.04);
}

html { scroll-padding-top: 96px; }

body {
  color: var(--bm-ink-soft);
  background: var(--bm-white);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

::selection { color: var(--bm-ink); background: rgba(91,92,226,.2); }
a, button, input, select, textarea, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(91,92,226,.24);
  outline-offset: 3px;
}

.bm-page {
  overflow: hidden;
  color: var(--bm-ink-soft);
  background: var(--bm-white);
}

/* Keep the primary page heading consistent across every public template. */
.bm-page h1 { font-size: var(--bm-page-title-size) !important; }

.bm-page *,
.bm-navbar *,
.bm-footer * { box-sizing: border-box; }

.bm-container {
  width: calc(100% - 64px);
  max-width: 1450px;
  margin-right: auto;
  margin-left: auto;
}

.bm-section { padding: 60px 0; }
.bm-section-soft { background: var(--bm-surface); }

.bm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--bm-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bm-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bm-accent);
  content: "";
}

.bm-section-heading {
  margin-bottom: 52px;
}

.bm-section-heading.bm-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.bm-section-heading h2,
.bm-global-copy h2,
.bm-price-heading h1 {
  margin: 0 0 18px;
  color: var(--bm-ink);
  font-size: var(--bm-page-title-size);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.bm-section-heading p,
.bm-global-copy > p,
.bm-price-heading > p {
  margin: 0;
  color: var(--bm-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Navigation */
.bm-navbar.navbar {
  top: 14px;
  right: 0;
  left: 0;
  padding: 0 22px;
  background: transparent;
  transition: 180ms ease;
}

.bm-navbar .bm-nav-shell {
  max-width: 1450px;
  min-height: 72px;
  margin: 0 auto;
  padding: 8px 10px 8px 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.bm-brand { margin-right: 18px; }
.bm-brand-logo { width: auto; height: 60px; object-fit: contain; }

.bm-nav-links { align-items: center; gap: 3px; }
.bm-navbar .navbar-collapse { visibility: visible; }

.bm-navbar .bm-nav-links .nav-link {
  margin-right: 0;
  padding: 12px 14px !important;
  color: #475467 !important;
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: 9px;
}

.bm-navbar .bm-nav-links .nav-link:hover,
.bm-navbar .bm-nav-links .nav-link.active,
.bm-navbar .bm-nav-links .show > .nav-link {
  color: var(--bm-ink) !important;
  background: #f2f4f7;
}

.bm-nav-split { position: relative; }
.bm-navbar .bm-nav-links .bm-feature-link { padding-right: 8px !important; }
.bm-navbar .bm-nav-links .bm-feature-toggle {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 28px;
  height: 34px;
  margin: 0;
  padding: 0 !important;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
}
.bm-navbar .bm-nav-links .bm-feature-toggle:hover,
.bm-navbar .bm-nav-links .bm-feature-toggle:focus { background: transparent; box-shadow: none; }

.bm-login-link {
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.bm-login-link:hover { color: var(--bm-primary); }

.bm-btn-primary,
.bm-btn-secondary {
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px !important;
  border-radius: 10px !important;
  font-size: 0.93rem;
  font-weight: 700 !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.01em;
  text-shadow: none !important;
  filter: none !important;
  -webkit-font-smoothing: auto;
  text-decoration: none;
}

.btn.bm-btn-primary {
  border: 1px solid var(--bm-primary) !important;
  color: #fff !important;
  background: var(--bm-primary) !important;
  box-shadow: none !important;
}

.btn.bm-btn-primary:hover {
  border-color: var(--bm-primary-dark) !important;
  background: var(--bm-primary-dark) !important;
  transform: translateY(-1px);
}

.btn.bm-btn-secondary {
  border: 1px solid #d0d5dd !important;
  color: var(--bm-ink) !important;
  background: #fff !important;
  box-shadow: none !important;
}

.btn.bm-btn-secondary:hover {
  border-color: #98a2b3 !important;
  background: #f9fafb !important;
  transform: translateY(-1px);
}

.bm-nav-cta { min-height: 44px; padding: 0 18px !important; }

.bm-navbar .dropdown-menu {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--bm-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--bm-shadow-lg);
}

@media (min-width: 1200px) {
  .bm-navbar.navbar .nav-item .dropdown-menu {
    top: calc(100% + 2px);
    display: block;
    visibility: hidden;
    border: 1px solid var(--bm-line);
    border-radius: 14px;
    opacity: 0;
    transform: translateY(8px);
    transform-origin: top center;
    transition: 150ms ease;
  }

  .bm-navbar.navbar .nav-item:hover .dropdown-menu,
  .bm-navbar.navbar .nav-item .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.bm-mega-menu { width: 330px; }
.bm-industry-menu { min-width: 210px; }

.bm-menu-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px !important;
  border-radius: 9px;
}

.bm-menu-item i {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--bm-primary);
  background: var(--bm-primary-soft);
}

.bm-menu-item span { display: flex; flex-direction: column; }
.bm-menu-item strong { color: var(--bm-ink); font-size: 0.88rem; }
.bm-menu-item small { margin-top: 2px; color: var(--bm-muted); font-size: 0.73rem; }
.bm-menu-item-all { margin-bottom: 5px; border-bottom: 1px solid var(--bm-line); }
.bm-navbar .dropdown-item:hover { color: var(--bm-ink); background: #f5f6fa; }

.bm-nav-toggle { width: 44px; height: 42px; padding: 9px; border: 0; box-shadow: none !important; }
.bm-nav-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--bm-ink); }
.bm-mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 0 4px; }
.bm-industry-shell { padding-top: 112px; }

/* Owner-led features page */
.bm-feature-hero { padding: 164px 0 76px; background: linear-gradient(135deg,#f7f7ff 0%,#fff 58%,#f5f6ff 100%); }
.bm-feature-hero .bm-container { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.bm-feature-hero-copy h1 { max-width: 650px; margin: 16px 0 20px; color: var(--bm-ink); font-size: var(--bm-page-title-size); line-height: 1.04; letter-spacing: -.05em; }
.bm-feature-hero-copy > p { max-width: 650px; margin: 0; color: var(--bm-muted); font-size: 1.04rem; line-height: 1.75; }
.bm-work-map { padding: 28px; border: 1px solid #dfe1fb; border-radius: 22px; background: #fff; box-shadow: var(--bm-shadow-lg); }
.bm-work-map-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--bm-line); }
.bm-work-map-head span { color: var(--bm-primary); font-size: .73rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.bm-work-map-head strong { color: var(--bm-ink); font-size: .8rem; }
.bm-work-map-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.bm-work-map-grid article { display: flex; gap: 11px; align-items: center; min-width: 0; padding: 16px; border-radius: 12px; background: #f7f8fc; }
.bm-work-map-grid i { display: inline-flex; width: 34px; height: 34px; flex: 0 0 34px; align-items: center; justify-content: center; border-radius: 9px; color: var(--bm-primary); background: var(--bm-primary-soft); }
.bm-work-map-grid span { display: flex; min-width: 0; flex-direction: column; }
.bm-work-map-grid strong { color: var(--bm-ink); font-size: .8rem; }
.bm-work-map-grid small { color: var(--bm-muted); font-size: .68rem; }
.bm-work-map > p { margin: 20px 0 0; padding: 14px 16px; border-radius: 10px; color: #475467; background: #ecfdf3; font-size: .78rem; line-height: 1.55; }
.bm-work-map > p i { margin-right: 7px; color: var(--bm-success); }
.bm-feature-jump { position: sticky; z-index: 20; top: 98px; border-top: 1px solid var(--bm-line); border-bottom: 1px solid var(--bm-line); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
.bm-feature-jump .bm-container { display: flex; gap: 4px; overflow-x: auto; padding-top: 9px; padding-bottom: 9px; scrollbar-width: none; }
.bm-feature-jump .bm-container::-webkit-scrollbar { display: none; }
.bm-feature-jump a { flex: 0 0 auto; padding: 9px 13px; border-radius: 8px; color: #475467; font-size: .76rem; font-weight: 700; text-decoration: none; }
.bm-feature-jump a:hover { color: var(--bm-primary); background: var(--bm-primary-soft); }
.bm-owner-feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.bm-owner-feature { scroll-margin-top: 165px; padding: 30px; border: 1px solid var(--bm-line); border-radius: 17px; background: #fff; box-shadow: var(--bm-shadow-sm); }
.bm-owner-feature-top { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; margin-bottom: 22px; }
.bm-plan-tag { display: inline-flex; width: fit-content; padding: 6px 9px; border-radius: 999px; color: #067647; background: #ecfdf3; font-size: .64rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.bm-owner-question { display: block; margin-bottom: 7px; color: var(--bm-primary); font-size: .72rem; font-weight: 800; }
.bm-owner-feature h3 { margin: 0 0 11px; color: var(--bm-ink); font-size: 1.3rem; }
.bm-owner-feature > p { margin: 0 0 20px; color: var(--bm-muted); font-size: .84rem; line-height: 1.65; }
.bm-owner-feature ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 0; padding: 18px 0 0; border-top: 1px solid var(--bm-line); list-style: none; }
.bm-owner-feature li { display: flex; gap: 8px; color: #475467; font-size: .76rem; line-height: 1.45; }
.bm-owner-feature li i { margin-top: 3px; color: var(--bm-success); }
.bm-flow-line { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.bm-flow-line article { position: relative; padding: 26px 20px 22px; border: 1px solid var(--bm-line); border-radius: 15px; background: #fff; }
.bm-flow-line article::after { position: absolute; top: 45px; right: -14px; z-index: 2; width: 14px; border-top: 2px dashed #d2d5f4; content: ""; }
.bm-flow-line article:last-child::after { display: none; }
.bm-flow-line article > span { position: absolute; top: 13px; right: 13px; color: #98a2b3; font-size: .65rem; font-weight: 800; }
.bm-flow-line i { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 18px; border-radius: 11px; color: var(--bm-primary); background: var(--bm-primary-soft); }
.bm-flow-line h3 { margin: 0 0 8px; color: var(--bm-ink); font-size: .9rem; }
.bm-flow-line p { margin: 0; color: var(--bm-muted); font-size: .74rem; line-height: 1.55; }
.bm-compliance-section { scroll-margin-top: 150px; background: linear-gradient(135deg,#f0fdf4,#fff 62%); }
.bm-feature-detail-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: center; }
.bm-feature-detail-grid > div > h2 { margin: 14px 0 18px; color: var(--bm-ink); font-size: clamp(2.1rem,4vw,3.25rem); line-height: 1.12; letter-spacing: -.04em; }
.bm-feature-detail-grid > div > p { color: var(--bm-muted); line-height: 1.75; }
.bm-feature-detail-reverse { grid-template-columns: 1.05fr .95fr; }
.bm-detail-callout { display: flex; gap: 11px; margin-top: 24px; padding: 16px; border: 1px solid #abefc6; border-radius: 11px; color: #05603a; background: #ecfdf3; font-size: .77rem; line-height: 1.55; }
.bm-detail-callout i { margin-top: 3px; }
.bm-detail-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.bm-detail-list article { display: flex; gap: 13px; padding: 22px; border: 1px solid #dceee2; border-radius: 14px; background: #fff; }
.bm-detail-list article > i { display: inline-flex; width: 38px; height: 38px; flex: 0 0 38px; align-items: center; justify-content: center; border-radius: 10px; color: #067647; background: #ecfdf3; }
.bm-detail-list h3 { margin: 0 0 7px; color: var(--bm-ink); font-size: .9rem; }
.bm-detail-list p { margin: 0; color: var(--bm-muted); font-size: .74rem; line-height: 1.58; }
.bm-auditor-card { padding: 28px; border: 1px solid #dfe1fb; border-radius: 20px; background: #fff; box-shadow: var(--bm-shadow-lg); }
.bm-auditor-card-head { display: flex; gap: 13px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--bm-line); }
.bm-auditor-card-head > i { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 12px; color: var(--bm-primary); background: var(--bm-primary-soft); }
.bm-auditor-card-head span { display: flex; flex-direction: column; }
.bm-auditor-card-head strong { color: var(--bm-ink); }
.bm-auditor-card-head small { color: var(--bm-muted); }
.bm-auditor-card ul { display: grid; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.bm-auditor-card li { display: flex; gap: 12px; align-items: center; padding: 13px 14px; border-radius: 10px; color: #475467; background: #f7f8fc; font-size: .8rem; }
.bm-auditor-card li i { width: 18px; color: var(--bm-primary); text-align: center; }
.bm-growth-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.bm-growth-grid article { position: relative; padding: 26px; border: 1px solid var(--bm-line); border-radius: 15px; background: #fff; }
.bm-growth-grid .bm-plan-tag { position: absolute; top: 26px; right: 26px; }
.bm-growth-grid h3 { margin: 20px 0 8px; color: var(--bm-ink); font-size: 1rem; }
.bm-growth-grid p { margin: 0; color: var(--bm-muted); font-size: .78rem; line-height: 1.6; }
.bm-advanced-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.bm-advanced-grid article { display: flex; gap: 15px; padding: 23px; border: 1px solid var(--bm-line); border-radius: 14px; background: #fff; }
.bm-advanced-grid article > i { display: inline-flex; width: 40px; height: 40px; flex: 0 0 40px; align-items: center; justify-content: center; border-radius: 10px; color: var(--bm-primary); background: var(--bm-primary-soft); }
.bm-advanced-grid h3 { margin: 0 0 6px; color: var(--bm-ink); font-size: .92rem; }
.bm-advanced-grid p { margin: 0 0 10px; color: var(--bm-muted); font-size: .74rem; line-height: 1.55; }
.bm-advanced-grid span { color: var(--bm-primary); font-size: .63rem; font-weight: 800; text-transform: uppercase; }
.bm-plan-guide-section { background: #fff; }
.bm-plan-guide-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.bm-plan-guide-grid article { padding: 25px; border: 1px solid var(--bm-line); border-radius: 15px; background: #fff; }
.bm-plan-guide-grid article.featured { border-color: var(--bm-primary); background: #f7f7ff; }
.bm-plan-guide-grid span { color: var(--bm-primary); font-size: .7rem; font-weight: 800; }
.bm-plan-guide-grid h3 { margin: 12px 0 8px; color: var(--bm-ink); font-size: 1rem; }
.bm-plan-guide-grid p { margin: 0; color: var(--bm-muted); font-size: .76rem; line-height: 1.6; }

/* Hero */
.bm-hero {
  position: relative;
  padding: 172px 0 92px;
  background:
    radial-gradient(circle at 82% 14%, rgba(91,92,226,.18), transparent 27%),
    linear-gradient(180deg, #f8f8ff 0%, #ffffff 90%);
}

.bm-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image: linear-gradient(#eef0ff 1px, transparent 1px), linear-gradient(90deg, #eef0ff 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  content: "";
}

.bm-hero .container { position: relative; z-index: 1; }

.bm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(620px, 1.18fr);
  gap: 96px;
  align-items: center;
}

.bm-hero-grid > *,
.bm-feature-hero .bm-container > * { min-width: 0; }

.bm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid #dfe1fb;
  border-radius: 999px;
  color: var(--bm-primary-dark);
  background: rgba(255, 255, 255, 0.82);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1;
  -webkit-font-smoothing: auto;
}

.bm-hero-badge i { color: var(--bm-accent); }

.bm-hero h1 {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--bm-ink);
  font-size: var(--bm-page-title-size);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.bm-hero h1 span { color: var(--bm-primary); }

.bm-hero-copy {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--bm-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.bm-hero-capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  gap: 0;
  margin: -3px 0 28px;
  padding: 13px 0;
  border-top: 1px solid #e0e3ea;
  border-bottom: 1px solid #e0e3ea;
}

.bm-hero-capability {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 8px;
  align-items: flex-start;
  padding: 2px 15px;
  border-right: 1px solid #e0e3ea;
  color: #344054;
  text-shadow: none;
  box-shadow: none;
}

.bm-hero-capability:first-child { padding-left: 0; }
.bm-hero-capability:last-child { padding-right: 0; border-right: 0; }

.bm-hero-capability i {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--bm-primary);
  background: var(--bm-primary-soft);
  font-size: 0.86rem;
  text-shadow: none;
}

.bm-hero-capability > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.bm-hero-capability-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bm-hero-capability-row i {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--bm-primary);
  background: var(--bm-primary-soft);
  font-size: 0.75rem;
}

.bm-hero-capability strong {
  color: #101828;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: none;
}

.bm-hero-capability small {
  margin-top: 2px;
  color: #667085;
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: none;
}

.bm-hero-capability-ai i { color: var(--bm-accent); }

.bm-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.bm-hero-actions .btn { min-height: 52px; padding-right: 25px !important; padding-left: 25px !important; }

.bm-hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--bm-muted);
  font-size: 0.85rem;
  list-style: none;
}

.bm-hero-note i { margin-right: 6px; color: var(--bm-success); }

.bm-product-window {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--bm-shadow-lg);
  transform: none;
}

.bm-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--bm-line);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: #fff;
}

.bm-window-bar span { width: 8px; height: 8px; border-radius: 50%; background: #d0d5dd; }
.bm-window-bar span:first-child { background: #f97066; }
.bm-window-bar span:nth-child(2) { background: #fdb022; }
.bm-window-bar span:nth-child(3) { background: #32d583; }
.bm-window-bar p { margin: 0 0 0 auto; color: #98a2b3; font-size: 0.67rem; }

.bm-product-window img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--bm-line);
  border-radius: 0 0 12px 12px;
  object-fit: cover;
  object-position: top left;
}
.bm-home-workflow { transform: rotate(.4deg); }
.bm-home-workflow-body { padding: 28px; border: 1px solid var(--bm-line); border-radius: 0 0 12px 12px; background: linear-gradient(180deg,#fafaff,#fff); }
.bm-home-workflow-bill { display: flex; flex-direction: column; gap: 6px; padding: 22px; border: 1px solid #dfe1fb; border-radius: 14px; background: #f7f7ff; }
.bm-home-workflow-bill > span { color: var(--bm-primary); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.bm-home-workflow-bill > span i { margin-right: 7px; }
.bm-home-workflow-bill strong { color: var(--bm-ink); font-size: 1.15rem; }
.bm-home-workflow-bill small { color: var(--bm-muted); }
.bm-home-workflow-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px; margin-top: 14px; }
.bm-home-workflow-links article { display: flex; gap: 10px; align-items: center; min-width: 0; padding: 14px; border: 1px solid var(--bm-line); border-radius: 11px; background: #fff; }
.bm-home-workflow-links article > i { display: inline-flex; width: 34px; height: 34px; flex: 0 0 34px; align-items: center; justify-content: center; border-radius: 9px; color: var(--bm-primary); background: var(--bm-primary-soft); }
.bm-home-workflow-links article > span { display: flex; min-width: 0; flex: 1; flex-direction: column; }
.bm-home-workflow-links strong { color: var(--bm-ink); font-size: .75rem; }
.bm-home-workflow-links small { overflow: hidden; color: var(--bm-muted); font-size: .62rem; text-overflow: ellipsis; white-space: nowrap; }
.bm-home-workflow-links b { color: #067647; font-size: .58rem; text-transform: uppercase; }
.bm-home-workflow-body > p { margin: 17px 0 0; padding: 13px 15px; border-radius: 10px; color: #05603a; background: #ecfdf3; font-size: .72rem; line-height: 1.55; }
.bm-home-workflow-body > p i { margin-right: 7px; }
.bm-home-product-shot { overflow: visible; }
.bm-home-product-shot > img { background: #fff; }
.bm-product-shot-note {
  position: absolute;
  right: 28px;
  bottom: -27px;
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 250px;
  padding: 14px 17px;
  border: 1px solid var(--bm-line);
  border-radius: 13px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--bm-shadow-sm);
  backdrop-filter: blur(12px);
}
.bm-product-shot-note > i { display: inline-flex; width: 36px; height: 36px; flex: 0 0 36px; align-items: center; justify-content: center; border-radius: 10px; color: var(--bm-primary); background: var(--bm-primary-soft); }
.bm-product-shot-note span { display: flex; flex-direction: column; }
.bm-product-shot-note strong { color: var(--bm-ink); font-size: .78rem; }
.bm-product-shot-note small { margin-top: 2px; color: var(--bm-muted); font-size: .66rem; }

/* Trust ribbon */
.bm-trust-ribbon { border-top: 1px solid var(--bm-line); border-bottom: 1px solid var(--bm-line); background: #fff; }
.bm-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.bm-trust-item { display: flex; gap: 13px; align-items: center; padding: 25px 20px; border-right: 1px solid var(--bm-line); }
.bm-trust-item:last-child { border-right: 0; }
.bm-trust-item i { color: var(--bm-primary); font-size: 1.15rem; }
.bm-trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: #101828;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1;
  -webkit-font-smoothing: auto;
}
.bm-trust-item span {
  display: block;
  color: #667085;
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.45;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1;
  -webkit-font-smoothing: auto;
}
.bm-stat-item {
  display: flex;
  min-height: 102px;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: center;
  padding: 23px 20px;
  text-align: center;
}
.bm-stat-item .bm-stat-value {
  margin: 0;
  color: var(--bm-primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.bm-stat-item .bm-stat-label {
  color: #475467;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Cards */
.bm-capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.bm-capability-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--bm-line);
  border-radius: 16px;
  background: #fff;
  transition: 180ms ease;
}

.bm-capability-card:hover { border-color: #bfc3f4; box-shadow: var(--bm-shadow-sm); transform: translateY(-4px); }

.bm-icon-box {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 11px;
  color: var(--bm-primary);
  background: var(--bm-primary-soft);
  font-size: 1.08rem;
}

.bm-capability-card h3 { margin: 0 0 12px; color: var(--bm-ink); font-size: 1.12rem; }
.bm-capability-card p { margin: 0 0 20px; color: var(--bm-muted); font-size: 0.91rem; line-height: 1.65; }
.bm-text-link { color: var(--bm-primary); font-size: 0.86rem; font-weight: 700; text-decoration: none; }
.bm-text-link:hover { color: var(--bm-primary-dark); }
.bm-text-link i { margin-left: 5px; font-size: 0.72rem; }

.bm-product-tour { margin-top: 54px; }
.bm-product-tour article { overflow: hidden; border: 1px solid var(--bm-line); border-radius: 18px; background: #fff; box-shadow: var(--bm-shadow-sm); }
.bm-product-tour-copy { padding: 30px; }
.bm-product-tour-copy > span,.bm-control-proof article > div > span { display: block; margin-bottom: 11px; color: var(--bm-primary); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.bm-product-tour-copy h3,.bm-control-proof h3 { margin: 0 0 11px; color: var(--bm-ink); font-size: clamp(1.2rem,2vw,1.65rem); line-height: 1.25; letter-spacing: -.025em; }
.bm-product-tour-copy p { margin: 0; color: var(--bm-muted); font-size: .88rem; line-height: 1.65; }
.bm-product-tour-media { overflow: hidden; background: var(--bm-surface); }
.bm-product-tour-media img { display: block; width: 100%; height: auto; transition: transform .35s ease; }
.bm-product-tour article:hover .bm-product-tour-media img { transform: scale(1.012); }
.bm-showcase-list { display: grid; gap: 88px; margin-top: 56px; }
.bm-showcase-row {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(280px,.82fr) minmax(0,1.18fr);
  gap: 70px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}
.bm-product-tour .bm-showcase-row { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.bm-showcase-row-reverse { grid-template-columns: minmax(0,1.18fr) minmax(280px,.82fr); }
.bm-showcase-row-reverse .bm-showcase-copy { grid-column: 2; grid-row: 1; }
.bm-showcase-row-reverse .bm-showcase-window { grid-column: 1; grid-row: 1; }
.bm-showcase-copy { padding: 0 8px; }
.bm-showcase-copy > span { display: block; margin-bottom: 11px; color: var(--bm-primary); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.bm-showcase-copy h3 { margin: 0 0 13px; color: var(--bm-ink); font-size: clamp(1.45rem,2.5vw,2.2rem); line-height: 1.18; letter-spacing: -.035em; }
.bm-showcase-copy p { margin: 0; color: var(--bm-muted); font-size: .92rem; line-height: 1.72; }
.bm-showcase-points { display: grid; gap: 11px; margin: 24px 0 0; padding: 0; list-style: none; }
.bm-showcase-points li { display: flex; align-items: flex-start; gap: 10px; color: var(--bm-ink-soft); font-size: .82rem; font-weight: 650; line-height: 1.45; }
.bm-showcase-points i { display: inline-flex; width: 19px; height: 19px; flex: 0 0 19px; align-items: center; justify-content: center; margin-top: 1px; border-radius: 50%; color: #fff; background: var(--bm-primary); font-size: .55rem; }
.bm-showcase-window { width: 92%; max-width: 820px; justify-self: end; padding: 10px; overflow: hidden; border: 1px solid #dedff1; border-radius: 18px; background: #fff; box-shadow: var(--bm-shadow-lg); }
.bm-showcase-row-reverse .bm-showcase-window { justify-self: start; }
.bm-showcase-window img { display: block; width: 100%; height: auto; border: 0; border-radius: 10px; background: #fff; transition: transform .35s ease; }
.bm-showcase-row:hover .bm-showcase-window img { transform: scale(1.006); }

/* Product proof */
.bm-proof-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 70px; align-items: center; }
.bm-proof-list { display: grid; gap: 8px; margin-top: 30px; }
.bm-proof-item {
  display: flex;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid #d9dde5;
  border-left: 3px solid var(--bm-primary);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}
.bm-proof-item:first-child { background: #fff; box-shadow: none; }
.bm-proof-item i { margin-top: 3px; color: var(--bm-primary); text-shadow: none; }
.bm-proof-item strong {
  display: block;
  margin-bottom: 4px;
  color: #101828;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-shadow: none !important;
  filter: none !important;
  -webkit-font-smoothing: auto;
}
.bm-proof-item span {
  display: block;
  color: #475467;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1;
  -webkit-font-smoothing: auto;
}
.bm-proof-window { padding: 10px; border: 1px solid #dedff1; border-radius: 18px; background: #fff; box-shadow: var(--bm-shadow-lg); }
.bm-proof-window img { display: block; width: 100%; aspect-ratio: 16/9; border-radius: 10px; object-fit: cover; object-position: top left; }
.bm-feature-screen { max-width: 1080px; margin: 42px auto 0; }

/* Connected apps */
.bm-platform-section { overflow: hidden; background: linear-gradient(145deg,#f8f9ff 0%,#fff 58%,#f2f4ff 100%); }
.bm-platform-grid { display: grid; grid-template-columns: minmax(300px,.9fr) minmax(480px,1.1fr); gap: 84px; align-items: center; }
.bm-platform-copy h2 { max-width: 660px; margin: 0 0 18px; color: var(--bm-ink); font-size: clamp(2rem,4vw,3.25rem); line-height: 1.12; letter-spacing: -.04em; }
.bm-platform-copy > p { max-width: 690px; margin: 0; color: var(--bm-muted); line-height: 1.75; }
.bm-platform-disclaimer { display: flex; gap: 9px; align-items: flex-start; margin-top: 22px !important; color: #667085 !important; font-size: .74rem; line-height: 1.55 !important; }
.bm-platform-disclaimer i { margin-top: 3px; color: var(--bm-primary); }
.bm-platform-stage { position: relative; padding: 38px; border: 1px solid #dfe2f3; border-radius: 28px; background: linear-gradient(145deg,#fff 0%,#f5f6ff 58%,#eef0ff 100%); box-shadow: 0 28px 70px rgba(64,68,145,.12); }
.bm-platform-stage::before { position: absolute; top: -80px; right: -70px; width: 260px; height: 260px; border: 1px solid rgba(91,92,226,.08); border-radius: 50%; box-shadow: 0 0 0 42px rgba(91,92,226,.025),0 0 0 84px rgba(91,92,226,.015); content: ""; }
.bm-sync-graphic { position: relative; z-index: 1; min-height: 330px; margin-bottom: 24px; overflow: hidden; border: 1px solid #dfe2f3; border-radius: 20px; background: radial-gradient(circle at 50% 25%,rgba(91,92,226,.16),transparent 34%),linear-gradient(180deg,#fbfbff,#f1f3ff); }
.bm-sync-cloud { position: absolute; z-index: 3; top: 26px; left: 50%; display: flex; width: 190px; min-height: 104px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #d7daf5; border-radius: 20px; background: rgba(255,255,255,.92); box-shadow: 0 18px 38px rgba(64,68,145,.13); text-align: center; transform: translateX(-50%); backdrop-filter: blur(12px); }
.bm-sync-cloud > span { color: var(--bm-primary); font-size: 1.8rem; line-height: 1; }
.bm-sync-cloud strong { margin-top: 8px; color: var(--bm-ink); font-size: .85rem; }
.bm-sync-cloud small { margin-top: 3px; color: var(--bm-muted); font-size: .62rem; }
.bm-sync-line { position: absolute; z-index: 1; top: 127px; height: 86px; border-left: 1px dashed rgba(91,92,226,.45); color: var(--bm-primary); }
.bm-sync-line i { position: absolute; bottom: 28px; left: -8px; font-size: .62rem; transform: rotate(90deg); }
.bm-sync-line-desktop { left: 20%; transform: rotate(28deg); transform-origin: top; }
.bm-sync-line-web { left: 50%; }
.bm-sync-line-mobile { right: 20%; transform: rotate(-28deg); transform-origin: top; }
.bm-device { position: absolute; z-index: 2; bottom: 31px; border: 1px solid #cfd3ef; background: #e8eaff; box-shadow: 0 16px 30px rgba(64,68,145,.16); }
.bm-device-screen { position: relative; display: flex; overflow: hidden; flex-direction: column; gap: 7px; padding: 10px; border-radius: 5px; background: #fff; }
.bm-device-bar { display: block; width: 55%; height: 5px; border-radius: 99px; background: var(--bm-primary); }
.bm-device-chart { display: block; width: 100%; height: 34px; border-radius: 4px; background: linear-gradient(135deg,#eff0ff 44%,#c9ccff 45% 53%,#eff0ff 54%); }
.bm-device-row { display: block; width: 88%; height: 4px; border-radius: 99px; background: #d9ddeb; }
.bm-device-row.is-short { width: 63%; }
.bm-device-desktop { left: 7%; width: 142px; height: 101px; padding: 7px; border-radius: 8px; }
.bm-device-desktop .bm-device-screen { height: 87px; }
.bm-desktop-stand { position: absolute; bottom: -16px; left: 50%; width: 45px; height: 16px; border-bottom: 5px solid #e8eaff; transform: translateX(-50%); }
.bm-desktop-stand::before { position: absolute; top: 0; left: 19px; width: 7px; height: 12px; background: #e8eaff; content: ""; }
.bm-device-web { bottom: 25px; left: 50%; width: 150px; height: 114px; padding: 0 6px 6px; border-radius: 8px; transform: translateX(-50%); }
.bm-browser-top { display: flex; gap: 3px; height: 18px; align-items: center; padding-left: 3px; }
.bm-browser-top i { width: 4px; height: 4px; border-radius: 50%; background: #8d93ad; }
.bm-device-web .bm-device-screen { height: 90px; }
.bm-device-mobile { right: 8%; width: 62px; height: 119px; padding: 11px 5px 10px; border-radius: 12px; }
.bm-device-mobile .bm-device-screen { height: 98px; gap: 6px; padding: 7px; }
.bm-device-mobile .bm-device-chart { height: 30px; }
.bm-mobile-speaker { position: absolute; top: 5px; left: 50%; width: 15px; height: 2px; border-radius: 99px; background: #8990ab; transform: translateX(-50%); }
.bm-mobile-home { position: absolute; bottom: 3px; left: 50%; width: 8px; height: 3px; border-radius: 99px; background: #8990ab; transform: translateX(-50%); }
.bm-platform-apps { position: relative; z-index: 1; display: grid; gap: 10px; }
.bm-platform-apps article { display: grid; grid-template-columns: 42px minmax(0,1fr) auto; gap: 13px; align-items: center; padding: 15px 17px; border: 1px solid #e1e3f0; border-radius: 13px; background: rgba(255,255,255,.88); box-shadow: 0 8px 20px rgba(64,68,145,.055); }
.bm-platform-icon { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 11px; color: var(--bm-primary); background: var(--bm-primary-soft); }
.bm-platform-apps article > div { display: flex; min-width: 0; flex-direction: column; }
.bm-platform-apps strong { color: var(--bm-ink); font-size: .84rem; }
.bm-platform-apps small { margin-top: 2px; overflow: hidden; color: var(--bm-muted); font-size: .67rem; text-overflow: ellipsis; white-space: nowrap; }
.bm-platform-status { padding: 6px 9px; border-radius: 999px; color: #6941c6; background: #f4ebff; font-size: .6rem; font-weight: 800; letter-spacing: .035em; white-space: nowrap; text-transform: uppercase; }
.bm-platform-status.is-live { color: #067647; background: #ecfdf3; }
.bm-security-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 17px; }
.bm-security-grid article { padding: 25px; border: 1px solid var(--bm-line); border-radius: 15px; background: #fff; }
.bm-security-grid i { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 18px; border-radius: 11px; color: var(--bm-primary); background: var(--bm-primary-soft); }
.bm-security-grid h3 { margin: 0 0 8px; color: var(--bm-ink); font-size: .95rem; }
.bm-security-grid p { margin: 0; color: var(--bm-muted); font-size: .76rem; line-height: 1.6; }
.bm-control-proof { margin-top: 34px; }

.bm-industry-product-proof { padding: 70px 0; background: linear-gradient(180deg,#fff,#f7f8ff); }
.bm-industry-product-proof > .container { display: grid; grid-template-columns: .65fr 1.35fr; gap: 58px; align-items: center; }
.bm-industry-product-proof-copy h2 { margin: 0 0 16px; color: var(--bm-ink); font-size: clamp(1.8rem,3.5vw,2.8rem); line-height: 1.15; letter-spacing: -.035em; }
.bm-industry-product-proof-copy p { margin: 0 0 24px; color: var(--bm-muted); line-height: 1.72; }
.bm-industry-product-proof-copy small { display: inline-flex; gap: 8px; align-items: center; color: #067647; font-weight: 700; }

/* Industries */
.bm-industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bm-industry-card { position: relative; min-height: 245px; padding: 28px; overflow: hidden; border: 1px solid var(--bm-line); border-radius: 16px; color: inherit; background: #fff; text-decoration: none; }
.bm-industry-card::after { position: absolute; right: -45px; bottom: -60px; width: 180px; height: 180px; border-radius: 50%; background: #eff0ff; content: ""; transition: 200ms ease; }
.bm-industry-card:hover { border-color: #bfc3f4; color: inherit; box-shadow: var(--bm-shadow-sm); transform: translateY(-3px); }
.bm-industry-card:hover::after { transform: scale(1.15); }
.bm-industry-card img { position: absolute; z-index: 1; right: 20px; bottom: 16px; width: 92px; height: 92px; object-fit: contain; }
.bm-industry-card .bm-industry-icon { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; margin-bottom: 37px; border-radius: 9px; color: var(--bm-accent); background: #fff4ed; }
.bm-industry-card h3 { position: relative; z-index: 2; margin: 0 0 9px; color: var(--bm-ink); font-size: 1.08rem; }
.bm-industry-card p { position: relative; z-index: 2; max-width: 72%; margin: 0; color: var(--bm-muted); font-size: 0.84rem; line-height: 1.55; }

/* Global section */
.bm-global-section { position: relative; overflow: hidden; color: #fff; background: var(--bm-navy); }
.bm-global-section::after { position: absolute; top: -260px; right: -180px; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); content: ""; }
.bm-global-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 75px; align-items: center; }
.bm-global-copy h2 { color: #fff; }
.bm-global-copy > p { color: #aeb5ce; }
.bm-global-copy .bm-kicker { color: #c7c9ff; }
.bm-region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bm-region-card { min-height: 178px; padding: 24px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.bm-region-card:last-child { grid-column: 1 / -1; min-height: 145px; }
.bm-region-card i { margin-bottom: 24px; color: #c7c9ff; font-size: 1.15rem; }
.bm-region-card h3 { margin: 0 0 8px; color: #fff; font-size: 1rem; }
.bm-region-card p { margin: 0; color: #aeb5ce; font-size: 0.83rem; line-height: 1.6; }

/* Steps */
.bm-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: rollout; }
.bm-step { position: relative; padding: 0 42px 0 0; counter-increment: rollout; }
.bm-step:not(:last-child)::after { position: absolute; top: 22px; right: 26px; left: 64px; height: 1px; background: #d0d5dd; content: ""; }
.bm-step-number { position: relative; z-index: 1; display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; margin-bottom: 24px; border: 1px solid #dfe1fb; border-radius: 50%; color: var(--bm-primary); background: #fff; font-size: 0.82rem; font-weight: 800; }
.bm-step h3 { margin: 0 0 10px; color: var(--bm-ink); font-size: 1.07rem; }
.bm-step p { max-width: 300px; margin: 0; color: var(--bm-muted); font-size: 0.88rem; line-height: 1.65; }

/* Customer stories */
.bm-stories-section { background: #fff; }
.bm-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.bm-story-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--bm-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.055);
}
.bm-story-card:nth-child(2) { border-color: #dfe1fb; background: #fafaff; }
.bm-story-topline { display: flex; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.bm-story-mark {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--bm-primary);
  background: var(--bm-primary-soft);
}
.bm-story-tenure {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #475467;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: right;
}
.bm-story-tenure i { color: var(--bm-success); }
.bm-story-card h3 {
  margin: 0 0 15px;
  color: #101828;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.015em;
}
.bm-story-card blockquote {
  flex: 1 1 auto;
  margin: 0 0 28px;
  color: #475467;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.72;
}
.bm-story-customer { display: flex; gap: 12px; align-items: center; padding-top: 20px; border-top: 1px solid var(--bm-line); }
.bm-story-avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--bm-primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}
.bm-story-customer > span:last-child { display: flex; min-width: 0; flex-direction: column; }
.bm-story-customer strong { color: #101828; font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.83rem; font-weight: 700; line-height: 1.4; }
.bm-story-customer small { display: flex; gap: 5px; align-items: center; margin-top: 2px; color: #667085; font-size: 0.72rem; }
.bm-story-customer small i { color: var(--bm-accent); font-size: 0.65rem; }

/* Pricing cards */
.bm-pricing-preview { position: relative; background: #f7f8fc; }
.bm-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.bm-plan-grid.bm-plan-grid-four { grid-template-columns: repeat(4, 1fr); }
.bm-plan-card { position: relative; display: flex; min-width: 0; flex-direction: column; padding: 30px; border: 1px solid var(--bm-line); border-radius: 16px; background: #fff; }
.bm-plan-card.bm-featured { border: 2px solid var(--bm-primary); box-shadow: 0 24px 60px rgba(91,92,226,.14); }
.bm-plan-badge { position: absolute; top: 18px; right: 18px; padding: 6px 9px; border-radius: 999px; color: var(--bm-primary-dark); background: var(--bm-primary-soft); font-size: .67rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.bm-plan-eyebrow { display: block; margin: 0 0 9px; color: var(--bm-primary); font-size: .66rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.bm-plan-card h3 { margin: 0 0 8px; color: var(--bm-ink); font-size: 1.12rem; }
.bm-plan-description { min-height: 66px; margin: 0 0 20px; color: var(--bm-muted); font-size: .82rem; line-height: 1.55; }
.bm-plan-fit { min-height: 62px; margin: -8px 0 18px; padding: 11px 12px; border-radius: 9px; color: #475467; background: #f7f8fc; font-size: .71rem; line-height: 1.5; }
.bm-plan-fit strong { color: var(--bm-ink); }
.bm-plan-price { display: flex; gap: 4px; align-items: baseline; margin-bottom: 5px; color: var(--bm-ink); }
.bm-plan-price .currency { font-size: .95rem; font-weight: 700; }
.bm-plan-price .amount { font-size: 2.25rem; font-weight: 800; letter-spacing: -.04em; }
.bm-plan-price .period { color: var(--bm-muted); font-size: .78rem; }
.bm-plan-billing { min-height: 36px; margin: 0 0 22px; color: var(--bm-muted); font-size: .75rem; }
.bm-plan-card .btn { width: 100%; margin-bottom: 24px; }
.bm-plan-features { display: grid; gap: 11px; margin: 0; padding: 22px 0 0; border-top: 1px solid var(--bm-line); list-style: none; }
.bm-plan-features li { display: flex; gap: 9px; color: #475467; font-size: .79rem; line-height: 1.4; }
.bm-plan-features i { margin-top: 3px; color: var(--bm-success); }
.bm-pricing-link { margin-top: 34px; text-align: center; }

/* FAQ */
.bm-faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 72px; }
.bm-faq-intro h2 { margin: 0 0 18px; color: var(--bm-ink); font-size: clamp(2rem,4vw,3rem); line-height: 1.12; letter-spacing: -.035em; }
.bm-faq-intro p { color: var(--bm-muted); line-height: 1.7; }
.bm-faq-list { border-top: 1px solid var(--bm-line); }
.bm-faq-item { border-bottom: 1px solid var(--bm-line); }
.bm-faq-item summary {
  position: relative;
  padding: 24px 44px 24px 0;
  color: #101828;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.012em;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1;
  -webkit-font-smoothing: auto;
  cursor: pointer;
  list-style: none;
  transition: color 150ms ease;
}
.bm-faq-item summary::-webkit-details-marker { display: none; }
.bm-faq-item summary:hover { color: var(--bm-primary-dark); }
.bm-faq-item[open] summary { color: var(--bm-primary-dark); }
.bm-faq-item summary::after {
  position: absolute;
  top: 22px;
  right: 3px;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--bm-primary);
  background: var(--bm-primary-soft);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  text-shadow: none;
  content: "+";
}
.bm-faq-item[open] summary::after { content: "−"; }
.bm-faq-item p {
  max-width: 760px;
  padding: 0 44px 25px 0;
  margin: -2px 0 0;
  color: #667085;
  font-family: "Inter", sans-serif;
  font-size: 0.87rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1;
  -webkit-font-smoothing: auto;
}

/* CTA */
.bm-cta-section { padding: 0 0 96px; }
.bm-cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 54px 58px; border-radius: 20px; color: #fff; background: linear-gradient(120deg,#5b5ce2,#35368f 62%,#101828); box-shadow: 0 30px 70px rgba(35,38,120,.24); }
.bm-cta-panel h2 { max-width: 670px; margin: 0 0 12px; color: #fff; font-size: clamp(1.8rem,3vw,2.7rem); letter-spacing: -.03em; }
.bm-cta-panel p { margin: 0; color: #e9eaff; }
.bm-cta-actions { display: flex; gap: 10px; }
.bm-cta-panel .bm-btn-primary { border-color: #fff !important; color: var(--bm-primary) !important; background: #fff !important; box-shadow: none !important; }
.bm-cta-panel .bm-btn-secondary { border-color: rgba(255,255,255,.3) !important; color: #fff !important; background: rgba(255,255,255,.06) !important; }

/* Pricing page */
.bm-price-hero { padding: 170px 0 72px; text-align: center; background: linear-gradient(180deg,#f7f7ff 0%,#fff 100%); }
.bm-price-heading { max-width: 800px; margin: 0 auto; }
.bm-price-heading .bm-kicker { justify-content: center; }
.bm-price-anchor { max-width: 650px; margin: 15px auto 0 !important; padding: 11px 16px; border: 1px solid #dfe1fb; border-radius: 10px; color: var(--bm-primary-dark) !important; background: #f7f7ff; font-size: .82rem !important; }
.bm-country-price-note {
  display: flex;
  width: fit-content;
  max-width: 720px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 18px auto 0 !important;
  padding: 9px 13px;
  border-radius: 9px;
  color: #475467 !important;
  background: #f2f4f7;
  font-size: .76rem !important;
  line-height: 1.45 !important;
}
.bm-country-price-note i { color: var(--bm-primary); }
.bm-country-price-note a { color: var(--bm-primary-dark); font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.bm-billing-toggle { display: inline-flex; gap: 4px; margin-top: 30px; padding: 4px; border: 1px solid var(--bm-line); border-radius: 11px; background: #fff; box-shadow: var(--bm-shadow-sm); }
.bm-billing-toggle button { min-width: 118px; padding: 10px 15px; border: 0; border-radius: 8px; color: var(--bm-muted); background: transparent; font-size: .84rem; font-weight: 700; }
.bm-billing-toggle button.active { color: #fff; background: var(--bm-primary); }
.bm-save-pill { margin-left: 5px; padding: 2px 6px; border-radius: 999px; color: #067647; background: #dcfae6; font-size: .62rem; }
.bm-price-body { padding: 35px 0 96px; }
.bm-value-case { padding: 14px 0 48px; }
.bm-value-case-compact { padding-top: 0; }
.bm-value-case .bm-section-heading { margin-bottom: 30px; }
.bm-value-case-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.bm-value-case-grid article { display: flex; gap: 14px; min-width: 0; padding: 24px; border: 1px solid var(--bm-line); border-radius: 15px; background: #fff; box-shadow: var(--bm-shadow-sm); }
.bm-value-number { display: inline-flex; width: 38px; height: 38px; flex: 0 0 38px; align-items: center; justify-content: center; border-radius: 10px; color: var(--bm-primary); background: var(--bm-primary-soft); font-size: .72rem; font-weight: 800; }
.bm-value-case-grid h3 { margin: 0 0 7px; color: var(--bm-ink); font-size: .94rem; line-height: 1.35; }
.bm-value-case-grid p { margin: 0; color: var(--bm-muted); font-size: .78rem; line-height: 1.62; }
.bm-value-summary { max-width: 850px; margin: 24px auto 0; padding: 17px 20px; border-radius: 12px; color: #475467; background: #f7f8fc; font-size: .84rem; line-height: 1.6; text-align: center; }
.bm-enterprise-strip { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; margin-top: 20px; padding: 30px; border: 1px solid #dfe1fb; border-radius: 15px; background: #f7f7ff; }
.bm-enterprise-strip h3 { margin: 0 0 6px; color: var(--bm-ink); font-size: 1.12rem; }
.bm-enterprise-strip p { margin: 0; color: var(--bm-muted); font-size: .86rem; }
.bm-price-support { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 70px; }
.bm-price-support article { padding: 27px; border: 1px solid var(--bm-line); border-radius: 14px; background: #fff; }
.bm-price-support i { margin-bottom: 20px; color: var(--bm-primary); }
.bm-price-support h3 { margin: 0 0 9px; color: var(--bm-ink); font-size: 1rem; }
.bm-price-support p { margin: 0; color: var(--bm-muted); font-size: .82rem; line-height: 1.6; }
.bm-addon-note { display: flex; gap: 14px; align-items: flex-start; margin-top: 22px; padding: 20px 22px; border: 1px solid #abefc6; border-radius: 13px; color: #05603a; background: #ecfdf3; }
.bm-addon-note p { margin: 0; font-size: .82rem; line-height: 1.55; }
.bm-value-promise { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.bm-value-promise article { display: flex; gap: 13px; align-items: flex-start; padding: 21px; border: 1px solid #dfe1fb; border-radius: 14px; background: #f7f7ff; }
.bm-value-promise i { display: inline-flex; width: 36px; height: 36px; flex: 0 0 36px; align-items: center; justify-content: center; border-radius: 9px; color: var(--bm-primary); background: var(--bm-primary-soft); }
.bm-value-promise div { display: flex; min-width: 0; flex-direction: column; gap: 4px; }
.bm-value-promise strong { color: var(--bm-ink); font-size: .83rem; }
.bm-value-promise span { color: var(--bm-muted); font-size: .75rem; line-height: 1.55; }
.bm-plan-comparison { padding-top: 88px; }
.bm-table-wrap { overflow-x: auto; border: 1px solid var(--bm-line); border-radius: 15px; background: #fff; box-shadow: var(--bm-shadow-sm); }
.bm-comparison-table { width: 100%; min-width: 790px; border-collapse: collapse; color: #475467; font-size: .78rem; }
.bm-comparison-table th,.bm-comparison-table td { padding: 15px 17px; border-bottom: 1px solid var(--bm-line); text-align: center; vertical-align: middle; }
.bm-comparison-table thead th { color: var(--bm-ink); background: #f7f8fc; font-family: "Plus Jakarta Sans",sans-serif; font-weight: 700; }
.bm-comparison-table thead th:first-child,.bm-comparison-table tbody th { text-align: left; }
.bm-comparison-table tbody th { color: var(--bm-ink); font-weight: 600; }
.bm-comparison-table tbody tr:last-child th,.bm-comparison-table tbody tr:last-child td { border-bottom: 0; }

/* Footer */
.bm-footer { padding: 80px 0 0; color: #d0d5dd; background: #101828; }
.bm-footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr 1.05fr; gap: 55px; padding-bottom: 60px; }
.bm-footer-logo { width: auto; height: 48px; margin-bottom: 22px; filter: none; }
.bm-footer-brand p { max-width: 360px; margin: 0 0 22px; color: #b0b6c3; line-height: 1.7; }
.bm-footer-tag { display: inline-flex; gap: 9px; align-items: center; color: #dfd3e3; font-size: .8rem; }
.bm-footer-tag i { color: #c7c9ff; }
.bm-footer-column { display: flex; flex-direction: column; gap: 12px; }
.bm-footer-column h3 { margin: 0 0 10px; color: #fff; font-size: .9rem; }
.bm-footer-column a,.bm-footer-column p { margin: 0; color: #b0b6c3; font-size: .8rem; text-decoration: none; }
.bm-footer-column a:hover { color: #fff; }
.bm-footer-contact > a:not(.bm-footer-sales-link),
.bm-footer-contact > p {
  display: flex;
  gap: 10px;
  align-items: center;
}
.bm-footer-contact i {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #c7c9ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}
.bm-footer-contact a[href^="https://wa.me"] i {
  border-color: rgba(71, 235, 132, 0.42);
  color: #79f2a5;
  background: rgba(37, 211, 102, 0.18);
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.16);
}
.bm-footer-sales-link { width: fit-content; margin-top: 8px !important; color: #fff !important; font-weight: 700; }
.bm-footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.09); }
.bm-footer-bottom p { margin: 0; color: #98a2b3; font-size: .76rem; }
.bm-footer-bottom div { display: flex; gap: 22px; }
.bm-footer-bottom a { color: #98a2b3; font-size: .76rem; text-decoration: none; }
.bm-footer-bottom a:hover { color: #fff; }
.bm-back-to-top { display: none !important; }

/* Align legacy public pages with the new shell */
.bmate-full-page:not(.bm-page) .header { background: linear-gradient(180deg,#f7f7ff,#fff); }
.bmate-full-page:not(.bm-page) .hero-header { padding-top: 180px !important; }
.bmate-full-page:not(.bm-page) .service-item,
.bmate-full-page:not(.bm-page) .bg-white.rounded,
.bmate-full-page:not(.bm-page) .bg-light.rounded { border: 1px solid var(--bm-line); box-shadow: none !important; }

/* Contact */
.bm-contact-hero { position: relative; overflow: hidden; padding: 170px 0 92px; background: radial-gradient(circle at 88% 12%,rgba(91,92,226,.2),transparent 28%),linear-gradient(150deg,#fafaff,#eef0ff 55%,#fff); }
.bm-contact-hero::after { position: absolute; top: -240px; right: -170px; width: 620px; height: 620px; border: 1px solid rgba(91,92,226,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(91,92,226,.035),0 0 0 140px rgba(91,92,226,.025); content: ""; }
.bm-contact-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 88px; align-items: center; }
.bm-contact-hero h1 { max-width: 720px; margin: 0 0 24px; color: var(--bm-ink); font-size: var(--bm-page-title-size); line-height: 1.02; letter-spacing: -.055em; }
.bm-contact-hero-grid > div > p { max-width: 700px; margin: 0; color: var(--bm-muted); font-size: 1.08rem; line-height: 1.78; }
.bm-contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.bm-contact-actions .btn { min-height: 52px; gap: 9px; }
.bm-contact-proof { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 25px 0 0; padding: 0; color: var(--bm-muted); font-size: .82rem; list-style: none; }
.bm-contact-proof i { margin-right: 6px; color: var(--bm-success); }
.bm-contact-summary { position: relative; padding: 30px; border: 1px solid rgba(255,255,255,.9); border-radius: 22px; background: rgba(255,255,255,.84); box-shadow: var(--bm-shadow-lg); backdrop-filter: blur(18px); }
.bm-contact-summary-label { color: var(--bm-primary); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.bm-contact-summary ol { display: grid; gap: 0; margin: 24px 0; padding: 0; list-style: none; }
.bm-contact-summary li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--bm-line); }
.bm-contact-summary li:first-child { padding-top: 0; }
.bm-contact-summary li > span { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 10px; color: var(--bm-primary-dark); background: var(--bm-primary-soft); font-size: .7rem; font-weight: 800; }
.bm-contact-summary li div { display: flex; flex-direction: column; gap: 4px; }
.bm-contact-summary strong { color: var(--bm-ink); font-size: .92rem; }
.bm-contact-summary small { color: var(--bm-muted); font-size: .78rem; line-height: 1.55; }
.bm-contact-summary > p { margin: 0; color: var(--bm-muted); font-size: .78rem; }
.bm-contact-summary > p i { margin-right: 7px; color: var(--bm-primary); }
.bm-contact-flash { padding-top: 25px; }
.bm-contact-message { display: flex; gap: 12px; align-items: center; padding: 16px 18px; border: 1px solid #abefc6; border-radius: 12px; color: #05603a; background: #ecfdf3; }
.bm-contact-message.is-error { border-color: #fecdca; color: #b42318; background: #fef3f2; }
.bm-contact-message p { margin: 0; }
.bm-contact-main-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 76px; align-items: start; }
.bm-contact-form-card { padding: 38px; border: 1px solid var(--bm-line); border-radius: 22px; background: #fff; box-shadow: var(--bm-shadow-lg); }
.bm-contact-form-card h2 { margin: 0 0 10px; color: var(--bm-ink); font-size: clamp(2rem,3.5vw,3rem); letter-spacing: -.04em; }
.bm-contact-form-card > p { margin: 0 0 28px; color: var(--bm-muted); line-height: 1.65; }
.bm-contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.bm-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.bm-form-wide { grid-column: 1 / -1; }
.bm-form-field { display: flex; min-width: 0; flex-direction: column; gap: 8px; }
.bm-form-field label { color: var(--bm-ink); font-size: .76rem; font-weight: 700; }
.bm-form-field label span { color: #b42318; }
.bm-form-field input,.bm-form-field select,.bm-form-field textarea { width: 100%; min-height: 50px; padding: 13px 14px; border: 1px solid #d9dce8; border-radius: 10px; color: var(--bm-ink); background: #fff; font-family: "Inter",sans-serif; font-size: .86rem; transition: border-color .15s ease,box-shadow .15s ease; }
.bm-form-field textarea { min-height: 130px; resize: vertical; }
.bm-form-field input::placeholder,.bm-form-field textarea::placeholder { color: #98a2b3; }
.bm-form-field input:hover,.bm-form-field select:hover,.bm-form-field textarea:hover { border-color: #b9bed2; }
.bm-form-field input:focus,.bm-form-field select:focus,.bm-form-field textarea:focus { border-color: var(--bm-primary); outline: none; box-shadow: 0 0 0 4px rgba(91,92,226,.1); }
.bm-contact-consent { display: flex; gap: 11px; align-items: flex-start; color: var(--bm-muted); font-size: .75rem; line-height: 1.5; cursor: pointer; }
.bm-contact-consent input { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 2px; accent-color: var(--bm-primary); }
.bm-contact-consent a { color: var(--bm-primary-dark); }
.bm-contact-form > .btn { min-height: 52px; gap: 10px; }
.bm-contact-context { padding-top: 10px; }
.bm-contact-context .bm-section-heading { margin-bottom: 28px; }
.bm-contact-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.bm-contact-detail-grid article { display: flex; min-height: 154px; gap: 13px; padding: 20px; border: 1px solid var(--bm-line); border-radius: 14px; background: #fff; }
.bm-contact-detail-grid article > i { display: inline-flex; width: 38px; height: 38px; flex: 0 0 38px; align-items: center; justify-content: center; border-radius: 10px; color: var(--bm-primary); background: var(--bm-primary-soft); }
.bm-contact-detail-grid h3 { margin: 2px 0 7px; color: var(--bm-ink); font-size: .88rem; }
.bm-contact-detail-grid p { margin: 0; color: var(--bm-muted); font-size: .75rem; line-height: 1.58; }
.bm-contact-office { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 20px; padding: 24px; border-radius: 14px; color: #fff; background: var(--bm-navy); }
.bm-contact-office div { display: flex; flex-direction: column; gap: 5px; }
.bm-contact-office span { color: #c7c9ff; font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.bm-contact-office strong,.bm-contact-office a { color: #fff; font-size: .78rem; line-height: 1.55; text-decoration: none; }

/* Legal pages */
.bm-legal-page .hero-header { min-height: 380px !important; padding-top: 158px !important; background: radial-gradient(circle at 82% 15%,rgba(91,92,226,.14),transparent 30%),linear-gradient(180deg,#f7f7ff,#fff); }
.bm-legal-page .hero-modern-eyebrow { margin-right: auto; margin-left: auto; box-shadow: none; }
.bm-legal-page .bm-legal-card { overflow: hidden; padding: 10px 48px !important; border: 1px solid var(--bm-line) !important; border-radius: 20px !important; box-shadow: var(--bm-shadow-sm) !important; }
.bm-legal-card > div { margin: 0 !important; padding: 34px 0; border-bottom: 1px solid var(--bm-line); }
.bm-legal-card > div:last-child { margin: 34px 0 !important; padding: 26px !important; border: 0; border-radius: 13px !important; background: #f7f7ff !important; }
.bm-legal-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px !important; color: var(--bm-ink) !important; font-size: 1.15rem; }
.bm-legal-card h3 i { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 9px; color: var(--bm-primary); background: var(--bm-primary-soft); font-size: .8rem; }
.bm-legal-card p { margin: 0; color: var(--bm-muted) !important; line-height: 1.78; }
.bm-legal-card a { color: var(--bm-primary-dark); }

/* Harmonise the utility-based industry template. */
.bm-industry-shell .bg-orange-100 { color: var(--bm-primary-dark) !important; background: var(--bm-primary-soft) !important; }
.bm-industry-shell .text-orange-700,.bm-industry-shell .hover\:text-orange-600:hover { color: var(--bm-primary-dark) !important; }
.bm-industry-shell .border-orange-500,.bm-industry-shell .hover\:border-orange-500:hover { border-color: var(--bm-primary) !important; }
.bm-industry-shell .bg-orange-500 { background: var(--bm-primary) !important; }
.bm-industry-shell img { transition: transform .45s ease; }
.bm-industry-shell .rounded-2xl:hover img { transform: scale(1.025); }

@media (max-width: 1199.98px) {
  .bm-container { width: calc(100% - 40px); }
  .bm-navbar .bm-nav-shell { align-items: center; }
  .bm-navbar .navbar-collapse { width: 100%; padding: 10px 4px 5px; }
  .bm-nav-links { align-items: stretch; }
  .bm-navbar .dropdown-menu { width: auto; margin: 0 0 8px; box-shadow: none; }
  .bm-hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .bm-hero-copy { max-width: 720px; }
  .bm-product-window { max-width: 900px; margin: 0 auto; transform: none; }
  .bm-capability-grid { grid-template-columns: repeat(2,1fr); }
  .bm-plan-grid.bm-plan-grid-four,.bm-value-case-grid { grid-template-columns: repeat(2,1fr); }
  .bm-feature-hero .bm-container { grid-template-columns: 1fr; gap: 46px; }
  .bm-work-map { max-width: 850px; }
  .bm-flow-line { grid-template-columns: repeat(3,1fr); }
  .bm-flow-line article::after { display: none; }
  .bm-plan-guide-grid { grid-template-columns: repeat(2,1fr); }
  .bm-contact-hero-grid { grid-template-columns: 1fr 440px; gap: 48px; }
  .bm-contact-main-grid { gap: 44px; }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  .bm-container { width: calc(100% - 48px); }
  .bm-hero-grid { grid-template-columns: minmax(0,.86fr) minmax(560px,1.14fr); gap: 60px; }
}

@media (max-width: 991.98px) {
  .bm-section { padding: 60px 0; }
  .bm-trust-grid { grid-template-columns: repeat(2,1fr); }
  .bm-trust-item:nth-child(2) { border-right: 0; }
  .bm-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--bm-line); }
  .bm-proof-grid,.bm-global-grid,.bm-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .bm-platform-grid { grid-template-columns: 1fr; gap: 48px; }
  .bm-platform-stage { max-width: 760px; }
  .bm-industry-product-proof > .container { grid-template-columns: 1fr; gap: 34px; }
  .bm-showcase-row,.bm-showcase-row-reverse { grid-template-columns: 1fr; gap: 34px; }
  .bm-showcase-row .bm-showcase-copy,.bm-showcase-row-reverse .bm-showcase-copy { grid-column: 1; grid-row: 1; }
  .bm-showcase-row .bm-showcase-window,.bm-showcase-row-reverse .bm-showcase-window { grid-column: 1; grid-row: 2; }
  .bm-showcase-window,.bm-showcase-row-reverse .bm-showcase-window { width: 100%; max-width: none; justify-self: stretch; }
  .bm-industry-grid { grid-template-columns: repeat(2,1fr); }
  .bm-story-grid { grid-template-columns: 1fr; }
  .bm-plan-grid { grid-template-columns: repeat(2,1fr); }
  .bm-value-promise { grid-template-columns: 1fr; }
  .bm-feature-detail-grid,.bm-feature-detail-reverse { grid-template-columns: 1fr; gap: 42px; }
  .bm-growth-grid,.bm-advanced-grid,.bm-security-grid { grid-template-columns: repeat(2,1fr); }
  .bm-cta-panel { grid-template-columns: 1fr; }
  .bm-footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .bm-footer-brand { grid-column: 1 / -1; }
  .bm-contact-hero-grid,.bm-contact-main-grid { grid-template-columns: 1fr; }
  .bm-contact-summary { max-width: 720px; }
  .bm-contact-context { padding-top: 0; }
}

@media (max-width: 767.98px) {
  :root { --bm-page-title-size: clamp(2.1rem, 9vw, 3rem); }
  .bm-container { width: 100%; }
  .bm-navbar.navbar { top: 8px; padding: 0 10px; }
  .bm-navbar .bm-nav-shell { width: 100%; min-width: 0; min-height: 64px; padding: 7px 9px 7px 13px; border-radius: 14px; }
  .bm-brand { min-width: 0; margin-right: 0; }
  .bm-brand-logo { width: 176px; max-width: 100%; height: auto; }
  .bm-nav-actions { min-width: 0; }
  .bm-nav-toggle { display: block; flex: 0 0 44px; }
  .bm-hero { padding: 132px 0 68px; }
  .bm-hero h1 { max-width: 100%; overflow-wrap: anywhere; font-size: var(--bm-page-title-size); }
  .bm-hero-grid { gap: 44px; }
  .bm-trust-grid,.bm-capability-grid,.bm-industry-grid,.bm-plan-grid,.bm-plan-grid.bm-plan-grid-four,.bm-price-support,.bm-value-promise,.bm-value-case-grid { grid-template-columns: 1fr; }
  .bm-showcase-list { gap: 48px; margin-top: 40px; }
  .bm-showcase-row { gap: 26px; padding: 0; }
  .bm-product-shot-note { right: 16px; bottom: -24px; min-width: 0; max-width: calc(100% - 32px); }
  .bm-trust-item { border-right: 0; border-bottom: 1px solid var(--bm-line); }
  .bm-trust-item:last-child { border-bottom: 0; }
  .bm-capability-card { min-height: 0; }
  .bm-region-grid { grid-template-columns: 1fr; }
  .bm-feature-hero { padding-top: 130px; }
  .bm-feature-hero-copy h1 { font-size: var(--bm-page-title-size); }
  .bm-work-map-grid,.bm-owner-feature-grid,.bm-detail-list,.bm-growth-grid,.bm-advanced-grid,.bm-plan-guide-grid,.bm-security-grid { grid-template-columns: 1fr; }
  .bm-home-workflow-links { grid-template-columns: 1fr; }
  .bm-owner-feature ul { grid-template-columns: 1fr; }
  .bm-flow-line { grid-template-columns: 1fr; }
  .bm-feature-jump { top: 80px; }
  .bm-industry-shell { padding-top: 92px; }
  .bm-region-card:last-child { grid-column: auto; }
  .bm-steps { grid-template-columns: 1fr; gap: 35px; }
  .bm-step { padding: 0; }
  .bm-step:not(:last-child)::after { top: 45px; right: auto; bottom: -35px; left: 23px; width: 1px; height: 35px; }
  .bm-cta-section { padding-bottom: 72px; }
  .bm-cta-panel { padding: 38px 28px; }
  .bm-cta-actions { flex-direction: column; }
  .bm-price-hero { padding-top: 135px; }
  .bm-enterprise-strip { grid-template-columns: 1fr; }
  .bm-footer-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .bm-footer-brand { grid-column: 1 / -1; }
  .bm-footer-contact { grid-column: 1 / -1; }
  .bm-footer-bottom { flex-direction: column; gap: 14px; }
  .bm-contact-hero { padding: 132px 0 68px; }
  .bm-contact-hero h1 { font-size: var(--bm-page-title-size); }
  .bm-contact-form-card { padding: 28px; }
  .bm-contact-detail-grid { grid-template-columns: 1fr; }
  .bm-contact-detail-grid article { min-height: 0; }
  .bm-legal-page .bm-legal-card { padding: 6px 26px !important; }
  .bm-industry-shell > section:first-child .flex.flex-wrap.gap-4 { display: grid !important; grid-template-columns: 1fr; }
  .bm-industry-shell > section:first-child .flex.flex-wrap.gap-4 > * { width: 100%; text-align: center; }
}

@media (max-width: 479.98px) {
  .bm-nav-actions .bm-nav-cta { display: none !important; }
  .bm-hero-actions { display: grid; grid-template-columns: 1fr; }
  .bm-hero-capabilities { grid-template-columns: 1fr; gap: 12px; padding: 15px 0; }
  .bm-hero-capability,
  .bm-hero-capability:first-child,
  .bm-hero-capability:last-child { justify-content: flex-start; padding: 0; border-right: 0; }
  .bm-hero-note { display: grid; gap: 10px; }
  .bm-section-heading { margin-bottom: 38px; }
  .bm-footer-grid { grid-template-columns: 1fr; }
  .bm-footer-brand,.bm-footer-contact { grid-column: auto; }
  .bm-billing-toggle button { min-width: auto; }
  .bm-contact-actions,.bm-contact-actions .btn { width: 100%; }
  .bm-contact-form { grid-template-columns: 1fr; }
  .bm-form-wide { grid-column: auto; }
  .bm-contact-form-card { padding: 23px 19px; border-radius: 16px; }
  .bm-contact-office { grid-template-columns: 1fr; }
  .bm-contact-summary { padding: 23px 19px; }
  .bm-platform-stage { padding: 22px 16px; border-radius: 20px; }
  .bm-sync-graphic { min-height: 300px; }
  .bm-device-desktop { left: 4%; width: 108px; }
  .bm-device-web { width: 124px; }
  .bm-device-mobile { right: 4%; width: 54px; }
  .bm-platform-apps article { grid-template-columns: 38px minmax(0,1fr); padding: 13px; }
  .bm-platform-icon { width: 38px; height: 38px; }
  .bm-platform-status { grid-column: 2; width: fit-content; }
  .bm-legal-page .bm-legal-card { padding: 0 19px !important; }
  .bm-legal-card > div:last-child { padding: 20px !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
