/* Design Tokens */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Roboto+Mono:wght@400;700&display=swap");
:root {
  /* Brand Colors */
  --bh-primary:#2563EB;
  --bh-secondary:#7F5AD5;
  --bh-tertiary:#5A67D8;
  --bh-grad:linear-gradient(135deg,#667EEA,#764BA2);
  --bh-grad-secondary:linear-gradient(135deg,#7F5AD5,#764BA2);
  --bh-grad-tertiary:linear-gradient(135deg,#5A67D8,#667EEA);
  /* Neutral Palette */
  --bh-neutral-darkest:#2D3748;
  --bh-neutral-dark:#4A5568;
  --bh-neutral-medium:#718096;
  --bh-neutral-light:#A0AEC0;
  --bh-neutral-very-light:#E2E8F0;
  --bh-white:#FFFFFF;
  /* Accent Colors */
  --bh-accent-green:#38B2AC;
  --bh-accent-yellow:#F6AD55;
  --bh-accent-red:#E53E3E;
  --bh-accent-blue:#4299E1;
  /* Semantic Colors */
  --ink:#0E1220;
  --ash:#6B7085;
  --cloud:#E9ECF3;
  --paper:#F9FAFE;
  --white:#fff;
  /* Spacing Scale */
  --spacing-xs:4px;
  --spacing-s:8px;
  --spacing-m:16px;
  --spacing-l:24px;
  --spacing-xl:32px;
  --spacing-2xl:48px;
  --spacing-3xl:64px;
  --spacing-4xl:80px;
  /* Border Radius */
  --radius-none:0;
  --radius-xs:4px;
  --radius-s:6px;
  --radius-m:12px;
  --radius-l:16px;
  --radius-xl:24px;
  --radius-full:999px;
  /* Shadows */
  --shadow-small:0 2px 8px rgba(14,18,32,.06);
  --shadow-medium:0 4px 16px rgba(14,18,32,.08);
  --shadow-large:0 10px 30px rgba(14,18,32,.12);
  /* Defaults */
  --radius:var(--radius-m);
  --shadow:var(--shadow-medium);
  /* Typography */
  --font-inter:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:'Roboto Mono', 'Courier New', monospace;
  /* Heading Scale */
  --h1-size:48px;
  --h1-line-height:1.2;
  --h1-weight:700;
  --h2-size:36px;
  --h2-line-height:1.2;
  --h2-weight:700;
  --h3-size:30px;
  --h3-line-height:1.2;
  --h3-weight:700;
  --h4-size:24px;
  --h4-line-height:1.2;
  --h4-weight:700;
  /* Body Text */
  --body-large-size:18px;
  --body-base-size:16px;
  --body-small-size:14px;
  --body-xs-size:12px;
  --body-line-height:1.5;
  --body-weight:400;
}

/* Typography, base colors */
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-inter);
  font-size: var(--body-base-size);
  line-height: var(--body-line-height);
  font-weight: var(--body-weight);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* Typography Classes */
.bh-h1 {
  font-size: var(--h1-size);
  line-height: var(--h1-line-height);
  font-weight: var(--h1-weight);
}

.bh-h2 {
  font-size: var(--h2-size);
  line-height: var(--h2-line-height);
  font-weight: var(--h2-weight);
}

.bh-h3 {
  font-size: var(--h3-size);
  line-height: var(--h3-line-height);
  font-weight: var(--h3-weight);
}

.bh-h4 {
  font-size: var(--h4-size);
  line-height: var(--h4-line-height);
  font-weight: var(--h4-weight);
}

.bh-text-large {
  font-size: var(--body-large-size);
  line-height: var(--body-line-height);
}

.bh-text-base {
  font-size: var(--body-base-size);
  line-height: var(--body-line-height);
}

.bh-text-small {
  font-size: var(--body-small-size);
  line-height: var(--body-line-height);
}

.bh-text-xs {
  font-size: var(--body-xs-size);
  line-height: var(--body-line-height);
}

.bh-font-mono {
  font-family: var(--font-mono);
}

/* Layout + Sections (BEM wrappers around Bootstrap containers) */
h2 {
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  line-height: 2.5rem; /* 118.182% */
  letter-spacing: -0.0825rem;
}

h1, h2, h3, h4 {
  font-weight: 900;
}

html.bh-modal-open,
body.bh-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.bh-section {
  padding: clamp(56px, 6vw, 96px) 0;
  position: relative;
}
.bh-section .container {
  position: relative;
  z-index: 1;
}

.bh-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bh-shapes img {
  object-fit: cover;
}
.bh-shapes .bh-shapes__deco {
  position: absolute;
  bottom: 0;
  right: -80px;
}
.bh-shapes .bh-shapes__line {
  position: absolute;
  top: 40%;
}
.bh-shapes .bh-shapes__hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.bh-section--light {
  background: #fff;
  color: var(--ink);
}

.bh-section--neutral {
  background: #f9fafe;
  color: var(--ink);
}

.bh-section--dark {
  background: linear-gradient(97deg, #0A0E1B 7.89%, #372E8D 49.07%, #24093F 90.25%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bh-section--hero {
  background: linear-gradient(97deg, #0A0E1B 7.89%, #372E8D 49.07%, #24093F 90.25%);
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bh-section--hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 480px;
  height: 480px;
  background: rgba(118, 75, 162, 0.35);
  filter: blur(200px);
}

@media (min-width: 1400px) {
  .bh-section__container {
    max-width: 1140px;
  }
}

.bh-nav__brand {
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

.bh-nav__brand img {
  height: 42px;
  width: auto;
}

.bh-footer__legal {
  color: var(--ash);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.bh-preview-note {
  margin-top: 0.5rem;
  color: var(--ash);
}

.bh-link-button {
  background: none;
  border: 0;
  color: var(--bh-primary);
  font-weight: 600;
  padding: 0;
}

.bh-insights {
  padding-top: clamp(80px, 9vw, 120px);
}

.navbar-toggler {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}
.navbar-toggler:hover {
  color: var(--bh-primary);
}
.navbar-togglerfocus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler:focus-visible {
  outline: none;
  box-shadow: none;
}
.navbar-toggler:focus-within {
  outline: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .navbar-collapse {
    background: var(--bh-white);
    position: fixed;
    top: 70px;
    width: 100%;
    left: 0;
    z-index: 1000;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 768px) {
  .navbar-collapse .nav-item {
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.bh-chip-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  border-radius: 1.75rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  align-items: flex-start;
  text-align: left;
  transition: all 0.2s;
  height: 100%;
}
.bh-chip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
}

.bh-chip-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: #EEF2FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bh-primary);
}

.bh-chip-card__icon--accent {
  background: #FFF1F1;
  color: #FF6B6B;
}

.bh-chip-card__icon--success {
  background: #ECFDF5;
  color: #10B981;
}

.bh-chip-card__icon--metrics {
  background: #EBF4FF;
  color: #2563EB;
}

.bh-chip-card__info h3 {
  margin: 0;
  font-weight: 700;
}

.bh-chip-card__info p {
  margin: 0.35rem 0 0;
  color: var(--ash);
}

.bh-dashboard {
  text-align: center;
}

.bh-dashboard__tabs {
  max-width: 900px;
  margin: 0 auto;
}

.bh-dashboard__tablist {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .bh-dashboard__tablist {
    justify-content: center;
    padding-bottom: 0;
  }
}

.bh-dashboard__tab {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.bh-dashboard__tab i {
  font-size: 1rem;
}

.bh-dashboard__tab.is-active {
  background: var(--bh-grad);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.5);
}

.bh-dashboard__panel {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 0;
  min-height: 220px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  color: #fff;
  text-align: left;
}
@media (min-width: 768px) {
  .bh-dashboard__panel {
    padding: 2rem;
  }
}

.bh-dashboard__panel img {
  max-width: 100%;
  border-radius: 18px;
  margin-top: 1rem;
  display: block;
}

.bh-dashboard__helper {
  color: rgba(255, 255, 255, 0.75);
}

.bh-dashboard__meta {
  margin-top: 2rem;
}

.bh-dashboard__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
}

.bh-dashboard__meta-item i {
  font-size: 1.5rem;
}

.bh-dashboard-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  color: var(--ink);
  text-align: left;
}

.bh-dashboard-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.bh-dashboard-card__eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ash);
  margin-bottom: 0.2rem;
}

.bh-dashboard-card__actions {
  display: flex;
  gap: 0.6rem;
}

.bh-chip {
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-weight: 600;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
}

.bh-chip--ghost {
  border-color: rgba(0, 0, 0, 0.3);
  background: transparent;
  color: inherit;
}
.bh-chip--ghost:hover {
  border-color: var(--bh-primary);
  background: transparent;
  color: var(--bh-primary);
}
.bh-chip--ghost:active {
  border-color: rgba(0, 0, 0, 0.3);
  background: transparent;
  color: inherit;
}
.bh-chip--ghost:focus {
  border-color: rgba(0, 0, 0, 0.3);
  background: transparent;
  color: inherit;
}
.bh-chip--ghost:disabled {
  border-color: rgba(0, 0, 0, 0.3);
  background: transparent;
  color: inherit;
}

.bh-chip--primary {
  background: var(--bh-grad);
  color: #fff;
  border: 0;
  box-shadow: 0 15px 30px rgba(118, 75, 162, 0.3);
}

.bh-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.bh-dashboard-metric-card {
  background: #f8f9ff;
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.bh-dashboard-metric-card__label {
  font-size: 0.9rem;
  color: var(--ash);
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.bh-dashboard-metric-card__value {
  font-size: 1.5rem;
  font-weight: 800;
}

.bh-dashboard-metric-card__delta {
  font-weight: 600;
  font-size: 0.9rem;
}

.bh-dashboard-metric-card__delta.is-positive {
  color: #10B981;
}

.bh-dashboard-metric-card__delta.is-negative {
  color: #F97316;
}

.bh-dashboard-chart {
  border: 1px solid #ECEFFC;
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: #fff;
}

.bh-dashboard-chart__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bh-dashboard-chart__toggles {
  display: flex;
  gap: 0.4rem;
}

.bh-dashboard-chart__toggles button {
  border: 1px solid #D7DAF7;
  background: transparent;
  border-radius: 0.9rem;
  padding: 0.3rem 0.9rem;
  font-weight: 600;
  color: var(--ash);
}

.bh-dashboard-chart__toggles button.is-active {
  background: #EEF2FF;
  color: var(--bh-primary);
  border-color: transparent;
}

.bh-dashboard-chart__bars {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  height: 160px;
}

.bh-dashboard-chart__bars div {
  flex: 1;
  border-radius: 0.7rem 0.7rem 0 0;
  background: linear-gradient(180deg, #5B67DE 0%, #7C4AE0 100%);
  height: var(--value, 50%);
  transition: height 0.3s ease;
}

.bh-dashboard-chart__bars div.is-highlight {
  background: linear-gradient(180deg, #22C55E 0%, #16A34A 100%);
}

.bh-dashboard-chart__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ash);
  margin-top: 0.5rem;
}

.bh-dashboard-feed {
  border: 1px solid #ECEFFC;
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: #fff;
}

.bh-dashboard-feed__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bh-dashboard-feed__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-dashboard-feed__item {
  display: flex;
  gap: 1rem;
}

.bh-dashboard-feed__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bh-grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.bh-dashboard-feed__meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.bh-dashboard-feed__time {
  color: var(--ash);
  font-size: 0.85rem;
}

.bh-workflow-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
}

@media (max-width: 991.98px) {
  .bh-workflow-layout {
    grid-template-columns: 1fr;
  }
}
.bh-workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-workflow-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8f9ff;
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid transparent;
}

.bh-workflow-step.is-active {
  border-color: rgba(91, 103, 222, 0.4);
  box-shadow: 0 12px 30px rgba(91, 103, 222, 0.2);
}

.bh-workflow-step__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #EEF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bh-primary);
  font-size: 1.1rem;
}

.bh-workflow-step__icon--warning {
  background: #FFF7ED;
  color: #EA580C;
}

.bh-workflow-step__icon--success {
  background: #ECFDF5;
  color: #10B981;
}

.bh-workflow-step__icon--purple {
  background: #F5EFFD;
  color: #8B5CF6;
}

.bh-workflow-step__icon--grey {
  background: #F3F4F6;
  color: #4B5563;
}

.bh-workflow-step__title {
  font-weight: 700;
  margin: 0;
}

.bh-workflow-step__subtitle {
  color: var(--ash);
  font-size: 0.9rem;
}

.bh-workflow-step__chip {
  margin-left: auto;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748B;
}

.bh-workflow-step__chip--yellow {
  color: #EA580C;
}

.bh-workflow-step__chip--green {
  color: #10B981;
}

.bh-workflow-step__chip--purple {
  color: #8B5CF6;
}

.bh-workflow-step--ghost {
  justify-content: center;
  background: #fff;
  border: 1px dashed #CBD5F5;
  cursor: pointer;
  color: var(--bh-primary);
}

.bh-workflow-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-workflow-sidebar__card {
  background: #FDFDFF;
  border-radius: 1.25rem;
  border: 1px solid #E5E7F5;
  padding: 1.25rem;
}

.bh-workflow-field {
  margin-top: 1rem;
}

.bh-workflow-field label {
  font-size: 0.85rem;
  color: var(--ash);
  display: block;
  margin-bottom: 0.3rem;
}

.bh-workflow-field input {
  width: 100%;
  border: 1px solid #E5E7F5;
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
}

.bh-workflow-stats {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.bh-workflow-stats span {
  color: var(--ash);
  display: block;
}

.bh-workflow-stats strong {
  font-size: 1rem;
}

.bh-workflow-footer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid #E5E7F5;
  padding-top: 1rem;
}

.bh-workflow-footer p {
  margin: 0;
  color: var(--ash);
}

.bh-workflow-footer strong {
  font-size: 1.2rem;
}

.bh-customization-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991.98px) {
  .bh-customization-layout {
    grid-template-columns: 1fr;
  }
}
.bh-customization-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-customization-panel {
  background: #fff;
  border: 1px solid #ECEFFC;
  border-radius: 1.25rem;
  padding: 1.25rem;
  text-align: left;
}

