/* BizHeroFor — shared chrome + form re-skin
   Extracted from new homepage style. Keep in sync with index.php inline styles. */

:root {
  --blue: #2565C7;
  --blue-dark: #1a4a9c;
  --blue-soft: #e8f0fc;
  --blue-wash: #f4f8fd;
  --orange: #f59f3e;
  --orange-warm: #f8b964;
  --yellow: #ffd466;
  --coral: #f47b6b;
  --mint: #7cc9a0;
  --ink: #1a2332;
  --ink-soft: #5a6578;
  --muted: #8895a8;
  --rule: #e5ebf2;
  --white: #ffffff;
  --cream: #fbf6eb;
}

/* ---- Base ---- */
body.bh-page {
  font-family: 'Poppins', sans-serif !important;
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* ---- Nav ---- */
.bh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}
.bh-logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.bh-logo-mark {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
}
.bh-logo span { color: var(--orange); }
.bh-nav-links {
  display: flex;
  gap: 2.3rem;
  align-items: center;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.bh-nav-links a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.bh-nav-links a:hover { color: var(--blue); }
.bh-nav-support { color: var(--muted); font-size: 0.85rem; }
.bh-nav-support strong { color: var(--blue); font-weight: 600; }
.bh-nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bh-nav-cta:hover { background: #e88d2a; color: var(--white) !important; }
.bh-nav-login {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.bh-nav-login:hover { background: var(--blue-soft); color: var(--blue); }

/* Hamburger */
.bh-hamburger {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s;
}
.bh-hamburger:hover { background: var(--blue-soft); }
.bh-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.bh-hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.bh-hamburger.is-open span:nth-child(2) { opacity: 0; }
.bh-hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Footer ---- */
.bh-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 4rem 3rem 2rem;
  font-family: 'Poppins', sans-serif;
}
.bh-footer-inner { max-width: 1240px; margin: 0 auto; }
.bh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bh-footer .bh-logo { color: var(--white); }
.bh-footer .bh-logo span { color: var(--orange); }
.bh-footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 32ch;
}
.bh-footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.bh-footer-col ul { list-style: none; padding: 0; margin: 0; }
.bh-footer-col li { margin-bottom: 0.7rem; }
.bh-footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.bh-footer-col a:hover { color: var(--orange); }
.bh-footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---- Auth/contact page wrapper ---- */
.bh-auth-shell {
  min-height: calc(100vh - 80px);
  background: linear-gradient(180deg, var(--blue-wash) 0%, var(--white) 60%);
  padding: 4rem 1.5rem;
  font-family: 'Poppins', sans-serif;
}
.bh-auth-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 3rem 2.5rem;
  box-shadow: 0 30px 60px -30px rgba(37, 101, 199, 0.15);
}
.bh-auth-card.wide { max-width: 1100px; }
.bh-auth-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 1rem;
}
.bh-auth-card h1 {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.bh-auth-card .lead {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 2rem;
}

/* ---- Form re-skin (overrides Bootstrap inside .bh-auth-card / .bh-form-skin) ---- */
.bh-form-skin label,
.bh-auth-card label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.bh-form-skin .astrix,
.bh-auth-card .astrix { color: var(--coral); margin-left: 2px; }
.bh-form-skin .form-control,
.bh-auth-card .form-control,
.bh-form-skin select.select-drop,
.bh-auth-card select.select-drop {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--rule);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none;
  height: auto;
}
.bh-form-skin .form-control:focus,
.bh-auth-card .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,101,199,0.1);
  outline: none;
}
.bh-form-skin textarea.form-control,
.bh-auth-card textarea.form-control { min-height: 110px; }
.bh-form-skin .md-form,
.bh-auth-card .md-form { margin-bottom: 1.1rem; }

