/* ================================================================
   BONZA CHAT — Homepage Styles (bn_home.css)
   Pure CSS — NO Bootstrap dependencies.
   All classes use `bh-` prefix (bonza home).
   Class names match BnHomeSections.jsx + bn-home.astro exactly.
   ================================================================ */

/* ========== CSS VARIABLES ========== */
:root {
  --purple-300: #DFBCFF;
  --purple-400: #CC95FF;
  --purple-800: #432362;
  --purple-900: #1F102D;
  --neutral-400: #9E9E9E;
  --neutral-500: #999;
  --neutral-700: #2E2E2E;
  --neutral-800: #131313;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body.bh-body {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }


/* ========== SHARED LAYOUT ========== */
.bh-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 16px;
}

.bh-text-center { text-align: center; }

.bh-section-gap { padding: 80px 0; }


/* ========== SHARED TYPOGRAPHY ========== */
.bh-section-title {
  font-size: 32px;
  font-weight: 500;
  color: var(--purple-400);
  line-height: 40px;
  text-align: center;
  margin-bottom: 8px;
}

.bh-section-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 20px;
  text-align: center;
  margin-bottom: 0;
}


/* ========== SHARED BUTTONS ========== */
.bh-btn-cta {
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 10px 32px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  box-shadow: 0 2px 20px rgba(255, 233, 252, 0.56);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.bh-btn-cta:hover { opacity: 0.9; color: #000; }

.bh-btn-cta-badge {
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 4px 4px 4px 24px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  box-shadow: 0 2px 20px rgba(255, 233, 252, 0.56);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.bh-btn-cta-badge:hover { opacity: 0.9; color: #000; }

.bh-badge-free {
  background: var(--purple-300);
  border-radius: 8px;
  padding: 6px 16px;
  font-weight: 600;
  font-size: 14px;
}


/* ========== SHARED COMPONENTS ========== */
.bh-tag-purple {
  background: var(--purple-900);
  border: 1px solid var(--purple-800);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  color: var(--purple-400);
  display: inline-block;
}

.bh-v-divider {
  width: 1px;
  background: var(--neutral-700);
  align-self: stretch;
  flex-shrink: 0;
}

.bh-feature-col {
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.bh-feature-title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.bh-feature-desc {
  font-size: 12px;
  color: var(--neutral-400);
  line-height: 18px;
}

.bh-step-icon-box {
  background: var(--purple-900);
  border: 1px solid var(--purple-800);
  border-radius: 20px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.bh-step-icon-box img {
  width: 56px;
  height: 56px;
}

.bh-tags-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


/* ========================================================================
   1. HERO SECTION (from bn-home.astro — SSR)
   ======================================================================== */
.bh-hero {
  position: relative;
  width: 100%;
  min-height: 868px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}

.bh-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/home/bg-image.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 0;
}

.bh-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 53%, #000 84%);
  z-index: 1;
}

.bh-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Navbar */
.bh-navbar {
  position: absolute;
  z-index: 10;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 448px;
  max-width: calc(100% - 32px);
  padding: 12px 12px 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bh-navbar__logo { width: 25px; height: 25px; flex-shrink: 0; }

.bh-navbar__actions { display: flex; align-items: center; gap: 12px; }

.bh-navbar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  border: none;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.bh-navbar__btn--ghost {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.bh-navbar__btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.bh-navbar__btn--primary {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}
.bh-navbar__btn--primary:hover { background: #e8e8e8; }


/* Hero Content */
.bh-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 161px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 48px;
  width: 448px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bh-hero__title {
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
  color: var(--purple-400);
  margin-bottom: 0;
}

.bh-hero__title-accent { color: var(--purple-400); }

.bh-hero__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin: 0;
}

.bh-hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.bh-tag {
  background: var(--purple-900);
  border: 1px solid var(--purple-800);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--purple-400);
  display: inline-block;
  white-space: nowrap;
}

.bh-hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.bh-hero__stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 2px;
}

/* Hero CTA */
.bh-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 4px 4px 4px 24px;
  text-decoration: none;
  box-shadow: 0 2px 20px 0 rgba(255, 233, 252, 0.56);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.bh-cta:hover { background: #f5f5f5; color: #000; }

/* Character Cards Row */
.bh-hero__cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  padding: 0 20px 40px;
  overflow: hidden;
}

.bh-char-card {
  flex-shrink: 0;
  width: 204px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.bh-char-card__img {
  width: 204px;
  height: 272px;
  border-radius: 12px;
  overflow: hidden;
  object-fit: cover;
  display: block;
  background: #111;
}

.bh-char-card__info { text-align: center; }
.bh-char-card__name { font-weight: 500; font-size: 18px; line-height: 24px; color: #fff; margin: 0; }
.bh-char-card__desc { font-size: 12px; font-weight: 400; color: var(--neutral-400); line-height: 16px; margin: 0; }

/* Card rotations */
.bh-char-card:nth-child(1) { transform: rotate(-5deg); padding-top: 16px; }
.bh-char-card:nth-child(2) { transform: rotate(-2deg); padding-top: 6px; }
.bh-char-card:nth-child(3) { transform: rotate(-1deg); }
.bh-char-card:nth-child(4) { transform: rotate(1deg); }
.bh-char-card:nth-child(5) { transform: rotate(2deg); padding-top: 6px; }
.bh-char-card:nth-child(6) { transform: rotate(5deg); padding-top: 16px; }

/* Skeleton placeholders */
.bh-skeleton-card { pointer-events: none; }
.bh-skeleton-img {
  width: 100%;
  height: 272px;
  border-radius: 12px;
  background: linear-gradient(110deg, var(--neutral-800) 8%, #1a1a1a 18%, var(--neutral-800) 33%);
  background-size: 200% 100%;
  animation: bh-shimmer 1.5s linear infinite;
}
.bh-skeleton-line {
  border-radius: 4px;
  background: linear-gradient(110deg, var(--neutral-700) 8%, #333 18%, var(--neutral-700) 33%);
  background-size: 200% 100%;
  animation: bh-shimmer 1.5s linear infinite;
}
.bh-skeleton-name { height: 14px; width: 70%; margin: 0 auto 6px; }
.bh-skeleton-desc { height: 10px; width: 50%; margin: 0 auto; }
@keyframes bh-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.bh-char-card:nth-child(1):hover { transform: rotate(-5deg) translateY(-6px); }
.bh-char-card:nth-child(2):hover { transform: rotate(-2deg) translateY(-6px); }
.bh-char-card:nth-child(3):hover { transform: rotate(-1deg) translateY(-6px); }
.bh-char-card:nth-child(4):hover { transform: rotate(1deg) translateY(-6px); }
.bh-char-card:nth-child(5):hover { transform: rotate(2deg) translateY(-6px); }
.bh-char-card:nth-child(6):hover { transform: rotate(5deg) translateY(-6px); }


/* ========================================================================
   2. CHAT PREVIEW SECTION
   ======================================================================== */
.bh-chat-preview {
  position: relative;
  overflow: hidden;
}

/* Floating hero images */
.bh-hero-float {
  position: absolute;
  object-fit: cover;
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
}

.bh-float-1 { top: 10%; left: 8%; width: 164px; height: 164px; }
.bh-float-2 { top: 18%; right: 2%; width: 164px; height: 164px; }
.bh-float-3 { top: 72%; right: 12%; width: 164px; height: 164px; }
.bh-float-4 { top: 55%; left: 16%; width: 116px; height: 116px; }
.bh-float-5 { top: 40%; right: 18%; width: 116px; height: 116px; }
.bh-float-6 { bottom: 0; left: 0; width: 164px; height: 164px; }

/* Chat card */
.bh-chat-card {
  background: #000;
  border: 1px solid var(--neutral-700);
  border-radius: 40px;
  padding: 16px;
  max-width: 448px;
  width: 100%;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.bh-chat-messages {
  padding: 0 12px;
}

.bh-msg-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 29px;
}

.bh-msg-group:last-child {
  margin-bottom: 32px;
}

.bh-chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bh-bubble {
  background: var(--neutral-700);
  border-radius: 16px 16px 16px 4px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  display: inline-block;
  max-width: 320px;
}

.bh-bubble-left {
  align-self: flex-start;
  color: #fff;
}

.bh-chat-input {
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: 32px;
  padding: 8px 8px 8px 24px;
  display: flex;
  align-items: center;
}

.bh-chat-input input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--neutral-500);
  font-size: 12px;
  flex: 1;
  font-family: 'Heebo', sans-serif;
}

.bh-chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

.bh-chat-send img {
  width: 24px;
  height: 24px;
}


/* ========================================================================
   3. STEPS SECTION
   ======================================================================== */
.bh-steps {
  /* section-gap applied via class */
}

.bh-steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  padding-top: 12px;
}


/* ========================================================================
   4. WHY BONZA SECTION
   ======================================================================== */
.bh-why {
  /* section-gap applied via class */
}

.bh-why-container {
  background: var(--neutral-800);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 880px;
}

.bh-why-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: blur(22px);
}

.bh-why-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Overlapping cards */
.bh-why-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 48px 0;
}

.bh-why-card {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #fff;
}

.bh-why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bh-why-card-left {
  width: 172px;
  height: 252px;
  transform: rotate(-10deg);
  opacity: 0.6;
  margin-right: -20px;
}

.bh-why-card-center {
  width: 212px;
  height: 311px;
  border-color: var(--purple-400);
  box-shadow: 0 0 60px rgba(204, 149, 255, 0.6);
  z-index: 2;
}

.bh-why-card-right {
  width: 172px;
  height: 252px;
  transform: rotate(10deg);
  opacity: 0.6;
  margin-left: -20px;
}

/* Features row */
.bh-features-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 920px;
  padding: 0 12px 40px;
  margin-top: 12px;
}


/* ========================================================================
   5. DESIGN YOUR COMPANION SECTION
   ======================================================================== */
.bh-companion {
  /* section-gap applied via class */
}

.bh-companion-card {
  background: #000;
  border: 1px solid var(--neutral-700);
  border-radius: 40px;
  padding: 40px 48px;
  margin-top: 56px;
  text-align: center;
}

.bh-companion-card-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #fff;
  margin-bottom: 40px;
}

/* Step indicator */
.bh-companion-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 435px;
  margin: 0 auto 40px;
  gap: 4px;
}

