/* ==========================================================================
   home.css — Borong Home (2026 redesign), imported from Claude Design.
   Self-contained: this is the only site stylesheet loaded on /home-2026/.
   Inline styles from the design canvas are extracted here into classes so the
   page is responsive and maintainable. Brand tokens live in :root below.
   ========================================================================== */

:root {
  --bh-ink: #2A2444;        /* dark heading text + dark sections        */
  --bh-purple: #524583;     /* brand purple — footer, links, accents    */
  --bh-violet: #6938EF;     /* vivid accent                             */
  --bh-violet-2: #7F63EF;
  --bh-orange: #FF8500;     /* primary CTA                              */
  --bh-orange-hi: #FF9933;  /* CTA hover                                */
  --bh-orange-ink: #CC6A00; /* orange text on light                     */
  --bh-text: #333333;
  --bh-text-2: #585858;
  --bh-muted: #999999;
  --bh-line: #E6E6E6;
  --bh-line-2: #F2F2F2;
  --bh-mist: #FAFAFA;
  --bh-lilac: #F4F3FF;
  --bh-lilac-2: #EDEBF5;
  --bh-lilac-3: #EBE9FE;
  --bh-cream: #FFF4E5;
  --bh-cream-2: #FFE0B3;
  --bh-green: #027A48;
  --bh-green-bg: #ECFDF3;
  --bh-green-2: #12B76A;
  --bh-red: #B42318;
  --bh-red-bg: #FEF3F2;
  --bh-maxw: 1240px;
  --bh-pad: 32px;
  --bh-nav-h: 72px;
  --bh-ease: cubic-bezier(0.16, 1, 0.3, 1); /* premium ease-out for interactions */
  --bh-focus: 0 0 0 3px rgba(105,56,239,0.35); /* brand focus ring */
}

/* ---- reset-ish (scoped to the page wrapper) ---- */
.bh, .bh * { box-sizing: border-box; }
.bh {
  font-family: "articulat-cf", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--bh-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { scroll-behavior: smooth; }
body { margin: 0; } /* new-design pages don't load styles.css, which resets this elsewhere */
.bh ::selection { background: #FFE0B3; color: var(--bh-ink); }
@keyframes bh-float { 0%,100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-14px) rotate(-8deg); } }

.bh-shell { max-width: var(--bh-maxw); margin: 0 auto; padding: 0 var(--bh-pad); }