.bh-panel-subtitle {
  color: var(--ash);
  font-size: 0.9rem;
}

.bh-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bh-color-swatches button {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 3px solid transparent;
  background: var(--color, #5B67DE);
}

.bh-color-swatches button.is-active {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

.bh-custom-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1rem;
}

.bh-custom-field input {
  border: 1px solid #E5E7F5;
  border-radius: 0.75rem;
  padding: 0.55rem 0.75rem;
}

.bh-personality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.bh-personality-card {
  border: 1px solid #E5E7F5;
  border-radius: 0.9rem;
  padding: 0.75rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  background: #fff;
}

.bh-personality-card.is-active {
  border-color: rgba(91, 103, 222, 0.4);
  box-shadow: 0 12px 25px rgba(91, 103, 222, 0.15);
}

.bh-personality-card .emoji {
  font-size: 1.4rem;
}

.bh-customization-panel--toggles label {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.5rem;
  font-weight: 600;
}

.bh-customization-preview {
  background: #F9FAFF;
  border-radius: 1.5rem;
  border: 1px solid #E5E7F5;
  padding: 1.5rem;
  text-align: left;
}

.bh-customization-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.bh-preview-chat {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #E5E7F5;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-preview-chat__header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #111827;
}

.bh-preview-chat__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bh-preview-chat__bubble {
  padding: 0.75rem;
  border-radius: 0.9rem;
  background: #EEF2FF;
  color: #1F2937;
  max-width: 90%;
}

.bh-preview-chat__bubble.is-user {
  align-self: flex-end;
  background: var(--bh-grad);
  color: #fff;
}

.bh-preview-chat__bubble span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.35rem;
}

.bh-preview-chat__input {
  display: flex;
  gap: 0.5rem;
}

.bh-preview-chat__input input {
  flex: 1;
  border: 1px solid #E5E7F5;
  border-radius: 0.75rem;
  padding: 0.55rem 0.75rem;
}