.bh-companion-step-num {
  width: 56px;
  height: 40px;
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}

.bh-companion-step-num.bh-active {
  background: var(--purple-400);
  border-color: var(--purple-400);
  color: #000;
}

.bh-companion-step-line {
  flex: 1;
  height: 1.5px;
  background: var(--neutral-700);
}

.bh-companion-step-line.bh-active {
  background: var(--purple-400);
}

/* Companion type cards */
.bh-companion-types {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.bh-companion-type {
  flex: 1;
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: 16px;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bh-companion-type.bh-selected {
  border-color: var(--purple-400);
  box-shadow: 0 0 20px rgba(204, 149, 255, 0.8);
}

.bh-companion-type-img-wrap {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--neutral-700);
  position: relative;
}

.bh-companion-type.bh-selected .bh-companion-type-img-wrap {
  height: 308px;
}

.bh-companion-type-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bh-companion-type:not(.bh-selected) .bh-companion-type-img {
  opacity: 0.5;
}

.bh-companion-check {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
}

.bh-companion-type-label {
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--neutral-500);
  margin: 0;
}

.bh-companion-type.bh-selected .bh-companion-type-label {
  color: #fff;
}


/* ========================================================================
   6. PRIVACY SECTION
   ======================================================================== */
.bh-privacy {
  /* section-gap applied via class */
}