/* primary submit (orange) — overrides bootstrap .btn-danger / .blue-gradient inside auth card */
.bh-auth-card .btn-danger,
.bh-auth-card .blue-gradient,
.bh-form-skin .btn-danger,
.bh-form-skin .blue-gradient {
  background: var(--orange) !important;
  border: none !important;
  color: var(--white) !important;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.25s;
  font-family: 'Poppins', sans-serif;
  box-shadow: none;
}
.bh-auth-card .btn-danger:hover,
.bh-auth-card .blue-gradient:hover,
.bh-form-skin .btn-danger:hover,
.bh-form-skin .blue-gradient:hover {
  background: #e88d2a !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -10px rgba(245,159,62,0.5);
}

/* checkbox row */
.bh-auth-card .checktext,
.bh-auth-card .check {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}
.bh-auth-card a { color: var(--blue); text-decoration: none; }
.bh-auth-card a:hover { text-decoration: underline; }
.bh-auth-card .forget {
  float: right;
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
}

/* split layout for sign-up & contact (marketing left + form right) */
.bh-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.bh-split .bh-marketing {
  padding: 1rem 0;
}
.bh-split .bh-marketing h2 {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--ink);
  line-height: 1.2;
}
.bh-split .bh-marketing h2 span { color: var(--blue); }
.bh-split .bh-marketing ul { list-style: none; padding: 0; margin: 0 0 2rem; }
.bh-split .bh-marketing li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}
.bh-split .bh-marketing li i.fa-check-circle {
  color: var(--mint);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.bh-split .bh-marketing h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.bh-split .bh-marketing strong { color: var(--ink); font-weight: 600; }
.bh-split .bh-form-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: 0 30px 60px -30px rgba(37, 101, 199, 0.15);
}

/* alerts (Bootstrap) — keep visible look but Poppins font */
.bh-auth-card .alert,
.bh-form-skin .alert { font-family: 'Poppins', sans-serif; border-radius: 8px; }

/* responsive */
@media (max-width: 900px) {
  .bh-nav { padding: 0.9rem 1.25rem; position: relative; flex-wrap: wrap; }
  .bh-hamburger { display: flex; }
  .bh-nav-links {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 0.5rem;
    margin-top: 0.75rem;
    border-top: 1px solid var(--rule);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .bh-nav-links.is-open { max-height: 600px; }
  .bh-nav-links li { width: 100%; padding: 0.5rem 0; }
  .bh-nav-links li a {
    display: block;
    padding: 0.6rem 0.4rem;
    font-size: 1rem;
    border-radius: 6px;
  }
  .bh-nav-cta, .bh-nav-login {
    display: block;
    text-align: center;
    margin-top: 0.4rem;
  }
  .bh-nav-support { display: block; padding: 0.4rem; }
  .bh-footer { padding: 3rem 1.25rem 1.5rem; }
  .bh-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding-bottom: 2rem; }
  .bh-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .bh-auth-shell { padding: 2rem 1rem; }
  .bh-auth-card { padding: 2rem 1.5rem; }
  .bh-auth-card h1 { font-size: 1.65rem; }
  .bh-split { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .bh-nav { padding: 0.75rem 1rem; }
  .bh-logo { font-size: 1.2rem; }
  .bh-logo-mark { width: 30px; height: 30px; font-size: 0.85rem; }
  .bh-footer { padding: 2.5rem 1rem 1.25rem; }
  .bh-footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .bh-auth-card { padding: 1.75rem 1.25rem; border-radius: 12px; }
  .bh-auth-card h1 { font-size: 1.5rem; }
  .bh-auth-card .lead { font-size: 0.92rem; margin-bottom: 1.5rem; }
  .bh-form-skin .form-control,
  .bh-auth-card .form-control { font-size: 16px; padding: 0.7rem 0.8rem; } /* 16px prevents iOS zoom on focus */
  .bh-auth-card .btn-danger,
  .bh-auth-card .blue-gradient,
  .bh-form-skin .btn-danger,
  .bh-form-skin .blue-gradient { padding: 0.95rem 1.4rem; font-size: 0.85rem; }
}

/* ============ Feature/Solution page ============ */
.bh-feature-hero {
  padding: 5rem 1.5rem 3rem;
  background: linear-gradient(180deg, var(--blue-wash) 0%, var(--white) 100%);
  font-family: 'Poppins', sans-serif;
}
.bh-feature-hero-inner {
  max-width: 880px; margin: 0 auto; text-align: center;
}
.bh-feature-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin-bottom: 1rem;
}
.bh-feature-hero h1 {
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 1.25rem;
}
.bh-feature-hero h1 span { color: var(--blue); }
.bh-feature-hero .lead {
  font-size: 1.15rem; line-height: 1.65;
  color: var(--ink-soft); max-width: 680px;
  margin: 0 auto 2rem;
}
.bh-feature-hero-ctas {
  display: flex; gap: 0.8rem;
  justify-content: center; flex-wrap: wrap;
}
.bh-feature-body {
  padding: 4rem 1.5rem;
  font-family: 'Poppins', sans-serif;
}
.bh-feature-body article {
  max-width: 760px; margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}