/* ---- shared building blocks ---- */
.bh-btn {
  font-size: 15px; font-weight: 700; text-decoration: none; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  border: none; font-family: inherit;
  transition: background .25s var(--bh-ease), color .25s var(--bh-ease), border-color .25s var(--bh-ease), transform .15s var(--bh-ease), box-shadow .25s var(--bh-ease);
}
.bh-btn:hover { transform: translateY(-1px); }
.bh-btn:active { transform: translateY(1px) scale(0.99); }
.bh-btn:focus-visible { outline: none; box-shadow: var(--bh-focus); }
.bh-btn--primary { color: #fff; background: var(--bh-orange); padding: 16px 28px; }
.bh-btn--primary:hover { background: var(--bh-orange-hi); box-shadow: 0 8px 18px -6px rgba(255,133,0,0.45); }
.bh-btn--ghost { color: #fff; padding: 16px 28px; border: 1.5px solid rgba(255,255,255,0.6); }
.bh-btn--ghost:hover { background: rgba(255,255,255,0.12); }
.bh-btn--ghost:focus-visible { box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
.bh-btn--outline { color: var(--bh-purple); padding: 16px 28px; border: 1.5px solid var(--bh-line); background: #fff; }
.bh-btn--outline:hover { border-color: var(--bh-purple); }

.bh-arrow {
  font-size: 15px; font-weight: 700; color: var(--bh-purple); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: gap .15s ease, color .15s ease;
}
.bh-arrow:hover { gap: 12px; }
.bh-arrow--violet { color: var(--bh-violet); }

.bh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.bh-eyebrow--purple { background: var(--bh-lilac-2); color: var(--bh-purple); }
.bh-eyebrow--ink { background: var(--bh-ink); color: #fff; }

.bh-h2 { font-size: 40px; line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; color: var(--bh-ink); margin: 0 0 16px; }
.bh-lead { font-size: 17px; line-height: 1.6; color: var(--bh-text-2); margin: 0; text-wrap: pretty; }

.bh-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.bh-head--wide { max-width: 880px; }
.bh-head--left { text-align: left; margin-left: 0; }

/* reveal-on-scroll: only hide when JS is active so no-JS still shows content */
.bh-js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.bh-js [data-reveal="left"] { transform: translateX(-30px); }
.bh-js [data-reveal="right"] { transform: translateX(30px); }
.bh-js [data-reveal].is-in { opacity: 1; transform: none; }

/* ==========================================================================
   HEADER / MEGA-MENU
   ========================================================================== */
.bh-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  background: transparent; border-bottom: 1px solid rgba(255,255,255,0.18);
}
/* solid state — set by JS on scroll, or when a mega panel is open */
.bh-header.is-solid { background: #fff; border-bottom: 1px solid var(--bh-line); box-shadow: 0 2px 10px rgba(16,24,40,0.06); }
/* Standard (non-hero) pages: nav sits in-flow so page content isn't hidden under a fixed bar */
.bh--sticky .bh-header { position: sticky; }

.bh-header__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 0 var(--bh-pad); height: var(--bh-nav-h); display: flex; align-items: center; gap: 30px; }
.bh-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.bh-logo img { height: 30px; width: auto; display: block; transition: filter .25s ease; }
/* logo is white while header blends over the hero photo */
.bh-header:not(.is-solid) .bh-logo img { filter: brightness(0) invert(1); }

.bh-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.bh-nav__item { position: static; }
.bh-nav__btn {
  display: inline-flex; align-items: center; gap: 6px; border: none; background: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600; padding: 10px 13px; border-radius: 8px;
  color: #fff; transition: color .15s ease;
}
.bh-header.is-solid .bh-nav__btn { color: var(--bh-text); }
.bh-nav__btn--link { text-decoration: none; }
.bh-nav__btn:hover, .bh-nav__item.is-open .bh-nav__btn { color: var(--bh-purple); }
.bh-nav__caret { font-size: 11px; transition: transform .18s ease; color: rgba(255,255,255,0.7); }
.bh-header.is-solid .bh-nav__caret { color: var(--bh-muted); }
.bh-nav__item.is-open .bh-nav__caret { transform: rotate(180deg); color: var(--bh-purple); }

.bh-nav__actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.bh-nav__link { font-size: 15px; font-weight: 600; color: #fff; text-decoration: none; transition: opacity .15s ease, color .15s ease; }
.bh-header.is-solid .bh-nav__link { color: var(--bh-text); }
.bh-nav__link:hover { opacity: 0.7; }
.bh-nav__cta { font-size: 14px; font-weight: 700; color: #fff; text-decoration: none; padding: 11px 20px; background: var(--bh-orange); border-radius: 8px; transition: background .15s ease; }
.bh-nav__cta:hover { background: var(--bh-orange-hi); }

/* ===== mega panels (base) ===== */
.bh-mega {
  position: absolute; top: var(--bh-nav-h); left: 0; right: 0; background: #fff;
  border-top: 1px solid var(--bh-line); border-bottom: 1px solid var(--bh-line);
  box-shadow: 0 16px 24px -8px rgba(16,24,40,0.12);
  display: none;
}
.bh-mega.is-open { display: block; }
.bh-mega__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 0 var(--bh-pad); }
.bh-mega__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bh-muted); margin-bottom: 16px; }

/* simple two-column link panel (Resources, Company) */
.bh-mega--simple .bh-mega__inner { padding-top: 28px; padding-bottom: 30px; }
.bh-mega--simple .bh-cap-grid { max-width: 640px; }
.bh-mega__simplecol { display: flex; flex-direction: column; gap: 14px; }
.bh-mega-link { font-size: 15px; font-weight: 500; color: var(--bh-text-2); text-decoration: none; transition: color .15s ease; }
.bh-mega-link:hover { color: var(--bh-purple); }
.bh-mega-link--head { font-weight: 700; color: var(--bh-ink); }

/* rich 3-zone mega (Platform, Solutions): EXPLORE rail | capabilities | promo */
.bh-mega--rich .bh-mega__inner { display: grid; grid-template-columns: 290px minmax(0,1fr) 324px; }
.bh-mega__rail { padding: 24px 24px 24px 0; border-right: 1px solid var(--bh-line); }
.bh-mega__rail-item { display: flex; align-items: center; gap: 13px; padding: 11px 12px; border-radius: 10px; text-decoration: none; transition: background .15s ease; }
.bh-mega__rail-item:hover, .bh-mega__rail-item.is-active { background: var(--bh-lilac); }
.bh-mega__rail-icon { width: 38px; height: 38px; border-radius: 9px; background: #fff; border: 1px solid var(--bh-line); color: var(--bh-purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 19px; transition: all .15s ease; }
.bh-mega__rail-item.is-active .bh-mega__rail-icon { background: var(--bh-purple); border-color: var(--bh-purple); color: #fff; }
.bh-mega__rail-label { flex: 1; font-size: 15px; font-weight: 700; color: var(--bh-ink); }
.bh-mega__rail-caret { font-size: 13px; color: var(--bh-muted); }

.bh-mega__mid { padding: 24px 30px; }
.bh-mega__panel { display: none; }
.bh-mega__panel.is-active { display: block; animation: bh-fade .18s ease; }
@keyframes bh-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.bh-cap-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px 28px; }
.bh-cap { text-decoration: none; display: block; }
.bh-cap__t { font-size: 15px; font-weight: 700; color: var(--bh-ink); display: inline-flex; align-items: center; gap: 8px; transition: color .15s ease; }
.bh-cap:hover .bh-cap__t { color: var(--bh-purple); }
.bh-cap__s { display: block; font-size: 13px; color: var(--bh-text-2); margin-top: 2px; }
.bh-cap__badge { font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bh-violet); background: var(--bh-lilac-3); padding: 2px 7px; border-radius: 999px; }

.bh-promo { background: var(--bh-lilac); border-radius: 14px; margin: 22px 0; padding: 22px; display: flex; flex-direction: column; }
.bh-promo__img { height: 122px; border-radius: 10px; background: var(--bh-ink) center/cover no-repeat; box-shadow: 0 10px 18px -8px rgba(16,24,40,0.30); }
.bh-promo__t { font-size: 17px; font-weight: 800; color: var(--bh-ink); letter-spacing: -0.01em; margin: 16px 0 6px; }
.bh-promo__s { font-size: 13.5px; line-height: 1.55; color: var(--bh-text-2); margin: 0 0 16px; }
.bh-promo .bh-btn { margin-top: auto; width: 100%; justify-content: center; padding: 13px 20px; font-size: 14px; }

/* ===== mobile burger + accordion ===== */
.bh-burger { display: none; width: 42px; height: 42px; border: none; background: none; cursor: pointer; color: #fff; font-size: 26px; align-items: center; justify-content: center; }
.bh-header.is-solid .bh-burger { color: var(--bh-ink); }
.bh-macc { display: none; position: fixed; top: var(--bh-nav-h); left: 0; right: 0; bottom: 0; z-index: 59; background: #fff; padding: 8px var(--bh-pad) 120px; overflow-y: auto; }
.bh-macc.is-open { display: block; }
.bh-macc__group { border-bottom: 1px solid var(--bh-line); }
.bh-macc__top { width: 100%; display: flex; align-items: center; justify-content: space-between; background: none; border: none; font-family: inherit; font-size: 18px; font-weight: 700; color: var(--bh-ink); padding: 18px 2px; cursor: pointer; }
.bh-macc__chev { font-size: 15px; color: var(--bh-muted); transition: transform .2s ease; }
.bh-macc__group.is-open .bh-macc__chev { transform: rotate(180deg); }
.bh-macc__body { max-height: 0; overflow: hidden; padding: 0 2px; transition: max-height .32s var(--bh-ease, ease); }
.bh-macc__group.is-open .bh-macc__body { max-height: 720px; padding-bottom: 16px; }
.bh-macc__sub { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bh-muted); margin: 12px 0 4px; text-decoration: none; }
.bh-macc__sub--link:hover { color: var(--bh-purple); }
.bh-macc__link { display: block; text-decoration: none; color: var(--bh-text); font-size: 15px; font-weight: 600; padding: 9px 0; }
.bh-macc__link:hover { color: var(--bh-purple); }
.bh-macc__link--head { font-weight: 800; color: var(--bh-ink); }
.bh-macc__top--link { text-decoration: none; }
.bh-macc__foot { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.bh-macc__foot .bh-macc__link { font-size: 16px; }
.bh-macc__foot .bh-btn { width: 100%; justify-content: center; margin-top: 14px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.bh-hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  background: var(--bh-ink) url('/images/corporate/hero-procurement.jpg') center 30% / cover no-repeat;
}
.bh-hero--short { min-height: 76vh; }
.bh-hero--home { background-position: center 28%; }
.bh-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,36,68,0.72) 0%, rgba(42,36,68,0.42) 34%, rgba(42,36,68,0.7) 70%, #2A2444 100%); }
.bh-hero__body { position: relative; flex: 1; display: flex; align-items: center; width: 100%; }
.bh-hero__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 120px var(--bh-pad) 48px; width: 100%; }
.bh-hero__content { max-width: 800px; color: #fff; }
.bh-hero h1 { font-size: clamp(34px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; margin: 0 0 22px; color: #fff; }
.bh-hero__sub { font-size: 19px; line-height: 1.55; color: rgba(255,255,255,0.92); margin: 0 0 34px; max-width: 720px; }
.bh-hero__sub--m { display: none; } /* desktop shows the full --d copy; mobile swaps to --m */
.bh-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; max-width: 720px; }
.bh-trustline { display: flex; align-items: center; gap: 9px; margin-top: 30px; color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 700; }

.bh-stats { position: relative; border-top: 1px solid rgba(255,255,255,0.14); }
.bh-stats__grid { max-width: var(--bh-maxw); margin: 0 auto; padding: var(--bh-pad); display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.bh-stat + .bh-stat { border-left: 1px solid rgba(255,255,255,0.14); padding-left: 28px; }
.bh-stat__num { font-size: 40px; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.1; }
.bh-stat__label { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.4; margin-top: 6px; }

/* ==========================================================================
   TRUST / LOGOS
   ========================================================================== */
.bh-trust { background: #fff; }
.bh-trust__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 80px var(--bh-pad); }
.bh-trust__head { text-align: center; max-width: 880px; margin: 0 auto 44px; }
.bh-trust__head h2 { font-size: 42px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; color: var(--bh-ink); margin: 0 0 14px; }
.bh-trust__head p { font-size: 16px; line-height: 1.6; color: var(--bh-text-2); margin: 0; text-wrap: pretty; }
.bh-marquees { display: flex; flex-direction: column; gap: 18px; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); padding: 0 var(--bh-pad); box-sizing: border-box; }
.bh-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%); }
.bh-marquee__track { display: flex; width: max-content; will-change: transform; }
.bh-marquee__track--right { animation: bh-marq-right 52s linear infinite; }
.bh-marquee__track--left { animation: bh-marq-left 52s linear infinite; }
@media (hover: hover) { .bh-marquees:hover .bh-marquee__track { animation-play-state: paused; } }
.bh-marquee__item { flex: 0 0 auto; height: 96px; display: flex; align-items: center; justify-content: center; padding: 0 44px; }
.bh-marquee__item img { max-width: 152px; max-height: 60px; width: auto; height: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.62; transition: filter .25s ease, opacity .25s ease; }
@media (hover: hover) { .bh-marquee__item:hover img { filter: none; opacity: 1; } }
@keyframes bh-marq-right { from { transform: translate3d(-50%, 0, 0); } to { transform: translate3d(0, 0, 0); } }
@keyframes bh-marq-left { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@media (prefers-reduced-motion: reduce) { .bh-marquee__track { animation: none; } }

/* ==========================================================================
   GLOBAL RECOGNITIONS
   ========================================================================== */
.bh-recog { background: var(--bh-mist); border-top: 1px solid var(--bh-line); }
.bh-recog__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 80px var(--bh-pad); }
.bh-recog__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 32px; max-width: 1080px; margin: 0 auto; }
.bh-recog__item { flex: 0 0 240px; max-width: 240px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 20px 16px; border-radius: 14px; transition: background .15s ease; }
.bh-recog__item:hover { background: var(--bh-lilac); }
.bh-recog__badge { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 8px -2px rgba(16,24,40,0.12); font-weight: 800; font-size: 15px; letter-spacing: -0.01em; text-align: center; padding: 6px; line-height: 1.05; }
.bh-recog__logo { width: 100%; max-width: 160px; height: 52px; object-fit: contain; object-position: center; display: block; }
.bh-recog__title { font-size: 17px; font-weight: 800; color: var(--bh-ink); letter-spacing: -0.01em; line-height: 1.2; }
.bh-recog__desc { font-size: 13px; color: var(--bh-text-2); line-height: 1.45; margin-top: 4px; max-width: 200px; }

/* staggered slide-up reveal — the list keeps [data-reveal] purely as the in-view trigger */
.bh-js .bh-recog__list[data-reveal] { opacity: 1; transform: none; transition: none; }
.bh-js .bh-recog__item { opacity: 0; transform: translateY(24px); }
.bh-recog__list.is-in .bh-recog__item { animation: bh-rise .55s cubic-bezier(.22,.61,.36,1) forwards; }
.bh-recog__list.is-in .bh-recog__item:nth-child(1) { animation-delay: 0s; }
.bh-recog__list.is-in .bh-recog__item:nth-child(2) { animation-delay: .09s; }
.bh-recog__list.is-in .bh-recog__item:nth-child(3) { animation-delay: .18s; }
.bh-recog__list.is-in .bh-recog__item:nth-child(4) { animation-delay: .27s; }
.bh-recog__list.is-in .bh-recog__item:nth-child(5) { animation-delay: .36s; }
.bh-recog__list.is-in .bh-recog__item:nth-child(6) { animation-delay: .45s; }
.bh-recog__list.is-in .bh-recog__item:nth-child(7) { animation-delay: .54s; }
@keyframes bh-rise { to { opacity: 1; transform: none; } }
.bh-note { text-align: center; font-size: 13px; color: var(--bh-muted); margin: 36px 0 0; font-style: italic; }

/* ==========================================================================
   PRODUCTS
   ========================================================================== */
.bh-products { max-width: var(--bh-maxw); margin: 0 auto; padding: 104px var(--bh-pad) 60px; scroll-margin-top: 88px; }
.bh-products__intro { max-width: 880px; margin: 0 auto 14px; text-align: center; }
.bh-products__intro h2 { font-size: 42px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; color: var(--bh-ink); margin: 0 0 16px; }
.bh-products__intro p { font-size: 17px; line-height: 1.6; color: var(--bh-text-2); margin: 0; text-wrap: pretty; }

.bh-prow { max-width: var(--bh-maxw); margin: 0 auto; padding: 44px var(--bh-pad); }
.bh-prow:last-of-type { padding-bottom: 60px; }
.bh-prow__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.bh-prow h3 { font-size: 30px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--bh-ink); margin: 0 0 14px; }
.bh-prow p { font-size: 16px; line-height: 1.65; color: var(--bh-text-2); margin: 0 0 18px; }
.bh-prow--rev .bh-prow__media { order: -1; }

.bh-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; padding: 6px 13px; border-radius: 999px; margin-bottom: 18px; }
.bh-pill--purple { background: var(--bh-lilac-2); color: var(--bh-purple); }
.bh-pill--orange { background: var(--bh-cream); color: var(--bh-orange-ink); }
.bh-pill--green { background: var(--bh-green-bg); color: var(--bh-green); }