.bh-privacy-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  padding-top: 12px;
}


/* ========================================================================
   7. CTA BANNER SECTION
   ======================================================================== */
.bh-cta-container {
  border: 1px solid var(--neutral-700);
  border-radius: 24px;
  overflow: visible;
  position: relative;
  background: #000;
  min-height: 330px;
  display: flex;
  align-items: stretch;
}

.bh-cta-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  opacity: 0.7;
  border-radius: 0 24px 24px 0;
}

.bh-cta-left {
  position: relative;
  z-index: 1;
  padding: 40px;
  width: 448px;
  flex-shrink: 0;
}

.bh-cta-right {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 330px;
}

.bh-cta-girl {
  position: absolute;
  bottom: 0;
  object-fit: cover;
  object-position: center top;
}

.bh-cta-girl-1 {
  left: 72px;
  height: 436px;
  width: 187px;
}

.bh-cta-girl-2 {
  left: 205px;
  height: 374px;
  width: 181px;
}


/* ========================================================================
   8. TESTIMONIALS SECTION
   ======================================================================== */
.bh-testimonials {
  overflow: hidden;
}

.bh-testimonials-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 24px 12px;
  cursor: grab;
  user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bh-testimonials-track::-webkit-scrollbar { display: none; }
.bh-testimonials-track.bh-grabbing { cursor: grabbing; }