.bh-preview-chat__input button {
  width: 44px;
  border-radius: 0.75rem;
  border: 0;
  background: var(--bh-grad);
  color: #fff;
}

.bh-preview-note {
  margin-top: 0.5rem;
  color: var(--ash);
}

.bh-link-button {
  background: none;
  border: 0;
  color: var(--bh-primary);
  font-weight: 600;
  padding: 0;
}

/* Templates Section */
.bh-templates__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
  background: radial-gradient(circle, #fba568 0%, rgba(251, 165, 104, 0) 70%);
  pointer-events: none;
}

.bh-templates__glow--left {
  left: -120px;
  bottom: 10%;
}

.bh-templates__glow--right {
  right: -150px;
  top: 5%;
}

.bh-template-card {
  background: #fff;
  border-radius: 1.75rem;
  padding: 2rem;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.35);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.bh-template-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 1.5rem;
  background: #EEF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #4F46E5;
}

.bh-template-card__icon--coral {
  background: #FFE4D4;
  color: #F97316;
}

.bh-template-card__icon--purple {
  background: #EADCFB;
  color: #8B5CF6;
}

.bh-chip--pill {
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.bh-chip--warning {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.bh-template-card .bh-chip {
  align-self: flex-start;
}

/* Pricing Section */
.bh-pricing {
  background: #F9FAFF;
}

.bh-pricing__toggle {
  display: inline-flex;
  border: 1px solid #E5E7F5;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.bh-pricing__header, .bh-title__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 2rem;
}

.bh-toggle-btn {
  border: 0;
  background: transparent;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  color: var(--ash);
}

.bh-toggle-btn.is-active {
  background: var(--bh-grad);
  color: #fff;
}

.bh-toggle-save {
  background: #22C55E;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  margin-left: 0.3rem;
}

.bh-pricing__cards .col-md-4 {
  display: flex;
}

.bh-price-card {
  background: #fff;
  border-radius: 1.75rem;
  padding: 1.75rem;
  border: 1px solid #E5E7F5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s;
  height: 100%;
}

.bh-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.2);
}

.bh-price-card.is-featured {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 40px 80px rgba(99, 102, 241, 0.2);
}

.bh-price-card__badge {
  align-self: center;
  background: #FFE4E0;
  color: #B42318;
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  position: absolute;
  top: -12px;
}

.bh-price-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bh-primary);
}

.bh-price-card__price small {
  font-size: 1.1rem;
  color: #6b7280;
  margin-left: 0.25rem;
}

.bh-price-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #F8F9FF;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 0.95rem;
}