.bh-feature-body article > p:first-of-type::first-letter {
  font-size: 2.6rem; font-weight: 700; color: var(--blue);
  float: left; line-height: 1; padding: 0.25rem 0.6rem 0 0;
}
.bh-feature-body h2 {
  font-weight: 700; font-size: 1.7rem;
  letter-spacing: -0.015em; color: var(--ink);
  margin: 3rem 0 1rem;
}
.bh-feature-body h3 {
  font-weight: 700; font-size: 1.2rem;
  color: var(--ink); margin: 2rem 0 0.6rem;
}
.bh-feature-body p { margin: 0 0 1.2rem; }
.bh-feature-body strong { color: var(--ink); font-weight: 600; }
.bh-feature-body ul { margin: 0 0 1.4rem; padding-left: 1.4rem; }
.bh-feature-body li { margin-bottom: 0.5rem; }
.bh-feature-body a { color: var(--blue); text-decoration: none; font-weight: 500; }
.bh-feature-body a:hover { text-decoration: underline; }
.bh-feature-cta {
  background: var(--ink);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.bh-feature-cta h2 {
  font-weight: 700; font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em; margin: 0 0 0.75rem;
  color: var(--white);
}
.bh-feature-cta h2 span { color: var(--orange-warm); }
.bh-feature-cta p {
  color: rgba(255,255,255,0.8); font-size: 1.05rem;
  max-width: 540px; margin: 0 auto 2rem;
}
.bh-feature-cta .btn-primary { background: var(--orange); color: var(--white); }
.bh-feature-cta .btn-primary:hover { background: #e88d2a; }
.bh-feature-cta .btn-secondary { background: var(--white); color: var(--ink); }
.bh-feature-cta .btn-secondary:hover { background: var(--blue-soft); }
.bh-feature-cta-ctas {
  display: flex; gap: 0.8rem;
  justify-content: center; flex-wrap: wrap;
}
.bh-feature-cta .btn {
  padding: 0.9rem 1.7rem; border-radius: 6px;
  font-size: 0.82rem; font-weight: 700;
  text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: none; cursor: pointer; font-family: inherit;
  letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 768px) {
  .bh-feature-hero { padding: 3rem 1rem 2rem; }
  .bh-feature-body { padding: 2.5rem 1rem; }
  .bh-feature-body article { font-size: 1rem; }
  .bh-feature-body h2 { font-size: 1.4rem; margin-top: 2rem; }
  .bh-feature-cta { padding: 3rem 1rem; }
}

/* ============ Feature/Solution decorations ============ */
.bh-feature-hero { position: relative; overflow: hidden; }
.bh-feature-hero-inner { position: relative; z-index: 1; }

/* Floating decorative blobs in the hero — different colours per page */
.bh-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
/* Gradient fully transparent by 55% so any overflow:hidden cut happens in already-faded territory — no hard line */
.bh-decor.blob-blue {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(37,101,199,0.22) 0%, rgba(37,101,199,0.06) 30%, rgba(37,101,199,0) 55%);
  top: -180px; left: -220px;
}
.bh-decor.blob-orange {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,159,62,0.22) 0%, rgba(245,159,62,0.06) 30%, rgba(245,159,62,0) 55%);
  bottom: -200px; right: -220px;
}
.bh-decor.blob-mint {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124,201,160,0.26) 0%, rgba(124,201,160,0.07) 30%, rgba(124,201,160,0) 55%);
  top: 15%; right: -200px;
}
.bh-decor.blob-coral {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(244,123,107,0.22) 0%, rgba(244,123,107,0.06) 30%, rgba(244,123,107,0) 55%);
  bottom: -200px; left: -60px;
}
.bh-decor.dot {
  width: 16px; height: 16px;
  background: var(--orange);
  opacity: 0.6;
}
.bh-decor.square {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--blue);
  opacity: 0.18;
}
.bh-decor.ring {
  width: 80px; height: 80px;
  border: 3px solid var(--blue);
  opacity: 0.22;
  background: transparent;
}