.bh-testimonial-card {
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: 24px;
  padding: 4px;
  width: 280px;
  min-width: 280px;
  flex-shrink: 0;
}

.bh-testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 12px;
  gap: 4px;
}

.bh-testimonial-name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.bh-testimonial-stars {
  width: 84px;
}

.bh-testimonial-body {
  background: #000;
  border-radius: 16px;
  padding: 12px 20px;
  position: relative;
}

.bh-quote-icon {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.bh-quote-open {
  position: absolute;
  top: 12px;
  left: 12px;
}

.bh-quote-close {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.bh-testimonial-quote {
  font-size: 12px;
  line-height: 18px;
  margin: 8px 0;
  color: #fff;
}


/* ========================================================================
   9. PRICING SECTION
   ======================================================================== */
.bh-pricing {
  /* section-gap applied via class */
}

.bh-pricing-container {
  background: var(--neutral-800);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  width: 98%;
  margin: 0 auto;
}

.bh-pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: blur(22px);
}

.bh-pricing-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  text-align: center;
}

.bh-pricing-cards {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.bh-pricing-card {
  background: #000;
  border-radius: 24px;
  padding: 8px;
  flex: 1;
}

.bh-pricing-card.bh-popular {
  border: 1px solid var(--purple-400);
  box-shadow: 0 0 60px rgba(204, 149, 255, 0.6);
}

.bh-pricing-card-header {
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.bh-pricing-tag {
  font-size: 18px;
  color: var(--purple-400);
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 8px;
}

.bh-pricing-price {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 22px;
  margin-bottom: 8px;
}

.bh-pricing-badge-row {
  display: flex;
  justify-content: center;
}

.bh-badge-popular {
  background: #021D0F;
  border: 1px solid #054623;
  color: #56FFA4;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bh-badge-save {
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  color: var(--neutral-400);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 8px;
}

.bh-pricing-body {
  padding: 12px 12px 8px;
  text-align: left;
}

.bh-pricing-credits {
  font-size: 14px;
  color: var(--purple-400);
  text-align: center;
  margin-bottom: 8px;
}

.bh-pricing-feature {
  font-size: 12px;
  line-height: 16px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bh-pricing-feature.bh-enabled { color: #fff; }
.bh-pricing-feature.bh-disabled { color: var(--neutral-500); }

.bh-pricing-details-link {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 12px;
}

.bh-pricing-details-link:hover { color: var(--purple-400); }


/* ========================================================================
   10. FAQ SECTION
   ======================================================================== */
.bh-faq {
  /* section-gap applied via class */
}

.bh-faq-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}

.bh-faq-item {
  border-bottom: 1px solid var(--neutral-700);
  padding: 12px 0;
}

.bh-faq-item.bh-faq-open {
  border-bottom: none;
}

.bh-faq-question {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Heebo', sans-serif;
  padding: 0;
}

.bh-faq-question.bh-active { color: var(--purple-400); }

.bh-faq-toggle {
  font-size: 20px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  color: inherit;
}

.bh-faq-answer {
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  margin-top: 12px;
  line-height: 20px;
}


/* ========================================================================
   11. BLOG SECTION
   ======================================================================== */
.bh-blog {
  /* section-gap applied via class */
}

.bh-blog-row {
  display: flex;
  gap: 12px;
}

.bh-blog-card {
  background: var(--neutral-800);
  border: 1px solid var(--neutral-700);
  border-radius: 24px;
  padding: 4px;
  flex: 1;
}

.bh-blog-img-wrap {
  height: 208px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.bh-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bh-blog-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #000;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  color: #fff;
}

.bh-blog-content {
  padding: 20px;
  text-align: left;
}

.bh-blog-date {
  font-size: 12px;
  color: var(--neutral-500);
  margin-bottom: 8px;
}

.bh-blog-title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 24px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bh-blog-desc {
  font-size: 12px;
  color: var(--neutral-400);
  line-height: 18px;
  margin-bottom: 12px;
}

.bh-blog-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-400);
  text-decoration: none;
}

.bh-blog-link:hover { color: var(--purple-300); }


/* ========================================================================
   12. NEWSLETTER SECTION
   ======================================================================== */
.bh-newsletter {
  position: relative;
  overflow: hidden;
}

.bh-newsletter-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 990px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(140, 70, 200, 0.35) 0%,
    rgba(80, 30, 140, 0.15) 30%,
    transparent 70%
  );
  pointer-events: none;
}