/* generic mock-ui card */
.bh-mock { background: #fff; border: 1px solid var(--bh-line); border-radius: 14px; box-shadow: 0 12px 16px -4px rgba(16,24,40,0.08), 0 4px 6px -2px rgba(16,24,40,0.04); overflow: hidden; }
.bh-mock__bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--bh-line); background: var(--bh-mist); }
.bh-mock__bar--search { gap: 10px; justify-content: flex-start; }
.bh-mock__title { font-weight: 700; font-size: 14px; color: var(--bh-ink); }
.bh-mock__body { padding: 18px; }
.bh-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.bh-tag--amber { color: #B54708; background: #FFFAEB; }
.bh-tag--green { color: var(--bh-green); background: var(--bh-green-bg); }
.bh-mock__kv { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.bh-mock__kv span:first-child { color: #666; }
.bh-mock__kv span:last-child { font-weight: 600; color: var(--bh-text); }
.bh-mock__label { font-size: 12px; font-weight: 700; color: var(--bh-muted); text-transform: uppercase; letter-spacing: 0.04em; margin: 16px 0 12px; }

/* approval-flow steps */
.bh-flow { display: flex; flex-direction: column; }
.bh-flow__step { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; }
.bh-flow__step:last-child { padding-bottom: 0; }
.bh-flow__dot { width: 28px; height: 28px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; }
.bh-flow__dot--done { background: var(--bh-green-bg); color: var(--bh-green); }
.bh-flow__dot--pending { background: var(--bh-lilac); color: var(--bh-violet); border: 1.5px dashed #BBB4FE; }
.bh-flow__main { flex: 1; }
.bh-flow__t { font-size: 13px; font-weight: 700; color: var(--bh-text); }
.bh-flow__s { font-size: 12px; color: var(--bh-muted); }
.bh-flow__status { font-size: 11px; font-weight: 700; }
.bh-flow__status--done { color: var(--bh-green); }
.bh-flow__status--pending { color: var(--bh-violet); }

/* marketplace cart mock */
.bh-mock__line { display: flex; align-items: center; gap: 12px; }
.bh-mock__icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.bh-mock__icon--orange { background: var(--bh-cream); color: var(--bh-orange); }
.bh-mock__icon--violet { background: #EBE9FE; color: var(--bh-violet); }
.bh-mock__icon--purple { background: var(--bh-lilac-2); color: var(--bh-purple); }
.bh-mock__line-main { flex: 1; }
.bh-mock__line-t { font-size: 13px; font-weight: 700; color: var(--bh-text); }
.bh-mock__line-s { font-size: 12px; color: var(--bh-muted); }
.bh-mock__line-price { font-size: 13px; font-weight: 700; color: var(--bh-text); text-align: right; }
.bh-cart-total { margin-top: 4px; background: var(--bh-lilac); border: 1px solid #EBE9FE; border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; }
.bh-cart-total__label { font-size: 12px; color: #666; font-weight: 600; }
.bh-cart-total__amt { font-size: 18px; font-weight: 800; color: var(--bh-violet); }
.bh-cart-total__btn { font-size: 13px; font-weight: 700; color: #fff; background: var(--bh-purple); padding: 9px 16px; border-radius: 8px; }

/* credit mock */
.bh-credit__head { padding: 18px; background: linear-gradient(135deg, #524583, #3D3362); color: #fff; }
.bh-credit__cap { font-size: 12px; font-weight: 600; opacity: 0.8; }
.bh-credit__amt { font-size: 30px; font-weight: 800; letter-spacing: -0.01em; }
.bh-credit__track { margin-top: 12px; height: 8px; background: rgba(255,255,255,0.2); border-radius: 999px; overflow: hidden; }
.bh-credit__fill { height: 100%; background: var(--bh-orange); border-radius: 999px; }
.bh-credit__meta { display: flex; justify-content: space-between; font-size: 11px; margin-top: 6px; opacity: 0.85; }
.bh-credit__rows { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.bh-credit__row { display: flex; align-items: center; gap: 12px; }
.bh-credit__dot { width: 32px; height: 32px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.bh-credit__dot--green { background: var(--bh-green-bg); color: var(--bh-green); }
.bh-credit__dot--amber { background: var(--bh-cream); color: var(--bh-orange-ink); }

/* ==========================================================================
   MIDAS
   ========================================================================== */
.bh-midas { background: var(--bh-lilac); scroll-margin-top: 88px; }
.bh-midas__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 96px var(--bh-pad); }
.bh-midas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.bh-midas__copy p { font-size: 16px; line-height: 1.65; color: var(--bh-text-2); margin: 0 0 16px; }
.bh-midas__panel { background: #fff; border: 1px solid var(--bh-line); border-radius: 16px; box-shadow: 0 20px 24px -4px rgba(16,24,40,0.10), 0 8px 8px -4px rgba(16,24,40,0.04); overflow: hidden; }
.bh-midas__panel-head { padding: 18px 20px; border-bottom: 1px solid var(--bh-line); display: flex; align-items: center; justify-content: space-between; }
.bh-midas__panel-title { font-weight: 800; font-size: 15px; color: var(--bh-ink); display: flex; align-items: center; gap: 8px; }
.bh-midas__live { font-size: 11px; font-weight: 700; color: #666; background: var(--bh-line-2); padding: 4px 10px; border-radius: 999px; }
.bh-midas__tabs { padding: 16px 20px; display: flex; gap: 6px; flex-wrap: wrap; border-bottom: 1px solid var(--bh-line-2); }
.bh-midas__tab { border: none; cursor: pointer; font-family: inherit; font-size: 12px; font-weight: 700; padding: 7px 13px; border-radius: 999px; transition: all .15s ease; background: var(--bh-line-2); color: #666; }
.bh-midas__tab.is-active { background: var(--bh-ink); color: #fff; }
.bh-midas__list { padding: 8px 20px 4px; }
.bh-midas__item { padding: 13px 0; border-bottom: 1px solid var(--bh-line-2); }
.bh-midas__item-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.bh-midas__name { font-size: 13px; font-weight: 700; color: var(--bh-text); }
.bh-midas__pill { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.bh-midas__pill--over { color: var(--bh-red); background: var(--bh-red-bg); }
.bh-midas__pill--at { color: var(--bh-green); background: var(--bh-green-bg); }
.bh-midas__barrow { display: flex; align-items: center; gap: 10px; }
.bh-midas__barrow + .bh-midas__barrow { margin-top: 5px; }
.bh-midas__leg { width: 54px; font-size: 11px; color: var(--bh-muted); font-weight: 600; }
.bh-bar { flex: 1; height: 10px; background: var(--bh-line-2); border-radius: 999px; overflow: hidden; }
.bh-bar__fill { height: 100%; border-radius: 999px; transition: width .6s ease; }
.bh-bar__fill--over { background: var(--bh-orange); }
.bh-bar__fill--ok { background: var(--bh-green-2); }
.bh-bar__fill--mkt { background: #D1CCE5; }
.bh-midas__val { width: 78px; text-align: right; font-size: 12px; font-weight: 700; color: var(--bh-text); }
.bh-midas__val--mkt { color: #666; }
.bh-midas__flag { margin: 8px 20px 20px; background: var(--bh-cream); border: 1px solid var(--bh-cream-2); border-radius: 12px; padding: 16px; display: flex; align-items: center; justify-content: space-between; }
.bh-midas__flag-cap { font-size: 12px; color: var(--bh-orange-ink); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.bh-midas__flag-sub { font-size: 13px; color: #666; margin-top: 2px; }
.bh-midas__flag-amt { font-size: 26px; font-weight: 800; color: var(--bh-orange-ink); }

/* ==========================================================================
   SCALED SPEND MANAGEMENT
   ========================================================================== */
.bh-spend { background: #fff; border-top: 1px solid var(--bh-line); }
.bh-spend__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 96px var(--bh-pad); }
.bh-spend__head h2 { font-size: 42px; line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; color: var(--bh-ink); margin: 0 0 16px; }
.bh-spend__head p { font-size: 18px; line-height: 1.6; color: var(--bh-text-2); margin: 0; }
/* all four cards on one row (compact); collapses to 2 then 1 on smaller screens */
.bh-spend__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bh-card { border-radius: 16px; padding: 24px 22px 0; display: flex; flex-direction: column; }
.bh-card--lilac { background: var(--bh-lilac); border: 1px solid var(--bh-lilac-3); }
.bh-card--cream { background: var(--bh-cream); border: 1px solid var(--bh-cream-2); }
.bh-card__tag { display: inline-flex; align-self: flex-start; align-items: center; background: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; padding: 6px 12px; border-radius: 999px; text-transform: uppercase; margin-bottom: 14px; }
.bh-card__tag--purple { color: var(--bh-purple); }
.bh-card__tag--orange { color: var(--bh-orange-ink); }
.bh-card h4 { font-size: 19px; line-height: 1.2; letter-spacing: -0.01em; font-weight: 800; color: var(--bh-ink); margin: 0 0 10px; }
.bh-card p { font-size: 13.5px; line-height: 1.55; color: var(--bh-text-2); margin: 0 0 14px; }
.bh-card .bh-arrow { margin-bottom: 22px; font-size: 13px; }
.bh-card__mock { margin-top: auto; background: #fff; border: 1px solid var(--bh-line); border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: 0 12px 16px -8px rgba(16,24,40,0.10); padding: 14px; }
.bh-card__mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bh-card__mock-title { font-size: 13px; font-weight: 700; color: var(--bh-ink); }
.bh-synced { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--bh-green); background: var(--bh-green-bg); padding: 4px 10px; border-radius: 999px; }
.bh-sys { display: flex; flex-direction: column; gap: 8px; }
.bh-sys__row { display: flex; align-items: center; gap: 12px; border: 1px solid var(--bh-line); border-radius: 10px; padding: 10px 12px; }
.bh-sys__icon { width: 32px; height: 32px; border-radius: 8px; background: var(--bh-lilac-2); color: var(--bh-purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; }
.bh-sys__name { flex: 1; font-size: 13px; font-weight: 700; color: var(--bh-text); }
.bh-sys__kind { font-size: 11px; color: #666; font-weight: 600; }
.bh-captured { display: flex; flex-direction: column; gap: 8px; }
.bh-captured__row { display: flex; align-items: center; gap: 10px; }
.bh-captured__row span.bh-txt { flex: 1; font-size: 13px; color: var(--bh-text); }
.bh-captured__foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px dashed var(--bh-line); margin-top: 6px; padding-top: 12px; }
.bh-chart { display: flex; align-items: flex-end; gap: 10px; height: 96px; padding: 0 4px; }
.bh-chart__col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.bh-chart__bar { width: 100%; border-radius: 6px 6px 0 0; }
.bh-chart__lab { font-size: 10px; color: var(--bh-muted); font-weight: 600; }
.bh-chart__foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--bh-line-2); margin-top: 12px; padding-top: 12px; }

/* card mock — connected systems: name stacked over connector type */
.bh-sys__main { flex: 1; min-width: 0; }
.bh-sys__name { font-size: 13px; font-weight: 700; color: var(--bh-text); }
.bh-sys__kind { font-size: 11px; color: #666; font-weight: 600; margin-top: 1px; }

/* card mock — approval flow as stacked sub-cards */
.bh-subcards { display: flex; flex-direction: column; gap: 8px; }
.bh-subcard { display: flex; align-items: center; gap: 10px; border: 1px solid var(--bh-line); border-radius: 10px; padding: 10px 12px; }
.bh-subcard--pending { border-style: dashed; border-color: #BBB4FE; background: var(--bh-lilac); }
.bh-subcard__dot { width: 26px; height: 26px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.bh-subcard__dot--done { background: var(--bh-green-bg); color: var(--bh-green); }
.bh-subcard__dot--pending { background: #fff; color: var(--bh-violet); border: 1.5px dashed #BBB4FE; }
.bh-subcard__main { flex: 1; min-width: 0; }
.bh-subcard__t { font-size: 12px; font-weight: 700; color: var(--bh-text); }
.bh-subcard__s { font-size: 11px; color: var(--bh-muted); margin-top: 1px; }
.bh-subcard__status { font-size: 10px; font-weight: 700; flex-shrink: 0; }
.bh-subcard__status--done { color: var(--bh-green); }
.bh-subcard__status--pending { color: var(--bh-violet); }

/* card mock — spend-by-entity donut */
.bh-pie-wrap { display: flex; align-items: center; gap: 16px; padding: 6px 0 2px; }
.bh-pie { position: relative; width: 104px; height: 104px; border-radius: 50%; flex-shrink: 0; }
.bh-pie::after { content: ""; position: absolute; inset: 28px; background: #fff; border-radius: 50%; }
.bh-legend { display: flex; flex-direction: column; gap: 7px; flex: 1; min-width: 0; }
.bh-legend__item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--bh-text); }
.bh-legend__dot { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.bh-legend__val { margin-left: auto; font-weight: 700; color: var(--bh-ink); }

/* ==========================================================================
   WHY BORONG (dark)
   ========================================================================== */
.bh-why { background: var(--bh-ink); color: #fff; scroll-margin-top: 88px; position: relative; overflow: hidden; }
.bh-why__swoosh { position: absolute; bottom: -80px; left: -40px; width: 380px; height: 380px; opacity: 0.4; }
.bh-why__inner { position: relative; max-width: var(--bh-maxw); margin: 0 auto; padding: 96px var(--bh-pad); }
.bh-why__head { max-width: 780px; margin-bottom: 48px; }
.bh-why__head h2 { font-size: 42px; line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; margin: 0 0 18px; color: #fff; }
.bh-why__head p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.82); margin: 0; }
.bh-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bh-why__item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 22px; }
.bh-why__icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,133,0,0.18); color: var(--bh-orange-hi); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 22px; }
.bh-why__item p { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.92); margin: 0; font-weight: 500; }

/* ==========================================================================
   INTEGRATIONS
   ========================================================================== */
.bh-intg { background: #fff; scroll-margin-top: 88px; }
.bh-intg__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 96px var(--bh-pad); }
.bh-intg__split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.bh-intg__head { max-width: 520px; }
.bh-intg__head p { font-size: 16px; line-height: 1.65; color: var(--bh-text-2); margin: 0 0 14px; }
.bh-intg__head p:last-child { margin-bottom: 0; }
.bh-intg__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bh-intg__item { display: flex; align-items: center; gap: 14px; border: 1px solid var(--bh-line); border-radius: 12px; padding: 16px 18px; transition: border-color .15s ease, box-shadow .15s ease; }
.bh-intg__item:hover { border-color: #D1CCE5; box-shadow: 0 4px 8px -2px rgba(16,24,40,0.08); }
.bh-intg__icon { width: 40px; height: 40px; border-radius: 9px; background: var(--bh-lilac); color: var(--bh-violet); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.bh-intg__name { font-size: 15px; font-weight: 700; color: var(--bh-ink); }
.bh-intg__kind { font-size: 12px; color: var(--bh-muted); }

/* integration logo "cloud" — bubbles scattered around a central Borong mark */
.bh-intg__cloud { position: relative; height: 440px; z-index: 0; }
.bh-intg__node { position: absolute; transform: translate(-50%, -50%); }
.bh-intg__bub { position: relative; display: flex; align-items: center; justify-content: center; animation-name: bh-bob; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.bh-intg__line { position: absolute; left: 50%; top: 50%; height: 1px; background: linear-gradient(90deg, rgba(42,36,68,0) 0%, rgba(42,36,68,0.16) 50%, rgba(42,36,68,0) 100%); transform-origin: 0 50%; z-index: -1; pointer-events: none; }
.bh-intg__bub img { max-height: var(--s); max-width: 150px; width: auto; height: auto; }
.bh-intg__center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; justify-content: center; }
.bh-intg__center img { width: 154px; height: auto; display: block; }
.bh-intg__cta { margin-top: 12px; }
@keyframes bh-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .bh-intg__bub { animation: none; } }
@media (max-width: 900px) {
  .bh-intg__split { grid-template-columns: 1fr; gap: 8px; }
  .bh-intg__head { max-width: none; }
  .bh-intg__cloud { height: 400px; margin-top: 12px; }
}
@media (max-width: 720px) {
  .bh-intg__cloud { height: 340px; }
  .bh-intg__center img { width: 126px; }
}

/* ==========================================================================
   NEUTRALITY
   ========================================================================== */
.bh-neut { background: var(--bh-mist); border-top: 1px solid var(--bh-line); }
.bh-neut__inner { max-width: 1100px; margin: 0 auto; padding: 96px var(--bh-pad); }
.bh-neut__head { text-align: center; max-width: 880px; margin: 0 auto 44px; }
.bh-neut__head p { font-size: 16px; line-height: 1.6; color: var(--bh-text-2); margin: 0 0 14px; text-wrap: pretty; }
.bh-neut__strong { font-size: 16px !important; color: var(--bh-ink) !important; font-weight: 700; margin: 0 !important; }
.bh-neut__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bh-neut__card { background: #fff; border: 1px solid var(--bh-line); border-radius: 14px; padding: 28px; }
.bh-neut__card--hi { border: 1.5px solid #D1CCE5; }
.bh-neut__icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
.bh-neut__icon--red { background: var(--bh-red-bg); color: var(--bh-red); }
.bh-neut__icon--green { background: var(--bh-green-bg); color: var(--bh-green); }
.bh-neut__card h3 { font-size: 18px; font-weight: 800; color: var(--bh-ink); margin: 0 0 8px; }
.bh-neut__card p { font-size: 15px; line-height: 1.6; color: var(--bh-text-2); margin: 0; }

/* contrast as a "versus" split panel */
.bh-vs { position: relative; display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--bh-line); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 16px -4px rgba(16,24,40,0.06); }
.bh-vs__side { padding: 34px 32px; }
.bh-vs__side--pos { background: var(--bh-lilac); border-left: 1px solid var(--bh-line); }
.bh-vs__icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
.bh-vs__icon--neg { background: var(--bh-red-bg); color: var(--bh-red); }
.bh-vs__icon--pos { background: var(--bh-green-bg); color: var(--bh-green); }
.bh-vs h3 { font-size: 18px; font-weight: 800; color: var(--bh-ink); margin: 0 0 8px; letter-spacing: -0.01em; }
.bh-vs p { font-size: 15px; line-height: 1.6; color: var(--bh-text-2); margin: 0; }
.bh-vs__badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; border-radius: 999px; background: var(--bh-ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; letter-spacing: 0.06em; box-shadow: 0 6px 16px rgba(16,24,40,0.22); border: 3px solid #fff; }
@media (max-width: 720px) {
  .bh-vs { grid-template-columns: 1fr; }
  .bh-vs__side--pos { border-left: none; border-top: 1px solid var(--bh-line); }
}

/* ==========================================================================
   NEWSROOM
   ========================================================================== */
.bh-news { background: var(--bh-lilac); border-top: 1px solid var(--bh-line); }
.bh-news__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 96px var(--bh-pad); }
.bh-news__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.bh-news__foot { display: none; }
.bh-news__foot .bh-btn { background: transparent; border-color: var(--bh-purple); color: var(--bh-purple); }
.bh-news__foot .bh-btn:hover { background: rgba(82,69,131,0.06); }
.bh-news__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bh-news__card { background: #fff; border: 1px solid var(--bh-line); border-radius: 14px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.bh-news__card:hover { transform: translateY(-3px); box-shadow: 0 14px 22px -8px rgba(16,24,40,0.12); }
.bh-news__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bh-lilac-2); }
.bh-news__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bh-news__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.bh-news__body h3 { font-size: 16px; font-weight: 800; line-height: 1.3; letter-spacing: -0.01em; color: var(--bh-ink); margin: 0 0 8px; }
.bh-news__body p { font-size: 13.5px; line-height: 1.55; color: var(--bh-text-2); margin: 0 0 14px; }
.bh-news__more { margin-top: auto; font-size: 13px; font-weight: 700; color: var(--bh-purple); display: inline-flex; align-items: center; gap: 6px; transition: gap .15s ease; }
.bh-news__card:hover .bh-news__more { gap: 10px; }

/* ==========================================================================
   FINAL CTA (dark)
   ========================================================================== */
.bh-cta { background: var(--bh-ink); scroll-margin-top: 88px; position: relative; overflow: hidden; }
.bh-cta__swoosh { position: absolute; top: -40px; right: -30px; width: 420px; height: 420px; opacity: 0.5; animation: bh-float 7s ease-in-out infinite; }
.bh-cta__dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.08) 1.3px, transparent 1.3px); background-size: 24px 24px; }
.bh-cta__inner { position: relative; max-width: 880px; margin: 0 auto; padding: 100px var(--bh-pad); text-align: center; color: #fff; }
.bh-cta h2 { font-size: clamp(32px, 4vw, 46px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 800; margin: 0 0 18px; color: #fff; }
.bh-cta p { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.85); margin: 0 0 34px; text-wrap: pretty; }
.bh-cta__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bh-cta .bh-btn--primary { color: #fff; }
.bh-cta__ctas .bh-btn--ghost { border-color: rgba(255,255,255,0.5); }
.bh-cta__note { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.55); margin: 18px 0 0; text-align: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.bh-footer { background: var(--bh-purple); color: rgba(255,255,255,0.72); }
.bh-footer__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 72px var(--bh-pad) 40px; }
.bh-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px 32px; padding-bottom: 48px; }
.bh-footer__stack { display: flex; flex-direction: column; gap: 48px; }
.bh-footer__brand { max-width: 340px; }
.bh-footer__brand img { height: 64px; width: auto; display: block; filter: brightness(0) invert(1); margin-bottom: 18px; }
.bh-footer__brand p { font-size: 15px; line-height: 1.6; margin: 0; color: rgba(255,255,255,0.78); }
.bh-footer__address { margin: 24px 0 0; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.bh-footer__compliance { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.bh-compliance { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.82); }
.bh-compliance i { font-size: 18px; color: #fff; flex-shrink: 0; }
.bh-footer__col-title { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.01em; margin-bottom: 18px; }
.bh-footer__links { display: flex; flex-direction: column; gap: 12px; }
.bh-footer__link { font-size: 15px; color: rgba(255,255,255,0.72); text-decoration: none; transition: color .15s ease; }
.bh-footer__link:hover { color: #fff; }
.bh-footer__social { display: flex; align-items: center; gap: 10px; margin-top: 24px; }
.bh-soc { width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,0.12); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .15s ease; font-size: 19px; }
.bh-soc:hover { background: rgba(255,255,255,0.24); }
.bh-footer__legal { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.16); flex-wrap: wrap; gap: 12px; }
.bh-footer__legal-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.bh-footer__legal a { font-size: 13px; color: rgba(255,255,255,0.72); text-decoration: none; }
.bh-footer__legal a:hover { color: #fff; }
.bh-footer__copy { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ==========================================================================
   SOLID-NAV PAGES (no dark hero — e.g. coming-soon): header always solid.
   JS also adds .is-solid, but these rules keep it correct without JS.
   ========================================================================== */
.bh-solidnav .bh-header { background: #fff; border-bottom: 1px solid var(--bh-line); box-shadow: 0 2px 10px rgba(16,24,40,0.06); }
.bh-solidnav .bh-nav__btn, .bh-solidnav .bh-nav__link { color: var(--bh-text); }
.bh-solidnav .bh-nav__caret { color: var(--bh-muted); }
.bh-solidnav .bh-burger { color: var(--bh-ink); }
.bh-solidnav .bh-header .bh-logo img { filter: none; }

/* ==========================================================================
   COMING-SOON STUB PAGES
   ========================================================================== */
.bh-coming { position: relative; min-height: calc(100vh - 120px); display: flex; align-items: center; justify-content: center; padding: 160px var(--bh-pad) 110px; background: linear-gradient(180deg, #fff 0%, var(--bh-lilac) 100%); overflow: hidden; }
.bh-coming__dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(82,69,131,0.10) 1.2px, transparent 1.2px); background-size: 22px 22px; -webkit-mask-image: radial-gradient(circle at 50% 38%, #000, transparent 72%); mask-image: radial-gradient(circle at 50% 38%, #000, transparent 72%); }
.bh-coming__inner { position: relative; max-width: 620px; text-align: center; }
.bh-coming h1 { font-size: clamp(32px, 5vw, 50px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 800; color: var(--bh-ink); margin: 6px 0 0; }
.bh-coming__chip { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--bh-orange-ink); background: var(--bh-cream); border: 1px solid var(--bh-cream-2); padding: 7px 14px; border-radius: 999px; }
.bh-coming p { font-size: 17px; line-height: 1.65; color: var(--bh-text-2); margin: 18px auto 28px; max-width: 520px; }
.bh-coming__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .bh-prow__grid, .bh-midas__grid, .bh-neut__grid { grid-template-columns: 1fr; gap: 32px; }
  .bh-prow--rev .bh-prow__media { order: 0; }
  .bh-spend__grid { grid-template-columns: repeat(2, 1fr); }
  .bh-why__grid { grid-template-columns: repeat(2, 1fr); }
  .bh-footer__grid { grid-template-columns: 1fr 1fr; }
  .bh-news__grid { grid-template-columns: repeat(2, 1fr); }
  .bh-mega--rich .bh-mega__inner { grid-template-columns: 240px minmax(0,1fr) 268px; }
  .bh-stats__grid { grid-template-columns: repeat(3, 1fr); gap: 28px 24px; }
  .bh-stat + .bh-stat { border-left: none; padding-left: 0; }
}

@media (max-width: 900px) {
  /* swap desktop mega-nav for the mobile burger */
  .bh-nav, .bh-mega, .bh-nav__actions .bh-nav__link, .bh-nav__actions .bh-nav__cta { display: none; }
  .bh-burger { display: flex; }
  .bh-header__inner { justify-content: space-between; }
}

@media (max-width: 720px) {
  :root { --bh-pad: 20px; }
  .bh-br-d { display: none; }
  .bh-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .bh-stats__grid .bh-stat:nth-child(5) { grid-column: 1 / -1; }
  .bh-stat + .bh-stat { border-left: none; padding-left: 0; }
  .bh-marquees { padding: 0; }
  .bh-marquee__item { height: 80px; padding: 0 26px; }
  .bh-marquee__item img { max-width: 116px; max-height: 48px; }
  .bh-why__grid, .bh-intg__grid, .bh-spend__grid, .bh-news__grid { grid-template-columns: 1fr; }
  .bh-footer__grid { grid-template-columns: 1fr; }
  .bh-h2, .bh-trust__head h2, .bh-products__intro h2, .bh-spend__head h2, .bh-why__head h2 { font-size: 30px; }
  .bh-hero__inner { padding: 110px var(--bh-pad) 40px; }
  .bh-hero__sub { font-size: 17px; }
  .bh-products { padding: 72px var(--bh-pad) 44px; }
  .bh-products .bh-px-head { margin-bottom: 0; }
  .bh-trust__inner, .bh-recog__inner { padding: 56px var(--bh-pad); }
  .bh-midas__inner, .bh-spend__inner, .bh-why__inner, .bh-intg__inner, .bh-neut__inner { padding: 64px var(--bh-pad); }
  .bh-footer__legal { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  /* mobile-only homepage refinements */
  .bh-hero--home { background-image: url('/images/banners/20260629-161138-borong-hero-mobile.png') !important; background-position: center top; }
  .bh-hero__sub--d { display: none; }
  .bh-hero__sub--m { display: block; }
  .bh-recog__list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: none; }
  .bh-recog__item { flex: initial; max-width: none; width: auto; padding: 16px 8px; }
  .bh-recog__desc { max-width: none; }
  .bh-recog__item:last-child { grid-column: 1 / -1; }
  .bh-intg__bub img { max-height: 44px; max-width: 94px; }
  #bh-midas-tabs .bh-midas__tab:last-child { display: none; }
  .bh-midas__flag-amt { font-size: 16px; white-space: nowrap; text-align: right; }
  .bh-news__head .bh-arrow { display: none; }
  .bh-news__foot { display: flex; justify-content: center; margin-top: 28px; }
}

/* ==========================================================================
   PLATFORM PAGE — distinct mock visuals (bh-pf-*), used only on /platform/
   ========================================================================== */

/* Procure — approval matrix (spend band -> required approvers) */
.bh-pf-amx { display: flex; flex-direction: column; gap: 10px; }
.bh-pf-amx__row { position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 12px 14px; border: 1px solid var(--bh-line); border-radius: 10px; background: #fff; }
.bh-pf-amx__row--active { border-color: var(--bh-violet); background: var(--bh-lilac); }
.bh-pf-amx__band { font-size: 12px; font-weight: 800; color: var(--bh-ink); background: var(--bh-lilac-2); padding: 4px 9px; border-radius: 6px; white-space: nowrap; }
.bh-pf-amx__arr { color: var(--bh-muted); font-size: 13px; }
.bh-pf-amx__appr { font-size: 12px; font-weight: 700; color: var(--bh-purple); background: #fff; border: 1px solid var(--bh-line); padding: 4px 9px; border-radius: 999px; }
.bh-pf-amx__hit { font-size: 11px; font-weight: 800; color: var(--bh-violet); margin-left: auto; }
.bh-pf-amx__foot { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--bh-green); margin-top: 14px; }
.bh-pf-amx__foot i { color: var(--bh-green-2); font-size: 15px; }

/* Marketplace — vetted category grid */
.bh-pf-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bh-pf-cat { border: 1px solid var(--bh-line); border-radius: 10px; padding: 14px; background: #fff; }
.bh-pf-cat__icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 10px; }
.bh-pf-cat__icon--orange { background: var(--bh-cream); color: var(--bh-orange); }
.bh-pf-cat__icon--violet { background: var(--bh-lilac-3); color: var(--bh-violet); }
.bh-pf-cat__icon--green { background: var(--bh-green-bg); color: var(--bh-green); }
.bh-pf-cat__icon--purple { background: var(--bh-lilac-2); color: var(--bh-purple); }
.bh-pf-cat__name { font-size: 13px; font-weight: 700; color: var(--bh-ink); }
.bh-pf-cat__count { font-size: 12px; color: var(--bh-muted); margin-top: 2px; }
.bh-pf-cats__foot { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--bh-text-2); margin-top: 14px; }
.bh-pf-cats__foot i { color: var(--bh-violet); font-size: 15px; }

/* Credit — terms selector + repayment timeline */
.bh-pf-terms { display: flex; gap: 8px; margin-bottom: 24px; }
.bh-pf-term { flex: 1; text-align: center; font-size: 12px; font-weight: 700; color: var(--bh-muted); padding: 8px 0; border: 1px solid var(--bh-line); border-radius: 8px; }
.bh-pf-term.is-active { color: #fff; background: var(--bh-violet); border-color: var(--bh-violet); }
.bh-pf-tl { position: relative; display: flex; justify-content: space-between; }
.bh-pf-tl__line { position: absolute; left: 14%; right: 14%; top: 14px; height: 2px; background: linear-gradient(90deg, var(--bh-green-2), var(--bh-violet)); }
.bh-pf-tl__node { position: relative; z-index: 1; width: 48%; text-align: center; }
.bh-pf-tl__dot { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; margin: 0 auto 9px; }
.bh-pf-tl__dot--green { background: var(--bh-green-2); }
.bh-pf-tl__dot--violet { background: var(--bh-violet); }
.bh-pf-tl__cap { font-size: 11px; font-weight: 800; color: var(--bh-muted); text-transform: uppercase; letter-spacing: 0.03em; }
.bh-pf-tl__t { font-size: 12px; color: var(--bh-text-2); margin-top: 3px; }
.bh-pf-tl__v { font-size: 16px; font-weight: 800; color: var(--bh-ink); margin-top: 1px; }
.bh-pf-fin__foot { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--bh-text-2); margin-top: 20px; }
.bh-pf-fin__foot i { color: var(--bh-orange); font-size: 15px; }

/* MIDAS — AI insights feed */
.bh-pf-ai { display: flex; flex-direction: column; gap: 10px; }
.bh-pf-ai__row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--bh-line); background: #fff; }
.bh-pf-ai__ic { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.bh-pf-ai__row--warn { background: #FFFAEB; border-color: #FEDF89; }
.bh-pf-ai__row--warn .bh-pf-ai__ic { background: #FEF0C7; color: #B54708; }
.bh-pf-ai__row--alert { background: var(--bh-red-bg); border-color: #FECDCA; }
.bh-pf-ai__row--alert .bh-pf-ai__ic { background: #FEE4E2; color: var(--bh-red); }
.bh-pf-ai__row--ok { background: var(--bh-green-bg); border-color: #A6F4C5; }
.bh-pf-ai__row--ok .bh-pf-ai__ic { background: #D1FADF; color: var(--bh-green); }
.bh-pf-ai__t { font-size: 13px; font-weight: 700; color: var(--bh-ink); }
.bh-pf-ai__s { font-size: 12px; color: var(--bh-text-2); margin-top: 2px; }
.bh-pf-ai__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: var(--bh-ink); color: #fff; }
.bh-pf-ai__foot-cap { font-size: 13px; font-weight: 700; }
.bh-pf-ai__foot-sub { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.bh-pf-ai__score { font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }

/* Enterprise-grade capabilities — 2-up showcase cards (mock screen + copy) */
.bh-caps { background: #fff; border-top: 1px solid var(--bh-line); }
.bh-caps__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 96px var(--bh-pad); }
.bh-show { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bh-show__card { border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.bh-show__card:hover { transform: translateY(-3px); box-shadow: 0 22px 36px -14px rgba(16,24,40,0.18); }
.bh-show__card--lilac { background: var(--bh-lilac); border: 1px solid var(--bh-lilac-3); }
.bh-show__card--cream { background: var(--bh-cream); border: 1px solid var(--bh-cream-2); }
.bh-show__screen { order: 1; padding: 0 30px 30px; }
.bh-show__screen .bh-card__mock { margin-top: 0; border-radius: 14px; }
.bh-show__body { padding: 32px 30px 18px; }
.bh-show__body h4 { font-size: 21px; font-weight: 800; letter-spacing: -0.01em; color: var(--bh-ink); margin: 0 0 10px; }
.bh-show__body p { font-size: 15px; line-height: 1.6; color: var(--bh-text-2); margin: 0 0 16px; }

/* mock internals — shared by platform product rows and capability showcase */
.bh-pf-po { display: flex; flex-direction: column; }
.bh-pf-po__step { display: flex; align-items: center; gap: 10px; }
.bh-pf-po__ic { width: 32px; height: 32px; border-radius: 8px; background: var(--bh-lilac-2); color: var(--bh-purple); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.bh-pf-po__ic--v { background: var(--bh-lilac-3); color: var(--bh-violet); }
.bh-pf-po__tx { font-size: 12px; font-weight: 700; color: var(--bh-ink); }
.bh-pf-po__conn { width: 2px; height: 13px; background: var(--bh-line); margin: 2px 0 2px 15px; }
.bh-pf-po__foot { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--bh-text-2); margin-top: 12px; }
.bh-pf-po__foot i { color: var(--bh-violet); font-size: 14px; }

.bh-pf-gov__bar { display: flex; height: 12px; border-radius: 999px; overflow: hidden; background: var(--bh-line-2); margin-bottom: 10px; }
.bh-pf-gov__seg--gov { background: var(--bh-orange); }
.bh-pf-gov__seg--mav { background: var(--bh-line); }
.bh-pf-gov__legend { display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; color: var(--bh-text-2); }
.bh-pf-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px; vertical-align: middle; }
.bh-pf-gov__rows { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.bh-pf-gov__row { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--bh-text); font-weight: 600; }
.bh-pf-gov__row i { font-size: 15px; }

.bh-pf-catl { display: flex; flex-direction: column; gap: 8px; }
.bh-pf-catl__row { display: flex; align-items: center; justify-content: space-between; padding: 9px 11px; border: 1px solid var(--bh-line); border-radius: 8px; }
.bh-pf-catl__n { font-size: 12px; font-weight: 600; color: var(--bh-text); }
.bh-pf-catl__p { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 800; color: var(--bh-purple); }
.bh-pf-catl__p i { font-size: 12px; color: var(--bh-violet); }
.bh-pf-catl__foot { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--bh-text-2); margin-top: 12px; }
.bh-pf-catl__foot i { color: var(--bh-red); }

.bh-pf-bars { display: flex; align-items: flex-end; gap: 8px; height: 88px; padding-top: 4px; }
.bh-pf-bars__col { flex: 1; display: flex; align-items: flex-end; height: 100%; }
.bh-pf-bars__bar { width: 100%; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--bh-violet-2), var(--bh-purple)); }
.bh-pf-bars__bar--hi { background: linear-gradient(180deg, var(--bh-orange-hi), var(--bh-orange)); }
.bh-pf-bars__foot { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 700; color: var(--bh-text-2); margin-top: 10px; }
.bh-pf-bars__foot i { font-size: 13px; vertical-align: middle; }

@media (max-width: 860px) {
  .bh-show { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bh-pf-cats { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PLATFORM SUB-PAGES (Procure, Marketplace, Credit, MIDAS, …) — shared
   ========================================================================== */

/* split hero (copy + mock) */
.bh-hero--split .bh-hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.bh-hero--split .bh-hero__content { max-width: 620px; }
.bh-hero__media { position: relative; }
.bh-hero__media .bh-mock { box-shadow: 0 32px 64px -24px rgba(0,0,0,0.5); }

/* generic content section */
.bh-sec { background: #fff; border-top: 1px solid var(--bh-line); }
.bh-sec--lilac { background: var(--bh-lilac); border-top: none; }
.bh-sec__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 96px var(--bh-pad); }
.bh-sec__note { max-width: 880px; margin: 36px auto 0; text-align: center; font-size: 16px; line-height: 1.7; color: var(--bh-text-2); text-wrap: pretty; }
.bh-sec__note em { font-style: italic; color: var(--bh-ink); font-weight: 600; }

/* problem cards */
.bh-probs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }
.bh-prob { background: #fff; border: 1px solid var(--bh-line); border-radius: 14px; padding: 24px; }
.bh-prob__icon { width: 46px; height: 46px; border-radius: 11px; background: var(--bh-red-bg); color: var(--bh-red); display: flex; align-items: center; justify-content: center; font-size: 23px; margin-bottom: 14px; }
.bh-prob h4 { font-size: 16px; font-weight: 800; color: var(--bh-ink); margin: 0 0 6px; }
.bh-prob p { font-size: 14px; line-height: 1.55; color: var(--bh-text-2); margin: 0; }

/* purchase-order doc mock */
.bh-podoc__lines { border-top: 1px solid var(--bh-line); }
.bh-podoc__line { display: flex; justify-content: space-between; font-size: 13px; padding: 9px 0; border-bottom: 1px solid var(--bh-line-2); color: var(--bh-text); }
.bh-podoc__line span:last-child { font-weight: 700; }
.bh-podoc__total { display: flex; justify-content: space-between; font-size: 14px; font-weight: 800; color: var(--bh-ink); padding: 12px 0 4px; }
.bh-podoc__foot { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--bh-green); margin-top: 10px; }
.bh-podoc__foot i { color: var(--bh-green-2); font-size: 15px; }

/* audit-trail mock */
.bh-audit { margin-bottom: 16px; }
.bh-audit__row { display: flex; gap: 10px; padding-bottom: 14px; position: relative; }
.bh-audit__row:not(:last-child)::before { content: ""; position: absolute; left: 5px; top: 14px; bottom: 0; width: 2px; background: var(--bh-line); }
.bh-audit__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--bh-green-2); margin-top: 2px; flex-shrink: 0; position: relative; z-index: 1; }
.bh-audit__dot--live { background: var(--bh-violet); box-shadow: 0 0 0 4px var(--bh-lilac-3); }
.bh-audit__t { font-size: 12.5px; font-weight: 700; color: var(--bh-ink); }
.bh-audit__s { font-size: 11px; color: var(--bh-muted); }
.bh-audit__bar { height: 8px; border-radius: 999px; background: var(--bh-line-2); overflow: hidden; margin: 8px 0 6px; }
.bh-audit__bar > span { display: block; height: 100%; background: var(--bh-violet); border-radius: 999px; }
.bh-audit__budget { display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; color: var(--bh-text-2); }

/* ROI calculator */
.bh-roi { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 48px auto 0; }
.bh-roi__inputs { background: #fff; border: 1px solid var(--bh-line); border-radius: 18px; padding: 28px; }
.bh-roi__field { margin-bottom: 18px; }
.bh-roi__field label { display: block; font-size: 13px; font-weight: 700; color: var(--bh-ink); margin-bottom: 7px; }
.bh-roi__field input { width: 100%; padding: 12px 14px; border: 1px solid var(--bh-line); border-radius: 10px; font-size: 15px; font-weight: 600; color: var(--bh-ink); font-family: inherit; background: #fff; }
.bh-roi__field input:focus { outline: none; border-color: var(--bh-violet); box-shadow: 0 0 0 3px var(--bh-lilac-3); }
.bh-roi__assume { font-size: 11.5px; line-height: 1.5; color: var(--bh-muted); margin: 6px 0 0; }
.bh-roi__results { background: var(--bh-ink); border-radius: 18px; padding: 28px; color: #fff; display: flex; flex-direction: column; }
.bh-roi__big-cap { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.7); }
.bh-roi__big-val { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; line-height: 1.1; }
.bh-roi__metrics { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.14); border-bottom: 1px solid rgba(255,255,255,0.14); }
.bh-roi__metric { display: flex; flex-direction: column; }
.bh-roi__metric-v { font-size: 22px; font-weight: 800; color: #fff; }
.bh-roi__metric-l { font-size: 12.5px; color: rgba(255,255,255,0.66); margin-top: 2px; }
.bh-roi__cta { width: 100%; justify-content: center; margin-top: auto; }

/* related links strip */
.bh-related { background: var(--bh-mist); border-top: 1px solid var(--bh-line); }
.bh-related__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 40px var(--bh-pad); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.bh-related__label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bh-muted); }
.bh-related__links { display: flex; gap: 10px; flex-wrap: wrap; }
.bh-related__links a { font-size: 13px; font-weight: 700; color: var(--bh-purple); background: #fff; border: 1px solid var(--bh-line); padding: 8px 14px; border-radius: 999px; text-decoration: none; transition: border-color .15s ease, color .15s ease; }
.bh-related__links a:hover { border-color: var(--bh-violet); color: var(--bh-violet); }

@media (max-width: 900px) {
  .bh-hero--split .bh-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .bh-hero--split .bh-hero__content { max-width: none; }
  .bh-probs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .bh-roi { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .bh-probs { grid-template-columns: 1fr; }
}

/* calculator slider fields (shared by all sub-page calculators) */
.bh-roi__field--slider { margin-bottom: 22px; }
.bh-roi__field-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.bh-roi__field-head label { margin-bottom: 0; }
.bh-roi__field-val { font-size: 14px; font-weight: 800; color: var(--bh-violet); white-space: nowrap; }
.bh-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--bh-lilac-2); outline: none; cursor: pointer; }
.bh-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--bh-violet); border: 3px solid #fff; box-shadow: 0 1px 4px rgba(16,24,40,0.28); cursor: pointer; }
.bh-range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--bh-violet); border: 3px solid #fff; box-shadow: 0 1px 4px rgba(16,24,40,0.28); cursor: pointer; }

/* credit tier cards */
.bh-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.bh-tier { background: #fff; border: 1px solid var(--bh-line); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; }
.bh-tier--mid { border-color: var(--bh-lilac-3); box-shadow: 0 16px 30px -14px rgba(105,56,239,0.25); }
.bh-tier__badge { align-self: flex-start; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bh-purple); background: var(--bh-lilac-2); padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; }
.bh-tier h4 { font-size: 18px; font-weight: 800; color: var(--bh-ink); margin: 0 0 8px; }
.bh-tier p { font-size: 14.5px; line-height: 1.6; color: var(--bh-text-2); margin: 0; }

/* supported-systems chips */
.bh-syschips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
.bh-syschip { font-size: 13px; font-weight: 700; color: var(--bh-ink); background: var(--bh-lilac); border: 1px solid var(--bh-line); padding: 8px 14px; border-radius: 10px; }

@media (max-width: 860px) {
  .bh-tiers { grid-template-columns: 1fr; }
}

/* generic 3-up feature cards */
.bh-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.bh-feats--2 { grid-template-columns: repeat(2, 1fr); }
.bh-feat { background: #fff; border: 1px solid var(--bh-line); border-radius: 16px; padding: 28px; }
.bh-feat__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--bh-lilac-2); color: var(--bh-purple); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.bh-feat__icon--orange { background: var(--bh-cream); color: var(--bh-orange); }
.bh-feat__icon--green { background: var(--bh-green-bg); color: var(--bh-green); }
.bh-feat h4 { font-size: 17px; font-weight: 800; color: var(--bh-ink); margin: 0 0 8px; }
.bh-feat p { font-size: 14.5px; line-height: 1.6; color: var(--bh-text-2); margin: 0; }
.bh-feat p + p { margin-top: 12px; }

/* ===== audience tabs (Procurement / Buyers / Sellers) ===== */
.bh-aud { background: var(--bh-mist); border-top: 1px solid var(--bh-line); }
.bh-aud__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 84px var(--bh-pad); }
.bh-aud__segwrap { display: flex; justify-content: center; margin-bottom: 30px; }
.bh-seg { display: inline-flex; gap: 4px; padding: 5px; background: var(--bh-lilac); border: 1px solid var(--bh-lilac-3); border-radius: 999px; }
.bh-seg__btn { border: none; background: transparent; cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 700; color: var(--bh-text-2); padding: 10px 28px; border-radius: 999px; transition: color .15s ease, background .15s ease, box-shadow .15s ease; }
.bh-seg__btn:hover { color: var(--bh-ink); }
.bh-seg__btn.is-active { background: var(--bh-purple); color: #fff; box-shadow: 0 8px 16px -8px rgba(82,69,131,0.55); }
.bh-aud__panel { display: none; }
.bh-aud__panel.is-active { display: block; }
.bh-aud__head { text-align: center; max-width: 1040px; margin: 0 auto 44px; }
.bh-aud__eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--bh-orange-ink); margin-bottom: 14px; }
.bh-aud__title { font-size: clamp(26px, 2.7vw, 34px); line-height: 1.16; letter-spacing: -0.02em; font-weight: 800; color: var(--bh-purple); margin: 0; text-wrap: balance; }
.bh-aud .bh-feats { margin-top: 0; }
.bh-feat__icon--img { overflow: hidden; }
.bh-feat__icon--img img { width: 32px; height: 32px; object-fit: contain; display: block; }
.bh-pill--mini { margin: 0 0 0 4px; padding: 3px 9px; font-size: 11px; vertical-align: middle; }
.bh-arrow--orange { color: var(--bh-orange-ink); }
/* Procurement Hub menu: bold links + spacing to match the Credit menu */
[data-mega="procurement"] .bh-mega__simplecol { gap: 20px; }
[data-mega="procurement"] .bh-mega-link { font-weight: 700; color: var(--bh-ink); }
[data-mega="procurement"] .bh-mega-link--head { font-weight: 800; }
/* audience cards: bottom-align "View more" with a clear gap below the copy */
.bh-aud .bh-feat { display: flex; flex-direction: column; }
.bh-aud .bh-feat .bh-arrow { margin-top: auto; padding-top: 22px; }

/* marketplace category tiles */
.bh-mktcats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 44px; }
.bh-mktcat { background: #fff; border: 1px solid var(--bh-line); border-radius: 14px; padding: 22px 16px; text-align: center; }
.bh-mktcat__icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 12px; background: var(--bh-lilac-2); color: var(--bh-purple); }
.bh-mktcat__name { font-size: 13.5px; font-weight: 700; color: var(--bh-ink); line-height: 1.3; }

/* numbered process steps */
.bh-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 46px; }
.bh-step { display: flex; gap: 16px; background: #fff; border: 1px solid var(--bh-line); border-radius: 16px; padding: 24px; }
.bh-step__n { width: 38px; height: 38px; border-radius: 50%; background: var(--bh-violet); color: #fff; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bh-step h4 { font-size: 16px; font-weight: 800; color: var(--bh-ink); margin: 2px 0 6px; }
.bh-step p { font-size: 14px; line-height: 1.55; color: var(--bh-text-2); margin: 0; }

@media (max-width: 860px) {
  .bh-feats { grid-template-columns: 1fr; }
  .bh-mktcats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .bh-steps { grid-template-columns: 1fr; }
}

/* verbatim prose + bullet list (exact-copy sections) */
.bh-prose { max-width: 820px; margin: 32px auto 0; }
.bh-prose p { font-size: 16px; line-height: 1.75; color: var(--bh-text-2); margin: 0 0 18px; text-wrap: pretty; }
.bh-prose p:last-child { margin-bottom: 0; }
.bh-prose em { font-style: italic; color: var(--bh-ink); font-weight: 600; }
.bh-prose h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; color: var(--bh-ink); margin: 32px 0 8px; }
.bh-prose h3:first-child { margin-top: 0; }
.bh-prose ul { margin: 0; padding: 0; list-style: none; }
.bh-prose ul li { font-size: 15px; line-height: 1.6; color: var(--bh-text-2); margin-bottom: 10px; padding-left: 20px; position: relative; }
.bh-prose ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--bh-violet); }

/* Category hub grid (3-col) */
.bh-catgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.bh-catcard { display: flex; flex-direction: column; gap: 8px; padding: 22px; border: 1px solid var(--bh-line); border-radius: 14px; background: #fff; text-decoration: none; transition: transform .25s var(--bh-ease), box-shadow .25s var(--bh-ease), border-color .25s var(--bh-ease); }
.bh-catcard:hover { transform: translateY(-3px); box-shadow: 0 16px 28px -14px rgba(16,24,40,.16); border-color: var(--bh-lilac-3); }
.bh-catcard__icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; background: var(--bh-lilac-2); color: var(--bh-purple); flex-shrink: 0; }
.bh-catcard__name { font-size: 15px; font-weight: 800; color: var(--bh-ink); }
.bh-catcard__desc { font-size: 13px; line-height: 1.55; color: var(--bh-text-2); margin: 0; }
.bh-catcard__more { margin-top: auto; padding-top: 8px; font-size: 13px; font-weight: 700; color: var(--bh-violet); display: inline-flex; align-items: center; gap: 6px; }
.bh-catcard:hover .bh-catcard__more i { transform: translateX(3px); }
.bh-catcard__more i { transition: transform .2s var(--bh-ease); }

/* Two-column bullet list for "What You Can Source" */
.bh-catlist { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; }
.bh-catlist li { font-size: 15px; line-height: 1.55; color: var(--bh-text-2); padding-left: 18px; position: relative; }
.bh-catlist li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--bh-violet); flex-shrink: 0; }

@media (max-width: 900px) {
  .bh-catgrid { grid-template-columns: 1fr 1fr; }
  .bh-catlist { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bh-catgrid { grid-template-columns: 1fr; }
}
.bh-blist { max-width: 820px; margin: 36px auto 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.bh-blist li { list-style: none; display: flex; gap: 12px; font-size: 15.5px; line-height: 1.65; color: var(--bh-text-2); }
.bh-blist li i { color: var(--bh-violet); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.bh-blist li strong { color: var(--bh-ink); font-weight: 700; }

/* ==========================================================================
   CRAFT POLISH (design-taste skill — brand-preserving)
   Keyboard focus states, tactile feedback, and motion discipline only.
   No palette / layout / nav / copy changes.
   ========================================================================== */

/* premium easing on the main card hover transitions (keeps existing lifts) */
.bh-news__card, .bh-show__card, .bh-cap, .bh-related__links a, .bh-mktcat,
.bh-prob, .bh-feat, .bh-tier { transition: transform .25s var(--bh-ease), box-shadow .25s var(--bh-ease), border-color .25s var(--bh-ease); }

/* keyboard focus-visible rings (accessibility) */
.bh-arrow:focus-visible,
.bh-related__links a:focus-visible,
.bh-news__card:focus-visible,
.bh-show__card:focus-visible,
.bh-nav__btn:focus-visible,
.bh-footer a:focus-visible,
.bh-range:focus-visible { outline: none; box-shadow: var(--bh-focus); border-radius: 8px; }

/* tactile press feedback on interactive cards/links that lift on hover */
.bh-news__card:active, .bh-related__links a:active { transform: translateY(0); }

/* motion discipline — honour reduced-motion across the whole design system */
@media (prefers-reduced-motion: reduce) {
  .bh *, .bh *::before, .bh *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   PLATFORM (reimagined) — editorial layout informed by design-taste skill.
   Brand-preserving (violet/lilac kept); scoped to /platform/.
   ========================================================================== */

/* hero module bento (sits in the split hero's media column, on dark) */
.bh-px-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bh-px-module { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 18px; transition: transform .25s var(--bh-ease), background .25s var(--bh-ease); }
.bh-px-module:hover { transform: translateY(-3px); background: rgba(255,255,255,0.1); }
.bh-px-module__ic { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; background: rgba(255,255,255,0.12); color: #fff; margin-bottom: 12px; }
.bh-px-module__n { font-size: 14px; font-weight: 800; color: #fff; }
.bh-px-module__d { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 3px; line-height: 1.4; }

/* editorial section wrapper + left-aligned header with index */
.bh-px-sec { background: #fff; border-top: 1px solid var(--bh-line); }
.bh-px-sec--lilac { background: var(--bh-lilac); border-top: none; }
.bh-px-sec__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 96px var(--bh-pad); }
.bh-px-head { max-width: 860px; margin: 0 auto 52px; text-align: center; }
.bh-px-head h2 { font-size: 40px; line-height: 1.12; letter-spacing: -0.025em; font-weight: 800; color: var(--bh-ink); margin: 0; text-wrap: balance; }
.bh-px-head__body { max-width: 760px; margin: 18px auto 0; }
.bh-px-head__body p { font-size: 16px; line-height: 1.7; color: var(--bh-text-2); margin: 0 0 16px; text-wrap: pretty; }
.bh-px-head__body p:last-child { margin-bottom: 0; }
.bh-px-head__body:has(p + p) { text-align: left; } /* multi-paragraph bodies stay left for readability */
.bh-px-head__body .bh-neut__strong { color: var(--bh-ink); font-weight: 700; }
.bh-px-head--solo h2 { max-width: 760px; margin: 0 auto; }

/* divided comparison (anti-card: rules + negative space, no boxes) */
.bh-px-vs { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--bh-line); }
.bh-px-vs__col { padding: 28px 32px 4px; }
.bh-px-vs__col + .bh-px-vs__col { border-left: 1px solid var(--bh-line); }
.bh-px-vs__tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.bh-px-vs__tag--neg { color: var(--bh-muted); }
.bh-px-vs__tag--pos { color: var(--bh-green); }
.bh-px-vs__tag--pos i { font-size: 16px; }
.bh-px-vs h3 { font-size: 18px; font-weight: 800; color: var(--bh-ink); margin: 12px 0 8px; }
.bh-px-vs p { font-size: 14.5px; line-height: 1.6; color: var(--bh-text-2); margin: 0; }

/* capabilities bento (asymmetric: wide tiles carry a mock, compact tiles are lean) */
.bh-px-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bh-px-tile { grid-column: span 3; background: #fff; border: 1px solid var(--bh-line); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; text-decoration: none; transition: transform .25s var(--bh-ease), box-shadow .25s var(--bh-ease); }
.bh-px-tile--w4 { grid-column: span 4; }
.bh-px-tile--w2 { grid-column: span 2; }
.bh-px-tile--lilac { background: var(--bh-lilac); border-color: var(--bh-lilac-3); }
.bh-px-tile--cream { background: var(--bh-cream); border-color: var(--bh-cream-2); }
.bh-px-tile:hover { transform: translateY(-3px); box-shadow: 0 22px 36px -16px rgba(16,24,40,0.16); }
.bh-px-tile__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--bh-lilac-2); color: var(--bh-purple); display: flex; align-items: center; justify-content: center; font-size: 23px; margin-bottom: 16px; }
.bh-px-tile__ic--orange { background: #fff; color: var(--bh-orange); }
.bh-px-tile h4 { font-size: 18px; font-weight: 800; color: var(--bh-ink); margin: 0 0 8px; letter-spacing: -0.01em; }
.bh-px-tile p { font-size: 14.5px; line-height: 1.6; color: var(--bh-text-2); margin: 0 0 16px; }
.bh-px-tile__link { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--bh-violet); }
.bh-px-tile:hover .bh-px-tile__link i { transform: translateX(3px); }
.bh-px-tile__link i { transition: transform .2s var(--bh-ease); }
.bh-px-tile__mock { margin-top: 4px; margin-bottom: 18px; }
.bh-px-tile__mock .bh-card__mock { margin-top: 0; border-radius: 14px; }

@media (max-width: 900px) {
  .bh-px-head { margin-bottom: 36px; }
  .bh-px-head h2 { font-size: 32px; }
  .bh-px-vs { grid-template-columns: 1fr; }
  .bh-px-vs__col + .bh-px-vs__col { border-left: none; border-top: 1px solid var(--bh-line); }
  .bh-px-bento { grid-template-columns: 1fr; }
  .bh-px-tile, .bh-px-tile--w4, .bh-px-tile--w2 { grid-column: auto; }
}

/* ==========================================================================
   INDUSTRIES (hub + sector sub-pages) — distinct from Platform pages.
   Centered text-forward hero, sector card grid, product strip. Brand-kept.
   ========================================================================== */

/* centered text-forward hero (no split mock) — the Industries signature */
.bh-hero--center .bh-hero__inner { display: flex; justify-content: center; }
.bh-hero--center .bh-hero__content { max-width: 820px; text-align: center; }
.bh-hero--center .bh-hero__sub { margin-left: auto; margin-right: auto; }
.bh-hero--center .bh-hero__ctas { justify-content: center; }
.bh-hero--center .bh-eyebrow { display: inline-flex; }

/* sector card grid (hub "Industries We Serve") */
.bh-indgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 46px; }
.bh-indcard { display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--bh-line); border-radius: 18px; background: #fff; text-decoration: none; transition: transform .25s var(--bh-ease), box-shadow .25s var(--bh-ease), border-color .25s var(--bh-ease); }
.bh-indcard:hover { transform: translateY(-4px); box-shadow: 0 24px 42px -18px rgba(16,24,40,0.18); border-color: var(--bh-lilac-3); }
.bh-indcard__icon { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; background: var(--bh-lilac-2); color: var(--bh-purple); }
.bh-indcard__icon--orange { background: var(--bh-cream); color: var(--bh-orange); }
.bh-indcard__icon--green { background: var(--bh-green-bg); color: var(--bh-green); }
.bh-indcard h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; color: var(--bh-ink); margin: 0 0 8px; }
.bh-indcard p { font-size: 14.5px; line-height: 1.6; color: var(--bh-text-2); margin: 0 0 18px; }
.bh-indcard__link { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--bh-violet); }
.bh-indcard:hover .bh-indcard__link i { transform: translateX(3px); }
.bh-indcard__link i { transition: transform .2s var(--bh-ease); }

/* product strip ("Borong products for this sector") */
.bh-prodstrip { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 44px; }
.bh-prodstrip__card { display: flex; flex-direction: column; gap: 9px; padding: 22px; border: 1px solid var(--bh-line); border-radius: 14px; background: #fff; text-decoration: none; transition: transform .25s var(--bh-ease), box-shadow .25s var(--bh-ease), border-color .25s var(--bh-ease); }
.bh-prodstrip__card:hover { transform: translateY(-3px); box-shadow: 0 16px 28px -14px rgba(16,24,40,0.16); border-color: var(--bh-lilac-3); }
.bh-prodstrip__ic { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 19px; background: var(--bh-lilac-2); color: var(--bh-purple); }
.bh-prodstrip__name { font-size: 15px; font-weight: 800; color: var(--bh-ink); }
.bh-prodstrip__d { font-size: 13px; line-height: 1.55; color: var(--bh-text-2); }
.bh-prodstrip__more { margin-top: auto; padding-top: 4px; font-size: 13px; font-weight: 700; color: var(--bh-violet); display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 900px) {
  .bh-indgrid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   INDUSTRIES — sector carousel + sibling "Explore" pill row
   ========================================================================== */

/* sector carousel: left edge sits on the section gutter, right edge bleeds
   to the viewport so cards clip at the screen edge. Lives inside the padded
   .bh-px-sec__inner, so the left aligns with the heading above it. */
.bh-indcar { margin-top: 28px; }
.bh-indcar__track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-right: calc(50% - 50vw); padding: 4px var(--bh-pad) 6px 0; }
.bh-indcar__track::-webkit-scrollbar { display: none; }
.bh-indcar__track .bh-indcard { flex: 0 0 540px; scroll-snap-align: start; }
.bh-indcar__ctrls { display: flex; justify-content: flex-start; gap: 10px; margin-top: 28px; }
.bh-indcar__btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--bh-line); background: #fff; color: var(--bh-ink); display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: border-color .2s var(--bh-ease), color .2s var(--bh-ease), transform .15s var(--bh-ease); }
.bh-indcar__btn:hover { border-color: var(--bh-violet); color: var(--bh-violet); }
.bh-indcar__btn:active { transform: translateY(1px); }
.bh-indcar__btn:focus-visible { outline: none; box-shadow: var(--bh-focus); }

/* sibling "Explore industries" pill row (current page disabled, fixed order) */
/* "Trusted by" logo band (industry sub-page hero support) */
.bh-trustrow { background: #fff; border-bottom: 1px solid var(--bh-line); }
.bh-trustrow__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 26px var(--bh-pad); display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.bh-trustrow__label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bh-muted); }
.bh-trustrow__logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.bh-trustrow__logos img { height: 30px; width: auto; opacity: 0.82; }

.bh-explore { background: var(--bh-mist); border-top: 1px solid var(--bh-line); }
.bh-explore__inner { max-width: var(--bh-maxw); margin: 0 auto; padding: 40px var(--bh-pad); display: flex; flex-direction: column; align-items: center; gap: 18px; }
.bh-explore__label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bh-muted); text-align: center; }
.bh-explore__pills { display: flex; flex-wrap: nowrap; gap: 10px; width: max-content; max-width: 100%; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-top: 4px; padding-bottom: 4px; }
.bh-explore__pills::-webkit-scrollbar { display: none; }
.bh-explore__pill { flex: 0 0 auto; white-space: nowrap; font-size: 14px; font-weight: 700; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--bh-line); background: #fff; color: var(--bh-purple); text-decoration: none; transition: border-color .2s var(--bh-ease), color .2s var(--bh-ease), transform .15s var(--bh-ease); }
.bh-explore__pill:hover { border-color: var(--bh-violet); color: var(--bh-violet); transform: translateY(-1px); }
.bh-explore__pill.is-current { background: var(--bh-ink); color: #fff; border-color: var(--bh-ink); cursor: default; pointer-events: none; }

/* Nav: "Explore →" cap link rendered as an orange CTA */
.bh-cap--cta .bh-cap__t { color: var(--bh-orange-ink); }
.bh-cap--cta:hover .bh-cap__t { color: var(--bh-orange); }
.bh-macc__link--cta { color: var(--bh-orange-ink); font-weight: 700; }

@media (max-width: 560px) {
  .bh-indcar__track .bh-indcard { flex-basis: 80vw; }
  /* Pills break out of the inner's gutter so the row spans the full screen,
     clips at the right edge, and scrolls; first pill stays on the gutter.
     align-self:stretch gives a definite width so overflow-x can scroll. */
  .bh-explore__pills { align-self: stretch; width: auto; max-width: none; margin-left: calc(-1 * var(--bh-pad)); margin-right: calc(-1 * var(--bh-pad)); padding-left: var(--bh-pad); padding-right: var(--bh-pad); justify-content: flex-start; }
}

/* ===== COMPARISON TABLE (why-borong/vs-resellers) ===== */
.bh-compare-wrap { overflow-x: auto; margin: 40px 0 0; border-radius: 14px; border: 1px solid var(--bh-line); }
.bh-compare { width: 100%; border-collapse: collapse; font-size: 14px; }
.bh-compare thead th { background: var(--bh-lilac-2); color: var(--bh-purple); font-weight: 800; font-size: 13px; letter-spacing: .01em; text-align: left; padding: 13px 18px; border-bottom: 2px solid var(--bh-line); }
.bh-compare thead th:first-child { color: var(--bh-ink); border-radius: 14px 0 0 0; }
.bh-compare thead th:last-child { border-radius: 0 14px 0 0; }
.bh-compare tbody td { padding: 13px 18px; border-bottom: 1px solid var(--bh-line); vertical-align: top; line-height: 1.55; color: var(--bh-text-2); font-size: 14px; }
.bh-compare tbody td:first-child { font-weight: 700; color: var(--bh-ink); font-size: 13px; white-space: nowrap; }
.bh-compare tbody tr:nth-child(even) td { background: #fafaf9; }
.bh-compare tbody tr:last-child td { border-bottom: none; }

/* ===== QUOTE CALLOUT ===== */
.bh-quote { border-left: 3px solid var(--bh-violet); padding: 8px 20px; margin: 32px 0; }
.bh-quote p { font-size: 17px; font-style: italic; color: var(--bh-ink); line-height: 1.6; font-weight: 500; margin: 0; }