/* Pull-quote callout (used inside body article) */
.bh-pull {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--blue-wash) 100%);
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}
.bh-pull.orange {
  background: linear-gradient(135deg, #fff3e0 0%, #fef9f0 100%);
  border-left-color: var(--orange);
}
.bh-pull.mint {
  background: linear-gradient(135deg, #e8f5ee 0%, #f4faf5 100%);
  border-left-color: var(--mint);
}

/* Stat strip — three figures across, with eyebrow above each */
.bh-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.bh-stat-strip .stat { text-align: center; }
.bh-stat-strip .stat-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600; margin-bottom: 0.4rem;
}
.bh-stat-strip .stat-value {
  font-size: 1.7rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.015em;
}
.bh-stat-strip .stat-value span { color: var(--blue); }
@media (max-width: 600px) {
  .bh-stat-strip { grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem 0; }
  .bh-stat-strip .stat-value { font-size: 1.4rem; }
}

/* Integrations strip — show partner logos with a short caption */
.bh-integrations-strip {
  background: var(--blue-wash);
  padding: 3rem 1.5rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.bh-integrations-strip-inner { max-width: 980px; margin: 0 auto; }
.bh-integrations-strip h3 {
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin: 0 0 0.65rem;
}
.bh-integrations-strip p {
  font-size: 1.1rem; color: var(--ink);
  font-weight: 500; max-width: 560px;
  margin: 0 auto 2rem; line-height: 1.45;
}
.bh-integrations-strip-logos {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 2.5rem;
}
.bh-integrations-strip-logos .int-pill {
  background: var(--white); border-radius: 12px;
  padding: 1.1rem 1.6rem;
  display: flex; align-items: center; justify-content: center;
  min-width: 140px; height: 70px;
  border: 1px solid var(--rule);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bh-integrations-strip-logos .int-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -12px rgba(37,101,199,0.18);
}
.bh-integrations-strip-logos .int-pill img {
  max-width: 110px; max-height: 44px; width: auto; height: auto; object-fit: contain;
}
@media (max-width: 600px) {
  .bh-integrations-strip { padding: 2rem 1rem; }
  .bh-integrations-strip-logos { gap: 1rem; }
  .bh-integrations-strip-logos .int-pill { min-width: 110px; height: 56px; padding: 0.7rem 1rem; }
  .bh-integrations-strip-logos .int-pill img { max-width: 80px; max-height: 32px; }
}

/* ============ Inline visuals & per-page custom blocks ============ */

/* Inline "pushes to:" logo row */
.bh-inline-int {
  display: flex; align-items: center; gap: 0.85rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  font-size: 0.85rem; color: var(--ink-soft);
  font-weight: 500;
}
.bh-inline-int .label {
  color: var(--muted); letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 700; font-size: 0.7rem;
  padding-right: 0.6rem; border-right: 1px solid var(--rule);
}
.bh-inline-int img { max-height: 26px; max-width: 78px; width: auto; height: auto; object-fit: contain; }

/* Per-page hero mockups */
.bh-hero-mockup {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) { .bh-hero-mockup { display: none; } }

/* E-commerce: browser bar + product cards mockup */
.bh-mock-browser {
  top: 12%; right: 6%;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  box-shadow: 0 30px 60px -30px rgba(37,101,199,0.25);
  overflow: hidden;
  transform: rotate(-2deg);
}
.bh-mock-browser .bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  background: #f4f8fd;
  border-bottom: 1px solid var(--rule);
}
.bh-mock-browser .dot { width: 10px; height: 10px; border-radius: 50%; }
.bh-mock-browser .dot.r { background: #ff5f57; }
.bh-mock-browser .dot.y { background: #ffbd2e; }
.bh-mock-browser .dot.g { background: #28c840; }
.bh-mock-browser .url {
  margin-left: 0.5rem; font-size: 0.7rem; color: var(--muted);
  background: white; padding: 0.2rem 0.5rem; border-radius: 4px;
  font-family: monospace;
}
.bh-mock-browser .body { padding: 0.85rem; }
.bh-mock-browser .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.bh-mock-browser .card-img { height: 56px; border-radius: 6px; background: linear-gradient(135deg, var(--blue-soft) 0%, var(--blue-wash) 100%); }
.bh-mock-browser .card-img.alt  { background: linear-gradient(135deg, #fef0e0 0%, #fef9f0 100%); }
.bh-mock-browser .card-img.alt2 { background: linear-gradient(135deg, #e8f5ee 0%, #f4faf5 100%); }
.bh-mock-browser .card-img.alt3 { background: linear-gradient(135deg, #fdeef0 0%, #fef8f9 100%); }

/* Sales: pipeline visualization */
.bh-pipeline {
  margin: 2.5rem 0 3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
}
.bh-pipeline-step {
  background: var(--white);
  border: 2px solid var(--rule);
  border-radius: 10px;
  padding: 0.85rem 0.6rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}
.bh-pipeline-step .num {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 0.3rem; font-weight: 700;
}
.bh-pipeline-step.active  { border-color: var(--blue);   background: var(--blue-soft); }
.bh-pipeline-step.success { border-color: var(--mint);   background: #f4faf5; }
.bh-pipeline-step.orange  { border-color: var(--orange); background: #fef9f0; }
@media (max-width: 768px) {
  .bh-pipeline { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* Purchasing: three-way matching Venn */
.bh-threeway {
  position: relative;
  width: 100%; max-width: 440px;
  height: 240px;
  margin: 2rem auto 2.5rem;
}
.bh-threeway .circle {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
  color: var(--white);
  opacity: 0.85;
  mix-blend-mode: multiply;
  text-align: center;
}
.bh-threeway .c1 { background: var(--blue);   top: 0;   left: 70px; }
.bh-threeway .c2 { background: var(--orange); top: 70px; left: 0; }
.bh-threeway .c3 { background: var(--mint);   top: 70px; left: 140px; }

/* Stock: 3-card split visual */
.bh-split-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}
.bh-split-bars .bar {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bh-split-bars .bar::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 6px; }
.bh-split-bars .bar.physical::after  { background: var(--blue); }
.bh-split-bars .bar.allocated::after { background: var(--orange); }
.bh-split-bars .bar.available::after { background: var(--mint); }
.bh-split-bars .bar .icon {
  width: 38px; height: 38px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.6rem;
  font-size: 1.05rem; font-weight: 700;
}
.bh-split-bars .bar.physical .icon  { background: var(--blue-soft); color: var(--blue); }
.bh-split-bars .bar.allocated .icon { background: #fef0e0;          color: var(--orange); }
.bh-split-bars .bar.available .icon { background: #e8f5ee;          color: var(--mint); }
.bh-split-bars .bar h4 { font-size: 0.95rem; color: var(--ink); margin: 0 0 0.35rem; font-weight: 700; }
.bh-split-bars .bar p  { font-size: 0.82rem; color: var(--ink-soft); margin: 0; line-height: 1.45; }
@media (max-width: 600px) {
  .bh-split-bars { grid-template-columns: 1fr; }
}

/* Invoice: doc + arrow + integrations stack */
.bh-doc-flow {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1.1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.bh-doc {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 16px 32px -16px rgba(37,101,199,0.18);
}
.bh-doc .doc-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 0.65rem; border-bottom: 1px solid var(--rule); margin-bottom: 0.85rem;
}
.bh-doc .doc-head .title { font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.bh-doc .doc-head .badge {
  background: var(--mint); color: white;
  font-size: 0.65rem; padding: 0.2rem 0.5rem; border-radius: 4px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.bh-doc .doc-line { height: 6px; background: var(--rule); border-radius: 3px; margin-bottom: 0.5rem; }
.bh-doc .doc-line.short { width: 60%; }
.bh-doc .doc-line.med   { width: 80%; }
.bh-doc .doc-total {
  margin-top: 0.65rem; padding-top: 0.65rem;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
}
.bh-doc .doc-total .lbl { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.bh-doc .doc-total .val { font-weight: 700; color: var(--ink); font-size: 1rem; }
.bh-doc-flow .arrow { color: var(--blue); font-size: 1.5rem; text-align: center; }
.bh-doc-flow .accounting-stack { display: flex; flex-direction: column; gap: 0.55rem; }
.bh-doc-flow .accounting-stack .acc-pill {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.bh-doc-flow .accounting-stack .acc-pill img { max-height: 24px; max-width: 60px; object-fit: contain; }
.bh-doc-flow .accounting-stack .acc-pill span { font-size: 0.78rem; color: var(--ink); font-weight: 500; }
@media (max-width: 768px) {
  .bh-doc-flow { grid-template-columns: 1fr; }
  .bh-doc-flow .arrow { transform: rotate(90deg); }
}

/* Reporting: chart mockup */
.bh-chart-mock {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0 2.5rem;
  box-shadow: 0 16px 32px -16px rgba(37,101,199,0.15);
}
.bh-chart-mock .head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1rem;
}
.bh-chart-mock .head .title { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.bh-chart-mock .head .sub   { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
.bh-chart-mock .head .pill  {
  background: var(--mint); color: white;
  font-size: 0.68rem; padding: 0.25rem 0.55rem; border-radius: 4px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.bh-chart-mock svg { display: block; width: 100%; height: auto; }

/* ============ Refined CTA buttons (used in solution & about hero, etc.) ============ */
.bh-feature-hero .btn,
.bh-feature-cta .btn {
  padding: 0.95rem 1.7rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.bh-feature-hero .btn-primary,
.bh-feature-cta .btn-primary {
  background: var(--orange) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 16px -6px rgba(245,159,62,0.45);
}
.bh-feature-hero .btn-primary:hover,
.bh-feature-cta .btn-primary:hover {
  background: #e88d2a !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(245,159,62,0.55);
}
.bh-feature-hero .btn-secondary,
.bh-feature-cta .btn-secondary {
  background: var(--blue) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 16px -6px rgba(37,101,199,0.4);
}
.bh-feature-hero .btn-secondary:hover,
.bh-feature-cta .btn-secondary:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(37,101,199,0.5);
}
.bh-feature-hero .btn-outline,
.bh-feature-cta .btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--rule);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.bh-feature-hero .btn-outline:hover,
.bh-feature-cta .btn-outline:hover {
  background: var(--blue-soft);
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -10px rgba(37,101,199,0.22);
}