.bh-price-card__meta div {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.bh-price-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bh-price-card__features li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.bh-price-card__features li i {
  color: #22C55E;
  margin-top: 0.2rem;
}

/* Pricing modal */
.bh-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.bh-modal.is-visible {
  display: flex;
}

.bh-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.bh-modal__dialog {
  position: relative;
  width: 90%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  background: #120e2d;
  border-radius: 1.5rem;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.bh-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: var(--ink);
  font-size: 1.15rem;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.bh-modal__close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.bh-calculator {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bh-calculator__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .bh-calculator__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.bh-calculator__toggle {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  overflow: hidden;
}

.bh-calculator__toggle .bh-toggle-btn {
  color: #fff;
  background: transparent;
  border: 0;
  padding: 0.4rem 1.5rem;
  font-weight: 600;
}

.bh-calculator__toggle .bh-toggle-btn.is-active {
  background: rgba(255, 255, 255, 0.2);
}

.bh-calculator__control {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1rem;
}

.bh-calculator__control input[type=range] {
  width: 100%;
  accent-color: #fff;
}

.bh-calculator__choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.bh-calculator-plan {
  background: #fff;
  color: #0f172a;
  border-radius: 1.25rem;
  padding: 1rem;
  position: relative;
  transition: transform 0.2s;
}

.bh-calculator-plan.is-active {
  border: 2px solid #8b5cf6;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.bh-calculator-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #F97316;
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.bh-calculator__breakdown {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  color: #111;
}

.bh-calculator__breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.bh-calculator__features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
}

.bh-calculator__features li {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  color: #111;
}

/* Auth modal */
.bh-auth {
  max-width: 460px;
  padding: 0;
  border-radius: 1.75rem;
  background: linear-gradient(180deg, #171333 0%, #0d0a1f 100%);
  color: #F6F8FF;
  box-shadow: 0 60px 140px rgba(4, 2, 32, 0.65);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bh-auth__header {
  background: linear-gradient(135deg, #6f7dfa, #9c5bff);
  color: #fff;
  padding: 2.25rem 2.5rem 1.5rem;
  text-align: left;
  position: relative;
}

.bh-auth__header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.bh-auth__header h3 {
  margin: 0 0 0.35rem;
  font-size: 2rem;
  font-weight: 700;
}

.bh-auth__header p {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

.bh-auth__body {
  padding: 2.25rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bh-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bh-auth__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bh-auth__field label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #cfd3ff;
}

.bh-auth__field input {
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 0.95rem 1.1rem;
  font-size: 1rem;
  background: rgba(8, 8, 20, 0.75);
  color: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bh-auth__field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.bh-auth__field input:focus {
  outline: none;
  border-color: #B58CFF;
  box-shadow: 0 0 0 3px rgba(181, 140, 255, 0.25);
  transform: translateY(-1px);
}

.bh-auth__password {
  display: flex;
  align-items: center;
  position: relative;
}

.bh-auth__password input {
  width: 100%;
  padding-right: 3rem;
}

.bh-auth__password button {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.bh-auth__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #ccd0ff;
}

.bh-auth__remember {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #f8f9ff;
}

.bh-auth__remember input {
  width: 16px;
  height: 16px;
}

.bh-auth__link {
  color: var(--bh-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.bh-auth__link:hover {
  color: var(--bh-primary);
  background-color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bh-button--auth {
  background: #fff;
  color: #111026;
  border: none;
  padding: 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bh-button--auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.45);
}

.bh-auth__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #a0a5d9;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bh-auth__divider::before,
.bh-auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.bh-auth__social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.bh-auth__social-btn {
  flex: 1;
  min-width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #fff;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.bh-auth__social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.bh-auth__footer {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #b9bdf1;
}

.bh-auth__footer a {
  color: #7bb0ff;
  font-weight: 600;
  text-decoration: none;
}

/* Sign Up modal */
.bh-signup {
  max-width: 460px;
  padding: 0;
  border-radius: 1.5rem;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 50px 120px rgba(15, 23, 42, 0.25);
  overflow: hidden;
}

.bh-signup__header {
  padding: 2rem 2.5rem 1.5rem;
  background: linear-gradient(135deg, #6f7dfa, #9c5bff);
  color: #fff;
}

.bh-signup__eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.bh-signup__header h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.bh-signup__progress {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bh-signup__progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.95;
}

.bh-signup__progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.bh-signup__progress-fill {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 999px;
}

.bh-signup__body {
  padding: 2.25rem 2.5rem;
  background: linear-gradient(180deg, #0b0f24 0%, #111936 100%);
  color: #e4e8ff;
  max-height: 70vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.bh-signup__body::-webkit-scrollbar {
  width: 6px;
}

.bh-signup__body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.bh-signup__body::-webkit-scrollbar-track {
  background: transparent;
}

.bh-signup__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bh-signup__label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #cdd7ff;
}

.bh-signup__field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bh-signup__field-terms {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
  border: 0;
  padding: 0;
  background: transparent;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.bh-signup__field-terms:focus-within {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.bh-signup__field-terms label {
  font-size: 0.95rem;
  color: #cdd7ff;
}

.bh-signup__field i {
  color: #9da7d9;
  font-size: 1.1rem;
}

.bh-signup__field input {
  border: 0;
  flex: 1;
  font-size: 1rem;
  color: #fff;
  outline: none;
  background: transparent;
}

.bh-signup__field input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.bh-signup__field:focus-within {
  border-color: #94a0ff;
  box-shadow: 0 0 0 3px rgba(148, 160, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.bh-signup__help {
  margin: -0.75rem 0 0;
  font-size: 0.85rem;
  color: #9aa4d5;
}

.bh-signup__included {
  margin-top: 0.5rem;
  background: rgba(15, 23, 42, 0.65);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(3, 6, 18, 0.4);
}

.bh-signup__included-title {
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #e8ecff;
}

.bh-signup__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #cdd4ff;
}

.bh-signup__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.bh-signup__list i {
  color: #22c55e;
  font-size: 1rem;
  margin-top: 0.1rem;
}

.bh-button--signup {
  background: linear-gradient(135deg, #6b7bff, #8f46ff);
  color: #fff;
  border: none;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(130, 88, 255, 0.3);
}

.bh-button--signup:hover {
  box-shadow: 0 24px 36px rgba(130, 88, 255, 0.35);
  transform: translateY(-1px);
}

.bh-signup__footer {
  text-align: center;
  margin-top: 1.5rem;
  color: #b5bbf4;
  font-size: 0.95rem;
}

.bh-signup__footer a {
  color: #5d6bff;
  font-weight: 600;
}

.bh-templates {
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bh-templates__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  filter: blur(120px);
  opacity: 0.8;
  pointer-events: none;
  background: radial-gradient(circle, #FF7A18 0%, rgba(255, 122, 24, 0) 70%);
}

.bh-templates__glow--left {
  left: -120px;
  top: 10%;
}

.bh-templates__glow--right {
  right: -120px;
  bottom: 0;
}

.bh-chip--pill {
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.bh-chip--warning {
  background: #FFCE6A;
  color: #2F1E05;
}

.bh-template-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: var(--ink);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
  min-height: 240px;
  height: 100%;
  transition: all 0.2s;
}
.bh-template-card:hover {
  transform: translateY(-6px);
}

.bh-template-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: #EEF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bh-primary);
  margin-bottom: 1rem;
}

.bh-template-card__icon--coral {
  background: #FFE4E0;
  color: #F97316;
}

.bh-template-card__icon--purple {
  background: #F3E8FF;
  color: #8B5CF6;
}

.bh-section__description.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.bh-pricing {
  background: #F9FAFF;
}

.bh-pricing__toggle {
  display: inline-flex;
  border: 1px solid #E5E7F5;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.bh-toggle-btn {
  border: 0;
  background: transparent;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  color: var(--ash);
  position: relative;
}

.bh-toggle-btn.is-active {
  background: var(--bh-grad);
  color: #fff;
}

.bh-toggle-save {
  background: #22C55E;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.15rem 0.45rem;
  border-radius: 0.75rem;
  margin-left: 0.35rem;
}

.bh-pricing__cards .col-md-4 {
  display: flex;
}

.bh-price-card {
  background: #fff;
  border-radius: 1.75rem;
  padding: 1.75rem;
  border: 1px solid #E5E7F5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  position: relative;
  transition: all 0.2s;
}
.bh-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.35);
}

.bh-price-card.is-featured {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 40px 80px rgba(99, 102, 241, 0.2);
}

.bh-price-card__badge {
  align-self: center;
  background: #FFD5E1;
  color: #B42318;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  position: absolute;
  top: -1rem;
  left: calc(50% - 110px);
  transform: translateX(50%);
}

.bh-price-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bh-primary);
}
.bh-price-card__price small {
  font-size: 1.25rem;
}

.bh-price-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: #F8F9FF;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 0.95rem;
}

.bh-price-card__meta div {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.bh-price-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.bh-price-card__features li {
  display: flex;
  gap: 0.35rem;
  align-items: flex-start;
}

.bh-price-card__features li i {
  color: #22C55E;
  margin-top: 0.15rem;
}

.bh-price-card .bh-chip {
  align-self: stretch;
  justify-content: center;
}

.bh-price-card--enterprise {
  text-align: left;
}

.bh-enterprise-config {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-enterprise-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bh-enterprise-field label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
}

.bh-enterprise-addons {
  margin-top: 1.75rem;
  border: 1px dashed rgba(55, 65, 81, 0.2);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #f5f7ff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-enterprise-addons h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.bh-enterprise-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.bh-enterprise-addon:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bh-enterprise-addon p {
  margin: 0;
  font-weight: 600;
  color: #0f172a;
}

.bh-enterprise-addon__price {
  font-weight: 600;
  color: #4c1d95;
  font-size: 0.95rem;
}

.bh-enterprise-addon .form-check-input {
  width: 2.5rem;
  height: 1.35rem;
  cursor: pointer;
}

.bh-enterprise-addon .form-check-input:focus {
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
}

.bh-section--dark .bh-link-button {
  color: #fff;
}

/* Dashboard layout */
.bh-dashboard-page {
  background: #f5f6fb;
  min-height: 100vh;
  display: flex;
}

.bh-dashboard-sidebar {
  width: 280px;
  background: #fff;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
  position: fixed;
  inset: 0 auto 0 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1020;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  overflow-y: auto;
  scrollbar-width: none;
}

.bh-dashboard-sidebar__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bh-dashboard-sidebar__brand img {
  width: 160px;
}

.bh-dashboard-sidebar__close {
  border: 0;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 0.75rem;
  width: 40px;
  height: 40px;
}

.bh-dashboard-sidebar__profile {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.25rem;
  background: #f8f9ff;
}

.bh-dashboard-sidebar__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  min-width: 48px;
  min-height: 48px;
}

.bh-dashboard-sidebar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bh-dashboard-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bh-dashboard-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: #4b5563;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  transition: all 0.2s;
}

.bh-dashboard-sidebar__nav a.is-active,
.bh-dashboard-sidebar__nav a:hover {
  background: #eef2ff;
  color: var(--bh-primary);
}

.bh-dashboard-sidebar__usage {
  background: #f8f9ff;
  border-radius: 1.25rem;
  padding: 1rem;
}

.bh-dashboard-sidebar__progress {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  margin-top: 0.5rem;
}

.bh-dashboard-sidebar__progress span {
  display: block;
  height: 100%;
  background: var(--bh-primary);
  border-radius: inherit;
}

.bh-dashboard-main {
  margin-left: 280px;
  padding: 2rem 2.5rem;
  width: 100%;
}
.bh-dashboard-main h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.bh-dashboard-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.bh-dashboard-header__title {
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: -0.0825rem;
  margin: 0;
}

.bh-dashboard-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bh-dashboard-search {
  position: relative;
  min-width: 280px;
}

.bh-dashboard-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.bh-dashboard-search .bh-input {
  padding-left: 2.5rem;
}

.bh-dashboard-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
}

.bh-dashboard-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.bh-dashboard-user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.bh-dashboard-header__toggle {
  border: 0;
  background: #fff;
  border-radius: 1rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.bh-dashboard-hero {
  background: #fff;
  padding: 1.75rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.bh-dashboard-hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bh-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .bh-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.bh-dashboard-card {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}
.bh-dashboard-card h4 {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.bh-dashboard-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bh-dashboard-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--bh-primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.bh-dashboard-card__note {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.bh-dashboard-panel {
  margin-bottom: 1.5rem;
}

.bh-dashboard-table {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
  height: 100%;
}

.bh-dashboard-table__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.bh-dashboard-table table {
  margin: 0;
}

.bh-dashboard-table tbody tr td {
  padding: 1rem 0.75rem;
}

.bh-dashboard-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
}

.bh-dashboard-card--traffic,
.bh-dashboard-card--activity,
.bh-dashboard-card--tasks {
  height: 100%;
}

.bh-dashboard-traffic {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bh-dashboard-traffic li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 0.75rem;
}

.bh-dashboard-traffic li:last-child {
  border-bottom: 0;
}

.bh-dashboard-activity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.bh-dashboard-activity:last-child {
  border-bottom: 0;
}

#agentModalTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.bh-agents-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.bh-agent-stat {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.05);
}

.bh-agent-stat__icon {
  width: 44px;
  height: 44px;
  border-radius: 1rem;
  background: rgba(102, 126, 234, 0.12);
  color: var(--bh-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.bh-agent-key {
  background: linear-gradient(135deg, #f7f8ff, #ffffff);
  border-radius: 1.75rem;
  border: 1px solid rgba(102, 126, 234, 0.2);
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 40px 100px rgba(99, 102, 241, 0.15);
  margin-bottom: 1.5rem;
}

.bh-agent-key__icon {
  width: 56px;
  height: 56px;
  border-radius: 1.25rem;
  background: rgba(99, 102, 241, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #4f46e5;
}

.bh-agent-key__value {
  font-family: var(--font-mono);
  background: #0f172a;
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 1rem;
}

.bh-agent-key__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bh-agents-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.bh-agent-card {
  background: #fff;
  border-radius: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
  box-shadow: 0 25px 80px rgba(15, 23, 42, 0.08);
}

.bh-agent-empty {
  border: 1px dashed rgba(102, 126, 234, 0.4);
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #f8f9ff;
}

.bh-agent-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bh-agent-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #eef2ff;
}

.bh-agent-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bh-agent-card__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.bh-agent-card__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
  padding: 1rem;
  background: #f8f9ff;
  border-radius: 1.25rem;
}

.bh-agent-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.bh-agent-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: fixed;
  inset: 0;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.bh-agent-modal.is-visible {
  opacity: 1;
  pointer-events: all;
}

.bh-agent-modal__dialog {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  box-shadow: 0 30px 120px rgba(15, 23, 42, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}

.bh-agent-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bh-agent-modal__label {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.bh-agent-modal__label-icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: rgba(102, 126, 234, 0.15);
  color: var(--bh-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.bh-agent-modal__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-agent-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bh-agent-modal__upload {
  border: 1.5px dashed rgba(102, 126, 234, 0.4);
  border-radius: 1.25rem;
  padding: 1.25rem;
  text-align: center;
  color: #4b5563;
  cursor: pointer;
  background: #f8f9ff;
}

.bh-agent-modal__integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.bh-agent-modal__slider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8f9ff;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
}

.bh-agent-modal__slider input[type=range] {
  flex: 1;
}

.bh-agent-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* === Pricing Page === */
.bh-pricing-hero {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  background: #050b1d;
  overflow: hidden;
}

.bh-pricing-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(148, 163, 253, 0.4), transparent 45%), radial-gradient(circle at 80% 0, rgba(236, 72, 153, 0.4), transparent 50%);
  opacity: 0.6;
}

.bh-pricing-hero .container {
  position: relative;
  z-index: 1;
}

.bh-pricing-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bh-pricing-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-weight: 500;
}

.bh-pricing-social {
  background: #f8f9ff;
}

.bh-pricing-testimonial {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  height: 100%;
}

.bh-pricing-testimonial__rating i {
  color: #fbbf24;
}

.bh-faq-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  padding: 1.25rem;
  height: 100%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.bh-pricing-cta {
  position: relative;
  padding: 4rem 0;
  color: #fff;
  text-align: center;
}

.bh-pricing-cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6d5afc, #8f5af7);
  opacity: 0.9;
  z-index: -1;
}

.bh-subscription-plan {
  background: #fff;
  border-radius: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}

.bh-subscription-plan__title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bh-subscription-plan__icon {
  width: 56px;
  height: 56px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.35);
}

.bh-subscription-plan__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  color: #4b5563;
}

.bh-subscription-plan__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  color: #4b5563;
  font-weight: 600;
}

.bh-subscription-plan__tags span {
  background: #f5f7ff;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
}

.bh-subscription-plan__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.bh-subscription-card {
  background: #fff;
  border-radius: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.bh-subscription-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.bh-subscription-package__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  background: #fcfcff;
  margin-top: 1.25rem;
}

.bh-subscription-table {
  font-size: 0.95rem;
}

.bh-subscription-table thead th {
  color: #6b7280;
  font-weight: 600;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.bh-subscription-table tbody td {
  padding: 1rem 0.75rem;
  border-color: rgba(15, 23, 42, 0.05);
}

.bh-subscription-table tr.is-included {
  background: rgba(16, 185, 129, 0.08);
}

.bh-alert {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  font-size: 0.95rem;
}

.bh-alert--warning {
  background: #fffaf0;
  border: 1px solid #fde68a;
  color: #92400e;
}

.bh-subscription-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  background: #fcfcff;
}

.bh-subscription-usage {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
  height: 100%;
}

.bh-subscription-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.bh-subscription-usage .progress {
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  margin: 0.4rem 0 1rem;
}

.bh-subscription-usage .progress-bar {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: inherit;
}

.progress--green .progress-bar {
  background: #34d399;
}

.progress--orange .progress-bar {
  background: #f97316;
}

.bh-subscription-history {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.5rem;
  height: 100%;
}

.bh-subscription-history table th {
  color: #6b7280;
}

@media (max-width: 991.98px) {
  .bh-dashboard-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .bh-dashboard-sidebar.is-open {
    transform: translateX(0);
  }
  .bh-dashboard-main {
    margin-left: 0;
    padding: 1rem;
  }
}
@media (max-width: 767.98px) {
  .bh-dashboard-header__actions {
    align-items: flex-start;
  }
  .bh-dashboard-search {
    width: 100%;
    min-width: auto;
  }
  .bh-dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
  }
}
.bh-section--dark .bh-link-button {
  color: #A5B4FC;
}

.bh-preview-note {
  margin-top: 0.5rem;
  color: var(--ash);
}

.bh-link-button {
  background: none;
  border: 0;
  color: var(--bh-primary);
  font-weight: 600;
  padding: 0;
}

.bh-dashboard-card--live {
  padding: 2.25rem;
}

.bh-live-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

@media (max-width: 991.98px) {
  .bh-live-layout {
    grid-template-columns: 1fr;
  }
}
.bh-live-chatlist {
  border: 1px solid #E5E7F5;
  border-radius: 1.25rem;
  background: #F9FAFF;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bh-live-chatlist__item {
  background: #fff;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid transparent;
}

.bh-live-chatlist__item.is-active {
  border-color: rgba(91, 103, 222, 0.35);
  box-shadow: 0 10px 25px rgba(91, 103, 222, 0.15);
}

.bh-live-transcript {
  border: 1px solid #E5E7F5;
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-live-transcript__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.bh-live-transcript__body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.bh-live-bubble {
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  background: #F8F9FF;
  color: #1F2937;
}

.bh-live-bubble.is-user {
  align-self: flex-end;
  background: #EEF2FF;
}

.bh-live-bubble.is-human {
  align-self: flex-start;
  border: 1px dashed #CBD5F5;
  background: #fff;
}

.bh-live-bubble span {
  display: block;
  font-size: 0.75rem;
  color: var(--ash);
  margin-top: 0.35rem;
}

.bh-live-transcript__footer {
  display: flex;
  gap: 0.5rem;
}

.bh-live-transcript__footer input {
  flex: 1;
  border: 1px solid #E5E7F5;
  border-radius: 0.9rem;
  padding: 0.55rem 0.75rem;
}

.bh-live-transcript__footer button {
  width: 48px;
  border-radius: 0.9rem;
  border: 0;
  background: #EEF2FF;
  color: #94A3B8;
}

/* Buttons (custom, not overriding Bootstrap) */
.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.bh-button {
  border-radius: var(--radius-full);
  border: 0;
  padding: 0.6rem 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  justify-content: center;
}

.bh-button--primary {
  background: var(--bh-grad);
  color: #fff;
}

.bh-button--primary:hover {
  background: var(--bh-grad-secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.bh-button--secondary {
  border: 1.5px solid var(--bh-primary);
  color: var(--bh-primary);
  background: #fff;
}

.bh-button--secondary:hover {
  background: #EEF2FF;
}

.bh-button--tertiary {
  border: 0;
  color: var(--bh-primary);
  background: transparent;
}

.bh-button--tertiary:hover {
  background: #EEF2FF;
}

.bh-button--danger {
  background: var(--bh-accent-red);
  color: #fff;
}

.bh-button--danger:hover {
  background: #C53030;
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.bh-button--ghost {
  border: 1.5px solid var(--bh-primary);
  color: var(--bh-primary);
  background: transparent;
  transition: all 0.2s;
}
.bh-button--ghost:hover {
  background: #EEF2FF;
  color: var(--bh-primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bh-button--accent {
  background: linear-gradient(120deg, #ff8b5f, #ff4fb0);
  color: #fff;
  border: 0;
  padding: 0.9rem 2.5rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(255, 121, 80, 0.4);
}

.bh-button--accent-account {
  padding: 0.6rem 1rem;
  box-shadow: none;
}

.bh-button--accent:hover {
  box-shadow: 1px 4px 20px rgba(255, 132, 94, 0.9);
  transform: translateY(-1px);
}

/* Button Sizes */
.bh-button--small {
  padding: 0.4rem 0.75rem;
  font-size: var(--body-small-size);
}

.bh-button--medium {
  padding: 0.6rem 1rem;
  font-size: var(--body-base-size);
}

.bh-button--large {
  padding: 0.75rem 1.5rem;
  font-size: var(--body-large-size);
}

/* Badge */
.bh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  color: #fff;
  background: var(--bh-grad);
  font-size: var(--body-small-size);
  font-weight: 600;
}

.bh-badge--grey {
  background: var(--bh-neutral-medium) !important;
}

.bh-badge--blue {
  background: var(--bh-accent-blue) !important;
}

.bh-badge--purple {
  background: var(--bh-grad) !important;
}

.bh-badge--green {
  background: var(--bh-accent-green) !important;
}

.bh-badge--yellow {
  background: var(--bh-accent-yellow) !important;
}

.bh-badge--red {
  background: var(--bh-accent-red) !important;
}

/* Card */
.bh-card {
  border: 1px solid var(--cloud);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  background: #fff;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.bh-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bh-card:hover {
  box-shadow: var(--shadow-large);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.bh-card:hover::after {
  opacity: 1;
}

.bh-card--glass {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Input Fields */
.bh-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cloud);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-inter);
  font-size: var(--body-base-size);
  transition: all 0.2s;
}

.bh-input:focus {
  outline: none;
  border-color: var(--bh-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.bh-input::placeholder {
  color: var(--ash);
}

.bh-input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

.bh-input:read-only {
  background: #f9fafb;
  cursor: default;
}

.bh-input.is-invalid {
  border-color: #E53E3E;
}

.bh-input.is-invalid:focus {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.bh-input.is-valid {
  border-color: #38B2AC;
}

.bh-input.is-valid:focus {
  border-color: #38B2AC;
  box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.1);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: #E53E3E;
}

.valid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: #38B2AC;
}

textarea.bh-input {
  resize: vertical;
  min-height: 100px;
}

select.bh-input {
  cursor: pointer !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 12px 8px !important;
  padding-right: 2.75rem !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select.bh-input:disabled {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23A0AEC0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

select.bh-input[multiple] {
  background-image: none;
  padding-right: 1rem;
  min-height: 120px;
}

select.bh-input[multiple] option {
  padding: 0.5rem;
  margin: 0.25rem 0;
}

select.bh-input optgroup {
  font-weight: 600;
  color: var(--ink);
  padding: 0.5rem 0;
}

select.bh-input option {
  padding: 0.5rem;
  color: var(--ink);
}

/* Metrics Tiles */
.bh-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bh-metric__value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--bh-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bh-metric__label {
  font-size: var(--body-small-size);
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Integration Pills */
.bh-integration {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  background: var(--cloud);
  border-radius: var(--radius-full);
  font-size: var(--body-small-size);
  color: var(--ink);
  gap: 0.5rem;
}

/* Code Blocks */
.bh-code {
  background: var(--bh-neutral-darkest);
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: var(--body-small-size);
  line-height: 1.6;
  overflow-x: auto;
  position: relative;
}

.bh-code__copy {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: #fff;
  padding: 0.5rem;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s;
}

.bh-code__copy:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Hero */
.bh-hero {
  position: relative;
}

.bh-hero__title {
  font-weight: 800;
}

.bh-hero__title--light-text {
  background: linear-gradient(139deg, #95A8FE 0%, #B26DF9 88.52%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bh-hero__subtitle {
  color: #fff;
}

.bh-hero__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.bh-hero__trust-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.bh-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  color: var(--ink);
  font-size: 0.95rem;
}

.bh-hero__trust-icon {
  color: #21C17A;
  font-size: 1.1rem;
  line-height: 1;
}

.bh-hero__media {
  position: relative;
}

.bh-partners {
  background: linear-gradient(90deg, #131728 2.17%, #2B2B52 51.31%, #111525 100.44%);
  padding: 2rem 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.bh-partners__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  flex-wrap: nowrap;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .bh-partners__inner {
    justify-content: center;
  }
}

.bh-partners__logo {
  max-height: 38px;
  width: auto;
  opacity: 0.9;
}

.bh-partners__logo:hover {
  opacity: 1;
  filter: grayscale(0.3) brightness(1.2);
}

.bh-section__eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--bh-primary);
}

.bh-section__divider {
  width: 120px;
  height: 16px;
  margin: 0 auto 2rem;
  background: url("../img/underline.png") no-repeat center/contain;
  image-rendering: auto;
}

.bh-section__title {
  font-weight: 800;
}

.bh-section__description {
  color: var(--ash);
  max-width: 640px;
  margin: 0 auto;
}

.bh-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.bh-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--cloud);
  background: #fff;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: all 0.2s;
}

.bh-pill i {
  color: var(--bh-primary);
}

.bh-pill:hover {
  transform: translateY(-2px);
  border-color: var(--bh-primary);
}

.bh-deploy-card {
  background: #fff;
  border-radius: 1.75rem;
  padding: 1.8rem;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.bh-deploy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bh-deploy-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: #EEF2FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bh-primary);
}

.bh-deploy-card__icon--accent {
  background: #FFF1F1;
  color: #FF6B6B;
}

.bh-deploy-card__icon--success {
  background: #ECFDF5;
  color: #10B981;
}

.bh-deploy-card__icon--danger {
  background: #FFE4E4;
  color: #DD1C1A;
}

.bh-deploy-card h3 {
  font-weight: 700;
  margin: 0;
}

.bh-deploy-card p {
  margin: 0;
  color: var(--ash);
  line-height: 1.6;
}

.bh-deploy-card:hover {
  transform: translateY(-6px);
}

.bh-deploy-card:hover::before {
  opacity: 1;
}

.bh-feature-card {
  min-height: 220px;
}

.bh-steps {
  position: relative;
  overflow: hidden;
}

.bh-steps__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  z-index: 1;
}

.bh-steps__grid::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(149, 168, 254, 0.4), rgba(178, 109, 249, 0.2));
  z-index: -1;
}

@media (max-width: 767.98px) {
  .bh-steps__grid::before {
    display: none;
  }
}
.bh-step {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  text-align: left;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bh-step__badge {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: var(--bh-grad);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(118, 75, 162, 0.3);
}

.bh-step h3 {
  font-weight: 700;
  margin: 0;
}

.bh-step p {
  margin: 0;
  color: var(--ash);
  line-height: 1.6;
}

.bh-steps__code {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bh-video, .bh-dashboard {
  padding: clamp(80px, 10vw, 40px) 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bh-video .container, .bh-dashboard .container {
  position: relative;
  z-index: 1;
}
.bh-video .bh-shapes img, .bh-dashboard .bh-shapes img {
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
}

.bh-video::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 480px;
  height: 480px;
  background: rgba(118, 75, 162, 0.35);
  filter: blur(200px);
}

.bh-video__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.bh-video__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.bh-video__description {
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.bh-video__stage {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 32px;
  background: linear-gradient(145deg, #5b5b9f 0%, #474786 40%, #3c3c71 100%);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.bh-video__stage::before,
.bh-video__stage::after {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.bh-video__stage::after {
  inset: 64px;
  opacity: 0.7;
}

.bh-video__play {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 0;
  background: var(--bh-grad);
  color: #fff;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
  z-index: 1;
}

.bh-video__play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.bh-video__time {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(2, 4, 23, 0.65);
  color: #fff;
  padding: 0.2rem 0.7rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 1;
}

.bh-video__benefits {
  color: #fff;
}

.bh-video__benefit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.bh-video__benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.bh-video__benefit h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.bh-video__benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.bh-video__cta {
  margin-top: 2rem;
  display: inline-flex;
}

.bh-stats {
  position: relative;
  overflow: hidden;
}

.bh-stats__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(149, 168, 254, 0.15), rgba(178, 109, 249, 0.05));
  filter: blur(120px);
  opacity: 0.7;
  pointer-events: none;
}

.bh-stats__grid {
  position: relative;
}

.bh-stats-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.bh-stats-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bh-stats-card:hover {
  transform: translateY(-6px);
}

.bh-stats-card:hover::after {
  opacity: 1;
}

.bh-stats-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: #EEF2FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bh-primary);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.bh-stats-card__icon--accent {
  background: #FFF1F1;
  color: #FF6B6B;
}

.bh-stats-card__icon--success {
  background: #ECFDF5;
  color: #10B981;
}

.bh-stats-card__value {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  color: var(--ink);
}

.bh-stats-card__label {
  color: var(--ash);
  font-size: 0.95rem;
}

/* Animated Chat Component */
#animated-chat {
  max-width: 400px;
  margin-left: auto;
}

.bh-chat-wrapper {
  position: relative;
  max-width: 100%;
}

.bh-chat {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-large);
  overflow: hidden;
  max-width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (max-width: 991.98px) {
  .bh-chat {
    height: 400px;
    margin-top: 2rem;
  }
}
.bh-chat__header {
  background: var(--bh-grad);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bh-chat__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--bh-primary);
  flex-shrink: 0;
}

.bh-chat__avatar-icon {
  font-size: 20px;
  line-height: 1;
  color: currentColor;
}

.bh-chat__header-info {
  flex: 1;
}

.bh-chat__header-name {
  font-weight: 600;
  font-size: 0.9375rem;
  margin: 0;
}

.bh-chat__header-status {
  font-size: 0.75rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bh-chat__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.bh-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--paper);
  /* Performance optimization - contain layout and paint */
  contain: layout style paint;
}

.bh-chat__message {
  display: flex;
  gap: 0.75rem;
  animation: fadeInUp 0.3s ease-out;
  max-width: 85%;
}

.bh-chat__message--bot {
  align-self: flex-start;
}

.bh-chat__message--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.bh-chat__message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  color: #fff;
}

.bh-chat__message--bot .bh-chat__message-avatar {
  background: #fff;
  color: var(--bh-primary);
  border: 1px solid var(--cloud);
}

.bh-chat__message--user .bh-chat__message-avatar {
  background: var(--bh-grad);
}

.bh-chat__message-avatar-icon {
  font-size: 18px;
  line-height: 1;
  color: currentColor;
}

.bh-chat__message-content {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  position: relative;
}

.bh-chat__message--bot .bh-chat__message-content {
  background: #fff;
  border: 1px solid var(--cloud);
  border-top-left-radius: 4px;
}

.bh-chat__message--user .bh-chat__message-content {
  background: var(--bh-grad);
  color: #fff;
  border-top-right-radius: 4px;
}

.bh-chat__message-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  word-wrap: break-word;
  color: var(--ink);
}

.bh-chat__message--user .bh-chat__message-text {
  color: #fff;
}

.bh-chat__message-time {
  font-size: 0.6875rem;
  color: var(--ash);
  margin-top: 0.25rem;
  display: block;
}

.bh-chat__message--user .bh-chat__message-time {
  color: rgba(255, 255, 255, 0.8);
}

.bh-chat__input-area {
  padding: 1rem 1.25rem;
  background: #fff;
  border-top: 1px solid var(--cloud);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.bh-chat__input {
  flex: 1;
  border: 1px solid var(--cloud);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-inter);
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: all 0.2s;
}

.bh-chat__input:focus {
  border-color: var(--bh-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.bh-chat__input::placeholder {
  color: var(--ash);
}

.bh-chat__send-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--bh-grad);
  border: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.bh-chat__send-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.bh-chat__send-btn:active {
  transform: translateY(0);
}

.bh-chat__send-icon {
  font-size: 18px;
  line-height: 1;
  color: currentColor;
}

/* Floating Metric Cards */
.bh-chat-metric {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-medium);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  min-width: 160px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bh-chat-metric--top-left {
  top: 75px;
  left: -65px;
}

.bh-chat-metric--bottom-right {
  bottom: 95px;
  right: -60px;
}

.bh-chat-metric__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bh-chat-metric__icon--green {
  background: #d1fae5;
  color: #059669;
}

.bh-chat-metric__icon--purple {
  background: #ede9fe;
  color: var(--bh-primary);
}

.bh-chat-metric__icon-svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.bh-chat-metric__content {
  flex: 1;
}

.bh-chat-metric__label {
  font-size: 0.75rem;
  color: var(--ash);
  margin: 0 0 0.25rem 0;
}

.bh-chat-metric__value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 991.98px) {
  .bh-chat-metric {
    min-width: 140px;
    padding: 0.75rem;
  }
  .bh-chat-metric--top-left {
    top: -10px;
    left: -10px;
  }
  .bh-chat-metric--bottom-right {
    bottom: -10px;
    right: -10px;
  }
  .bh-chat-metric__icon {
    width: 32px;
    height: 32px;
  }
  .bh-chat-metric__icon-svg {
    width: 16px;
    height: 16px;
  }
  .bh-chat-metric__value {
    font-size: 1rem;
  }
}
.bh-chat__typing {
  display: flex;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  align-items: center;
}

.bh-chat__typing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bh-neutral-medium);
  animation: typing 1.4s infinite;
}

.bh-chat__typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.bh-chat__typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bh-chat__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: currentColor;
  margin-left: 2px;
  animation: blink 1s infinite;
  vertical-align: baseline;
  /* Hardware acceleration */
  will-change: opacity;
  transform: translateZ(0);
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
/* Testimonials Section */
.bh-testimonials {
  color: #fff;
  padding: clamp(80px, 10vw, 120px) 0;
}

.bh-testimonials__carousel {
  max-width: 900px;
  margin: 0 auto;
}

.bh-testimonial-card {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem;
  color: var(--ink);
  text-align: left;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bh-testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.bh-testimonial-card__stars i {
  color: var(--bh-primary);
  font-size: 1.25rem;
}

.bh-testimonial-card__quote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.5rem;
  flex: 1;
}

.bh-testimonial-card__badge {
  display: inline-block;
  background: #EEF2FF;
  color: var(--bh-primary);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.bh-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bh-testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bh-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.bh-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bh-testimonial-card__info h4 {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.bh-testimonial-card__info p {
  margin: 0.25rem 0 0;
  color: var(--ash);
  font-size: 0.9rem;
}

.bh-testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.bh-testimonials__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.bh-testimonials__arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.bh-testimonials__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.bh-testimonials__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.bh-testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.bh-testimonials__dot.is-active {
  width: 32px;
  border-radius: 999px;
  background: var(--bh-primary);
  border-color: var(--bh-primary);
}

.bh-testimonials__stats {
  margin-top: 4rem;
  flex-wrap: nowrap;
  overflow-x: auto;
}
@media (min-width: 768px) {
  .bh-testimonials__stats {
    margin-top: 4rem;
  }
}

.bh-testimonials__stat {
  text-align: center;
}

.bh-testimonials__stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--bh-primary);
  margin: 0;
  line-height: 1;
}

.bh-testimonials__stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.5rem 0 0;
}

@media (max-width: 767.98px) {
  .bh-testimonial-card {
    padding: 2rem;
    min-height: auto;
  }
  .bh-testimonial-card__quote {
    font-size: 1rem;
  }
  .bh-testimonials__stat-value {
    font-size: 2.25rem;
  }
}
.bh-news {
  background: #F8F9FF;
}

.bh-news-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-items: flex-start;
  justify-content: flex-start;
}

.bh-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.12);
}

.bh-news-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  padding: 0.2rem 0.9rem;
  font-weight: 600;
  font-size: 0.85rem;
  background: #EEF2FF;
  color: var(--bh-primary);
}

.bh-news-card__tag--orange {
  background: #FFE8D1;
  color: #F97316;
}

.bh-news-card__tag--green {
  background: #DCFCE7;
  color: #15803D;
}

.bh-news-card__tag--blue {
  background: #E0EDFF;
  color: #2563EB;
}

.bh-news-card__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 700;
}