.bh-newsletter-card {
  background: #000;
  border: 1px solid var(--neutral-700);
  border-radius: 40px;
  padding: 8px;
  max-width: 448px;
  margin: 0 auto;
}

.bh-newsletter-header {
  background: var(--neutral-800);
  border-radius: 32px;
  padding: 32px;
  text-align: center;
}

.bh-newsletter-icon-img {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
}

.bh-newsletter-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--purple-400);
  line-height: 32px;
  margin-bottom: 12px;
}

.bh-newsletter-desc {
  font-size: 14px;
  color: var(--neutral-400);
  margin: 0;
  line-height: 20px;
}

.bh-newsletter-form {
  padding: 16px 16px 32px;
}

.bh-newsletter-input {
  background: var(--neutral-700);
  border: 1px solid var(--neutral-700);
  border-radius: 10px;
  height: 40px;
  color: #fff;
  padding: 0 16px;
  width: 100%;
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  outline: none;
  margin-bottom: 12px;
}

.bh-newsletter-input::placeholder { color: var(--neutral-400); }
.bh-newsletter-input:focus { border-color: var(--purple-800); }

.bh-newsletter-agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.bh-newsletter-agree input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--purple-400);
  cursor: pointer;
}

.bh-newsletter-agree label {
  font-size: 12px;
  color: var(--neutral-400);
  cursor: pointer;
}

.bh-newsletter-submit {
  width: 100%;
  justify-content: center;
}


/* ========================================================================
   13. FOOTER
   ======================================================================== */
.bh-footer {
  border-top: 1px solid var(--neutral-700);
  padding: 48px 0;
}

.bh-footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bh-footer-brand {
  max-width: 200px;
}

.bh-footer-logo {
  height: 25px;
  width: auto;
  margin-bottom: 12px;
}

.bh-footer-copyright {
  font-size: 12px;
  color: var(--neutral-500);
  line-height: 18px;
  margin-bottom: 16px;
}