.bh-news-card__title-link {
  color: var(--ink);
  text-decoration: none;
  display: block;
  height: 100%;
}

.bh-news-card__title-link:hover {
  color: var(--bh-primary);
}
.bh-news-card__title-link:hover .bh-news-card__icon {
  transform: translateX(6px);
}

.bh-news-card__excerpt {
  margin: 0;
  color: var(--ash);
  flex: 1;
}

.bh-news-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #ECEFFC;
  padding-top: 1rem;
  width: 100%;
}

.bh-news-card__author {
  margin: 0;
  font-weight: 600;
}

.bh-news-card__details {
  margin: 0.25rem 0 0;
  color: var(--ash);
  font-size: 0.9rem;
}

.bh-news-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #E5E7F5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bh-primary);
  transition: all 0.2s;
}

.bh-security {
  background: #050314;
  color: #fff;
  text-align: center;
}

.bh-security .bh-section__title,
.bh-security .bh-section__description {
  color: #fff;
}

.bh-security-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
}
.bh-security-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}

.bh-security-card__icon {
  font-size: 2rem;
  color: #A5B4FC;
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  border: 1px solid rgba(165, 180, 252, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.bh-security-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.bh-security-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.bh-faq {
  background: #F8F9FF;
}

.bh-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-faq__item {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #E5E7F5;
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.bh-faq__item summary {
  list-style: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.bh-faq__item summary::-webkit-details-marker {
  display: none;
}

.bh-faq__item summary span {
  flex: 1;
}

.bh-faq__item summary i {
  font-size: 1rem;
  transition: transform 0.2s ease, color 0.2s ease;
  color: var(--ink);
}

.bh-faq__item[open] summary {
  color: var(--bh-primary);
}

.bh-faq__item[open] summary i {
  transform: rotate(180deg);
  color: var(--bh-primary);
}

.bh-faq__item p {
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: var(--ash);
  line-height: 1.6;
}

.bh-faq__cta {
  max-width: 720px;
  margin: 0 auto;
  background: #EEF0FF;
  border-radius: 1.5rem;
  padding: 2rem;
}

.bh-faq__cta h3 {
  margin: 0 0 0.5rem;
}

.bh-auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 6, 32, 0.65);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 2000;
}

.bh-auth-modal.is-visible {
  display: flex;
}

.bh-auth-dialog {
  width: 100%;
  max-width: 420px;
  position: relative;
}

.bh-auth-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(10, 10, 30, 0.45);
  text-align: left;
}

.bh-auth-header h3 {
  margin: 0 0 0.25rem;
  font-size: 1.9rem;
  font-weight: 700;
  color: #1C1A2E;
}

.bh-auth-header p {
  margin: 0;
  color: #6e6c80;
  font-size: 0.95rem;
}

.bh-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.bh-auth-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4c4a66;
}

.bh-auth-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid #E2E4F0;
  border-radius: 12px;
  padding: 0 0.85rem;
  background: #fff;
}

.bh-auth-field input {
  border: 0;
  flex: 1;
  padding: 0.85rem 0.5rem;
  background: transparent;
}

.bh-auth-field i {
  color: #8a87a0;
}

.bh-auth-field--password button {
  border: 0;
  background: none;
  color: #8a87a0;
}

.bh-auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.bh-auth-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4c4a66;
}

.bh-auth-actions .bh-auth-link {
  color: #6F64FF;
  font-weight: 600;
  text-decoration: none;
}

.bh-auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #8e8aab;
}

.bh-auth-divider::before,
.bh-auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E6E6F2;
}

.bh-auth-providers {
  display: flex;
  gap: 1rem;
}

.bh-provider-button {
  flex: 1;
  border: 1px solid #E5E5F4;
  border-radius: 12px;
  padding: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  background: #fff;
}

.bh-auth-switch {
  text-align: center;
  margin-top: 1rem;
  color: #6e6c80;
}

.bh-auth-switch a {
  color: #6F64FF;
  font-weight: 600;
  text-decoration: none;
}

.bh-auth-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-button--signin {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1500;
}

.bh-footer {
  background: #1e2342;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.bh-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2.5rem;
}