.bh-footer-socials {
  display: flex;
  gap: 12px;
}

.bh-footer-socials a {
  display: inline-flex;
  color: var(--neutral-400);
  transition: opacity 0.2s;
}

.bh-footer-socials a:hover { opacity: 0.7; }

.bh-footer-links {
  display: flex;
  gap: 48px;
}

.bh-footer-col {
  display: flex;
  flex-direction: column;
}

.bh-footer-link {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: block;
  line-height: 32px;
}

.bh-footer-link:hover { color: var(--purple-400); }

.bh-footer-link-muted {
  font-size: 14px;
  color: var(--neutral-500);
  text-decoration: none;
  display: block;
  line-height: 32px;
}

.bh-footer-link-muted:hover { color: var(--purple-400); }

.bh-footer-pill {
  background: var(--neutral-800);
  border-radius: 32px;
  padding: 8px 24px;
  font-size: 12px;
  color: var(--neutral-500);
  display: inline-block;
}


/* ========================================================================
   SCROLLBAR
   ======================================================================== */
.bh-body::-webkit-scrollbar { width: 8px; }
.bh-body::-webkit-scrollbar-track { background: #0a0a0a; }
.bh-body::-webkit-scrollbar-thumb { background: var(--neutral-700); border-radius: 4px; }
.bh-body::-webkit-scrollbar-thumb:hover { background: #444; }


/* ========================================================================
   MOBILE RESPONSIVE — max-width: 768px
   ======================================================================== */
@media (max-width: 768px) {

  .bh-section-gap { padding: 48px 0; }
  .bh-section-title { font-size: 24px; line-height: 32px; }

  /* Hero */
  .bh-hero { min-height: auto; margin-bottom: 3rem; }
  .bh-hero__bg { background-size: cover; }
  .bh-navbar { width: calc(100% - 32px); padding: 10px 12px 10px 16px; }
  .bh-navbar__btn { font-size: 12px; padding: 5px 14px; }
  .bh-hero__content { width: 100%; padding: 0 16px 32px; margin-top: 100px; }
  .bh-hero__title { font-size: 28px; line-height: 34px; }

  /* Cards carousel on mobile — 2 visible + peeks, arranged on a subtle arc */
  .bh-hero__cards {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    gap: 10px;
    scroll-padding-left: 16px;
    padding: 0 16px 40px;
    max-width: 100vw;
    /* Cancel any JS translateX that may be applied */
    transform: none !important;
    transition: none !important;
    overscroll-behavior-x: contain;
  }
  .bh-hero__cards::before,
  .bh-hero__cards::after {
    content: none;
  }
  .bh-hero__cards::-webkit-scrollbar { display: none; }

  .bh-char-card {
    scroll-snap-align: start;
    /* 2 cards + gap + peek space: (100vw - 16px padding - 10px gap - 30px peek) / 2 */
    width: calc((100vw - 72px) / 2);
    max-width: 200px;
    flex-shrink: 0;
  }

  .bh-char-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }

  /* Arc layout: cards tilt outward and drop at edges, like arranged on a circle */
  .bh-char-card:nth-child(1) { transform: rotate(-4deg) translateY(12px); padding-top: 0; }
  .bh-char-card:nth-child(2) { transform: rotate(-2deg) translateY(4px);  padding-top: 0; }
  .bh-char-card:nth-child(3) { transform: rotate(-0.5deg) translateY(0);  padding-top: 0; }
  .bh-char-card:nth-child(4) { transform: rotate(0.5deg) translateY(0);   padding-top: 0; }
  .bh-char-card:nth-child(5) { transform: rotate(2deg) translateY(4px);   padding-top: 0; }
  .bh-char-card:nth-child(6) { transform: rotate(4deg) translateY(12px);  padding-top: 0; }

  .bh-char-card:nth-child(1):hover,
  .bh-char-card:nth-child(2):hover,
  .bh-char-card:nth-child(3):hover,
  .bh-char-card:nth-child(4):hover,
  .bh-char-card:nth-child(5):hover,
  .bh-char-card:nth-child(6):hover {
    transform: none;
  }

  /* Chat Preview */
  .bh-hero-float { display: none; }

  /* Steps */
  .bh-steps-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .bh-steps-row .bh-v-divider { display: none; }
  .bh-steps-row .bh-feature-col { max-width: 280px; }

  /* Why Bonza */
  .bh-why-container { min-height: auto; }
  .bh-why-card-left, .bh-why-card-right { width: 120px; height: 176px; }
  .bh-why-card-center { width: 148px; height: 217px; }

  .bh-features-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .bh-features-row .bh-v-divider { display: none; }
  .bh-features-row .bh-feature-col { max-width: 300px; }

  /* Companion */
  .bh-companion-card { padding: 24px 16px; }
  .bh-companion-types { flex-wrap: wrap; }
  .bh-companion-types .bh-companion-type {
    flex: 1 1 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }

  /* Privacy */
  .bh-privacy-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .bh-privacy-row .bh-v-divider { display: none; }
  .bh-privacy-row .bh-feature-col { max-width: 280px; }

  /* CTA Banner */
  .bh-cta-container { flex-direction: column; }
  .bh-cta-left { width: 100%; padding: 32px 24px; }
  .bh-cta-right { min-height: 250px; }

  /* Testimonials */
  .bh-testimonial-card { min-width: 260px; width: 260px; }

  /* Pricing */
  .bh-pricing-cards { flex-direction: column; }
  .bh-pricing-card { width: 100%; }
  .bh-pricing-container { width: 100%; border-radius: 16px; }

  /* Blog */
  .bh-blog-row { flex-direction: column; }
  .bh-blog-card { width: 100%; }

  /* Tags */
  .bh-tags-row { flex-wrap: wrap; justify-content: center; }

  /* Footer */
  .bh-footer-layout { flex-direction: column; gap: 32px; }
  .bh-footer-links { flex-wrap: wrap; gap: 24px; }
}


/* ========================================================================
   SMALL MOBILE — max-width: 480px
   ======================================================================== */
@media (max-width: 480px) {
  .bh-hero__title { font-size: 24px; line-height: 30px; }

  .bh-hero__cards {
    gap: 8px;
    padding: 0 12px 40px;
    scroll-padding-left: 12px;
  }

  .bh-char-card {
    /* 2 cards + gap + peek: (100vw - 12px*2 padding - 8px gap - 24px peek) / 2 */
    width: calc((100vw - 56px) / 2);
    max-width: 180px;
  }

  .bh-cta-left { padding: 24px 16px; }

  .bh-companion-types .bh-companion-type {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .bh-pricing-inner { padding: 48px 16px; }

  .bh-testimonial-card { min-width: 240px; width: 240px; }

  .bh-newsletter-card { border-radius: 24px; }
  .bh-newsletter-title { font-size: 20px; }
}


/* ========================================================================
   REDUCED MOTION
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ========================================================================
   FOCUS STYLES (Accessibility)
   ======================================================================== */
.bh-cta:focus-visible,
.bh-btn-cta:focus-visible,
.bh-btn-cta-badge:focus-visible,
.bh-navbar__btn:focus-visible,
.bh-faq-question:focus-visible,
.bh-footer-link:focus-visible,
.bh-blog-link:focus-visible,
.bh-newsletter-input:focus-visible {
  outline: 2px solid var(--purple-400);
  outline-offset: 2px;
}


/* ========================================================================
   PRINT STYLES
   ======================================================================== */
@media print {
  .bh-hero__bg,
  .bh-hero__overlay,
  .bh-hero-float,
  .bh-navbar {
    display: none;
  }

  body.bh-body {
    background: #fff;
    color: #000;
  }
}