.bh-footer__brand p {
  margin-top: 1rem;
  max-width: 260px;
}

.bh-footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  flex: 1;
}

.bh-footer__links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.bh-footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}

.bh-footer__links a:hover {
  color: #fff;
}

.bh-footer__newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bh-footer__form {
  display: flex;
  gap: 1rem;
  flex: 1;
}

.bh-footer__form input {
  flex: 1;
  border-radius: 999px;
  border: 0;
  padding: 0.9rem 1.25rem;
}

.bh-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
  font-size: 0.95rem;
}

.bh-footer__social {
  display: flex;
  gap: 1.5rem;
}

.bh-footer__social a {
  color: rgba(255, 255, 255, 0.8);
}

.bh-footer__social a:hover {
  color: #fff;
}

/* CTA banner */
.bh-cta {
  background: linear-gradient(120deg, #4c36b0, #5f5bff, #5186ff);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bh-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bg-hex.svg") center/cover no-repeat;
  opacity: 0.2;
}

.bh-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-cta__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  background: none;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

.bh-cta__subtitle {
  margin: 0 auto;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.85);
}

.bh-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.bh-cta .bh-button--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 0.85rem 2.3rem;
  border-radius: 999px;
}
.bh-cta .bh-button--ghost:hover {
  color: var(--bh-primary);
}

/* Account Dropdown Menu */
.bh-account-menu {
  min-width: 200px;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-top: 0.5rem;
}

.bh-account-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  color: #334155;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.bh-account-menu .dropdown-item:hover,
.bh-account-menu .dropdown-item:focus {
  background: rgba(102, 126, 234, 0.1);
  color: var(--bh-primary);
}

.bh-account-menu .dropdown-divider {
  margin: 0.5rem 0;
  border-color: rgba(0, 0, 0, 0.08);
}

.bh-account-menu .dropdown-item i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Helpers (BEM-agnostic) */
.u-bg-grad {
  background: var(--bh-grad);
}

.u-bg-grad-secondary {
  background: var(--bh-grad-secondary);
}

.u-bg-grad-tertiary {
  background: var(--bh-grad-tertiary);
}

.u-shadow {
  box-shadow: var(--shadow);
}

.u-shadow-small {
  box-shadow: var(--shadow-small);
}

.u-shadow-medium {
  box-shadow: var(--shadow-medium);
}

.u-shadow-large {
  box-shadow: var(--shadow-large);
}

.u-rounded {
  border-radius: var(--radius);
}

.u-rounded-none {
  border-radius: var(--radius-none);
}

.u-rounded-xs {
  border-radius: var(--radius-xs);
}

.u-rounded-s {
  border-radius: var(--radius-s);
}

.u-rounded-m {
  border-radius: var(--radius-m);
}

.u-rounded-l {
  border-radius: var(--radius-l);
}

.u-rounded-xl {
  border-radius: var(--radius-xl);
}

.u-rounded-full {
  border-radius: var(--radius-full);
}

/* Spacing utilities */
.u-spacing-xs {
  gap: var(--spacing-xs);
}

.u-spacing-s {
  gap: var(--spacing-s);
}

.u-spacing-m {
  gap: var(--spacing-m);
}

.u-spacing-l {
  gap: var(--spacing-l);
}

.u-spacing-xl {
  gap: var(--spacing-xl);
}

.u-spacing-2xl {
  gap: var(--spacing-2xl);
}

.u-spacing-3xl {
  gap: var(--spacing-3xl);
}

.u-spacing-4xl {
  gap: var(--spacing-4xl);
}

/* SVG background positioning */
.u-bg-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
}

/* Glassmorphism effect */
.u-glass {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Grain texture (can be applied via background image) */
.u-grain {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}
