/* ============================================================
   BrainyBoss — Master Stylesheet v6 (Responsive Container System)
   Font: Plus Jakarta Sans (headings bold) + Inter (body)
   Container-based layout for uniform alignment across all sections
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --bb-purple:     #7B5CF5;
  --bb-purple-d:   #6244e0;
  --bb-purple-l:   #9B7BFA;
  --bb-purple-xl:  #EDE8FF;
  --bb-purple-xxl: #F5F1FF;
  /* Backgrounds */
  --bb-hero-bg:    #fdf6ff;
  --bb-white:      #ffffff;
  --bb-cream:      #FCF7F3;
  --bb-why-bg:     #F4F0FF;
  --bb-int-bg:     #ffffff;
  --bb-testi-bg:   #F9F5FF;
  --bb-ind-bg:     #FCF7F3;
  /* Text */
  --bb-text:       #1A1A1A;
  --bb-text-lt:    #6B7280;
  --bb-text-md:    #9CA3AF;
  /* Utility */
  --bb-border:     black;
  --bb-shadow:     0 4px 18px rgba(123,92,245,.08);
  --bb-shadow-h:   0 12px 36px rgba(123,92,245,.18);
  --bb-shadow-btn: 0 8px 22px rgba(123,92,245,.32);
  /* Radii */
  --bb-r:     16px;
  --bb-r-sm:  10px;
  --bb-r-lg:  24px;
  --bb-r-xl:  32px;
  /* Fonts */
 --bb-f: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--bb-fh: 'Patrick Hand', cursive;

  /* ── UNIFIED CONTAINER SYSTEM ──
     Every section uses .bb-container for consistent horizontal alignment.
     Full-width section backgrounds + constrained inner content. */
  --bb-container-max: 1440px;
  --bb-container-px:  clamp(16px, 4vw, 48px);
  --bb-section-py:    clamp(48px, 6vw, 88px);
}

/* ─────────────────────────────────────────────
   GLOBAL BASE
───────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--bb-f);
  color: var(--bb-text);
  -webkit-font-smoothing: antialiased;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; }

/* ─────────────────────────────────────────────
   MASTER CONTAINER
   Used inside every section for uniform alignment.
   Sections are full-width; only .bb-container is constrained.
───────────────────────────────────────────── */
.bb-container {
  width: 100%;
  max-width: var(--bb-container-max);
  margin-left:  auto;
  margin-right: auto;
  padding-left:  var(--bb-container-px);
  padding-right: var(--bb-container-px);
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.bb-h2 {
  font-family: var(--bb-fh);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  color: var(--bb-text) !important;
  letter-spacing: -.4px;
  line-height: 1.12;
  margin-bottom: 16px !important;
  margin-top:30px;
}
.bb-h2 .bb-hl  { color: var(--bb-purple); }
.bb-h2 .bb-hlu { position: relative; color: var(--bb-purple); }
.bb-h2 .bb-hlu::after {
  content: ''; position: absolute;
  left: 3%; right: 3%; bottom: -2px;
  height: 3px; border-radius: 3px;
  background: var(--bb-purple); transform: rotate(-1.2deg);
}
.bb-sub { font-size: 14.5px; color:black; line-height: 1.65; margin: 0; max-width: 520px; font-weight:500;}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.bb-btn-p {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: var(--bb-purple); color: #fff;
  border: none; border-radius: 12px; font-family: var(--bb-f);
  font-size: 14px; font-weight: 600; text-decoration: none;
  cursor: pointer; transition: all .2s; line-height: 1; white-space: nowrap;
}
.bb-btn-p:hover { background: var(--bb-purple-d); transform: translateY(-2px); box-shadow: var(--bb-shadow-btn); }
.bb-btn-s {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 26px; background: #fff; color: var(--bb-text);
  border: 1.5px solid var(--bb-border); border-radius: 12px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all .15s; font-family: var(--bb-f); line-height: 1; white-space: nowrap;
}
.bb-btn-s:hover { border-color: var(--bb-purple); color: var(--bb-purple); }
.bb-link-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; background: #fff;
  border: 1.5px solid var(--bb-border); border-radius: 12px;
  color: var(--bb-text); text-decoration: none;
  font-weight: 600; font-size: 13px; white-space: nowrap;
  transition: all .2s; font-family: var(--bb-f);
}
.bb-link-btn:hover { border-color: var(--bb-purple); color: var(--bb-purple); }
.bb-link-btn svg { width: 12px; height: 12px; flex-shrink: 0; }
.bb-slider-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--bb-border); background: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s; flex-shrink: 0;
}
.bb-slider-btn:hover { border-color: var(--bb-purple); color: var(--bb-purple); box-shadow: 0 4px 14px rgba(123,92,245,.18); }
.bb-slider-btn svg { width: 14px; height: 14px; }

/* ─────────────────────────────────────────────
   SHARED ROW HEADER (heading + button side-by-side)
───────────────────────────────────────────── */
.bb-row-head {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 28px;
}

/* Scroll reveal */
.bb-reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.bb-reveal.visible { opacity: 1; transform: translateY(0); }

.bb-sparkle { color: var(--bb-purple); }

/* ─────────────────────────────────────────────
   1. NAVBAR
   Sticky bar + .bb-container inside for alignment
───────────────────────────────────────────── */
.bb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #fff;
  transition: box-shadow .3s;
  font-family: var(--bb-f);
}
.bb-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.07); }

/* Nav inner uses container alignment */
.bb-nav-inner {
  width: 100%;
  max-width: var(--bb-container-max);
  margin: 0 auto;
  padding: 12px var(--bb-container-px);
  display: flex; align-items: center; justify-content: space-between;
}

.bb-nav-logo { display: inline-flex; flex-direction: column; line-height: 1; text-decoration: none; gap: 1px; }
.bb-nav-logo img { height: 36px; width: auto; }
.bb-nav-logo-fb { font-family: var(--bb-fh); font-size: 22px; font-weight: 800; color: var(--bb-text); display: block; letter-spacing: -.5px; }
.bb-nav-logo-fb span { display: block; font-size: 9px; letter-spacing: 3px; color: var(--bb-purple); font-weight: 700; font-family: var(--bb-f); }
.bb-nav-links { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.bb-nav-links a { color: var(--bb-text); text-decoration: none; font-size: 13.5px; font-weight: 500; display: inline-flex; align-items: center; gap: 3px; transition: color .15s; }
.bb-nav-links a:hover { color: var(--bb-purple); }
.bb-nav-links a.bb-has-arr::after { content: ''; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-bottom: 2px; }
.bb-nav-ctas { display: flex; align-items: center; gap: 9px; }
.bb-nav-outline { padding: 9px 18px; background: #fff; border: 1.5px solid var(--bb-border); border-radius: 12px; color: var(--bb-text); text-decoration: none; font-size: 13px; font-weight: 600; transition: all .15s; white-space: nowrap; font-family: var(--bb-f); }
.bb-nav-outline:hover { border-color: var(--bb-purple); color: var(--bb-purple); }
.bb-nav-fill { padding: 9px 20px; background: var(--bb-purple); border-radius: 12px; color: #fff !important; text-decoration: none; font-size: 13px; font-weight: 600; transition: all .15s; white-space: nowrap; font-family: var(--bb-f); cursor: pointer; border: none; }
.bb-nav-fill:hover { background: var(--bb-purple-d); box-shadow: var(--bb-shadow-btn); }
.bb-hamburger { display: none; background: none; border: none; cursor: pointer; width: 36px; height: 36px; padding: 0; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.bb-hamburger span { display: block; width: 22px; height: 2px; background: var(--bb-text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.bb-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bb-hamburger.active span:nth-child(2) { opacity: 0; }
.bb-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .bb-nav-links { display: none; }
  .bb-nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 20px var(--bb-container-px); gap: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06); z-index: 60;
  }
  .bb-hamburger { display: flex; }
  .bb-nav-outline { display: none; }
}
@media (max-width: 480px) {
  .bb-nav-fill { padding: 8px 14px; font-size: 12px; }
}

/* ─────────────────────────────────────────────
   2. HERO
───────────────────────────────────────────── */
.bb-hero {
  background-image: url('https://brainyboss.ai/wp-content/uploads/2026/06/Hero-Section-1.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  width: 100%; position: relative; overflow: hidden;
  font-family: var(--bb-f);
  padding-top: clamp(72px, 10vw, 110px);
}
/* Hero inner: container max-width but right column bleeds out */
.bb-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 480px;
  width: 100%;
  max-width: var(--bb-container-max);
  margin-left:  auto;
  margin-right: auto;
  padding-left: var(--bb-container-px);
  /* right side: let image extend to edge */
  padding-right: 0;
}
.bb-hero-left { padding: 48px 40px 48px 0;max-width: 600px; }
.bb-hero h1 {
  font-family: var(--bb-fh);
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 800; line-height: 1.08;
  margin: 0 0 18px; color: var(--bb-text); letter-spacing: -.6px;
}
.bb-hero h1 .bb-hero-hl { color: var(--bb-purple); }
.bb-hero-sub { font-size: 14.5px; color: var(--bb-text-lt); line-height: 1.72; margin: 0 0 28px; max-width: 420px; }
.bb-hero-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.bb-hero-social { display: flex; align-items: center; gap: 12px; }
.bb-hero-avs { display: flex; }
.bb-hero-avs span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid #fff;
  background: linear-gradient(135deg, var(--bb-purple-l), var(--bb-purple));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; font-weight: 700;
  margin-left: -9px; overflow: hidden; flex-shrink: 0;
}
.bb-hero-avs span:first-child { margin-left: 0; }
.bb-hero-avs span img { width: 100%; height: 100%; object-fit: cover; }
.bb-hero-social-txt { font-size: 13px; color: var(--bb-text-lt); font-weight: 500; }
.bb-hero-right { height: 100%; min-height: 480px; display: flex; align-items: flex-end; justify-content: flex-end; position: relative; overflow: hidden; }
.bb-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; max-height: 560px; }

@media (max-width: 900px) {
  .bb-hero-inner { grid-template-columns: 1fr; padding-right: var(--bb-container-px); }
  .bb-hero-right { min-height: 280px; order: -1; }
  .bb-hero-left  { padding: 32px 0 40px; }
  .bb-hero-img   { object-position: center top; max-height: 320px; }
}
@media (max-width: 480px) {
  .bb-hero h1 { font-size: clamp(26px, 8vw, 38px); }
  .bb-hero-right { min-height: 220px;display:none; }
}

/* ─────────────────────────────────────────────
   3. EMPLOYEES SLIDER
───────────────────────────────────────────── */
.bb-emp {
  background: var(--bb-white);
  padding-top: var(--bb-section-py);
  padding-bottom: var(--bb-section-py);
}
.bb-emp-head { margin-bottom: 24px; }

/* Slider overflow container stays aligned */
.bb-emp-slider-outer {
  width: 100%;
  max-width: var(--bb-container-max);
  margin: 0 auto;
  padding-left: var(--bb-container-px);
  padding-right: var(--bb-container-px);
  position: relative;
}
.bb-emp-slider-wrap { overflow: hidden; padding: 12px 2px 20px; }
.bb-emp-grid { display: flex; gap: 14px; transition: transform 0.45s cubic-bezier(.4,0,.2,1); will-change: transform; align-items: stretch; }
.bb-emp-card {
  flex: 0 0 calc(22% - 4px);
  border-radius: var(--bb-r-lg); padding: 0 0 18px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
  border: 1.5px solid rgba(123,92,245,.1);
  min-width: 0; background: var(--bb-purple-xxl);
}
.bb-emp-card:nth-child(1) { background: #F0EAFF; }
.bb-emp-card:nth-child(2) { background: #EAFAF2; }
.bb-emp-card:nth-child(3) { background: #FFF5EA; }
.bb-emp-card:hover { transform: translateY(-5px); box-shadow: var(--bb-shadow-h); }
.bb-emp-card.bb-emp-hi {
  flex:50 0 calc(32% - 33px) !important;
  background: linear-gradient(165deg, #E8DEFF 0%, #D8C8FF 40%, #C9B6FF 100%);
  border: 2px solid #B8A0F0;
}
.bb-emp-img { width: 100%; aspect-ratio: 3/4; max-height: 200px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.bb-emp-card.bb-emp-hi .bb-emp-img { aspect-ratio: 4/3; }
.bb-emp-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bb-emp-body { padding: 12px 16px 0; flex-grow: 1; display: flex; flex-direction: column; }
.bb-emp-name { font-family: var(--bb-fh); font-size: 20px; font-weight: 800; color: var(--bb-purple); margin: 0 0 5px; line-height: 1; }
.bb-emp-card.bb-emp-hi .bb-emp-name { font-size: 28px; }
.bb-emp-desc { font-size: 12px; font-weight:500; color:black; line-height: 1.5; margin: 0 0 12px; flex-grow: 1; }
.bb-emp-card.bb-emp-hi .bb-emp-desc { font-size: 13px; }
.bb-emp-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 18px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;  padding: 5px 11px 5px 6px; border-radius: 50px; align-self: flex-start; color: var(--bb-purple); }
.bb-tag-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--bb-purple); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; }
.bb-emp-slider-nav { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }

@media (max-width: 1024px) {
  .bb-emp-card           { flex: 0 0 calc(48% - 7px); }
  .bb-emp-card.bb-emp-hi { flex: 0 0 calc(48% - 7px) !important; }
}
@media (max-width: 560px) {
  .bb-emp-card           { flex: 0 0 80%; }
  .bb-emp-card.bb-emp-hi { flex: 0 0 80% !important; }
}

/* ─────────────────────────────────────────────
   4. INDUSTRIES SLIDER
───────────────────────────────────────────── */
.bb-ind {
     background-image: url("https://brainyboss.ai/wp-content/uploads/2026/06/Soft-pastel-sparkle-design-with-grid-1.png")!important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* Inner uses .bb-container + flex layout */
.bb-ind-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top:40px;
  padding-bottom:40px;
}
.bb-ind-left {
  flex: 0 0 360px;
  display: flex; flex-direction: column; align-self: center;
}
.bb-ind-left .bb-h2 { font-size: clamp(22px, 2.8vw, 36px); line-height: 1.2; }
.bb-ind-right { position: relative; flex: 1 1 0; min-width: 0; }
.bb-ind-slider-wrap { overflow: hidden; width: 100%; }
.bb-ind-grid { display: flex; gap: 14px; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.bb-ind-card {
  flex: 0 0 calc(25% - 11px);
  border-radius: var(--bb-r); padding: 0 0 16px;
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  border: 1.5px solid rgba(0,0,0,.04);
  cursor: pointer; text-decoration: none; color: inherit;
}
.bb-ind-card:hover { transform: translateY(-4px); box-shadow: var(--bb-shadow-h); }
.bb-ind-card:nth-child(1) { background: #EDE0FF; }
.bb-ind-card:nth-child(2) { background: #DCF0F0; }
.bb-ind-card:nth-child(3) { background: #FFF0D8; }
.bb-ind-card:nth-child(4) { background: #DCF0E4; }
.bb-ind-img { width: 100%; aspect-ratio: 1/1; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.bb-ind-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.bb-ind-body { padding: 12px 14px 4px; flex: 1; }
.bb-ind-name { font-size: 14px; font-weight: 700; color: var(--bb-text); margin: 0 0 5px; font-family: var(--bb-fh); }
.bb-ind-desc { font-size: 11.5px; color:black; line-height: 1.5; margin: 0 0 8px; }
.bb-ind-badge { display: inline-block; color: #5b3ecc; font-weight: 700; font-size: 11px; padding: 3px 11px; border-radius: 50px; margin-left: 14px; }
.bb-ind-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bb-purple); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(123,91,245,.35); z-index: 10;
  transition: background .2s, transform .2s; color: #fff;
}
.bb-ind-arrow:hover { background: #6244e0; transform: translateY(-50%) scale(1.08); }
.bb-ind-arrow svg { width: 18px; height: 18px; stroke: #fff; }
.bb-ind-arrow-next { right: -20px; }
.bb-ind-arrow-prev { left: -20px; }

@media (max-width: 1024px) {
  .bb-ind-left { flex: 0 0 200px; }
  .bb-ind-card { flex: 0 0 calc(50% - 7px); }
}
@media (max-width: 768px) {
  .bb-ind-inner { flex-direction: column; gap: 28px; }
  .bb-ind-left  { flex: none; width: 100%; }
  .bb-ind-right { width: 100%; }
}
@media (max-width: 480px) {
  .bb-ind-card { flex: 0 0 78%; }
}

/* ─────────────────────────────────────────────
   5. HOW IT WORKS
───────────────────────────────────────────── */
.bb-how {
  background: var(--bb-white);
  padding-top: var(--bb-section-py);
  padding-bottom: var(--bb-section-py);
}
.bb-how-head { text-align: center; margin-bottom: 48px; }
.bb-how-head .bb-h2 { display: inline; }
.bb-how-flow {
  display: flex; align-items: center;
  justify-content: center; gap: 0; flex-wrap: nowrap;
}
.bb-how-step {
  flex: 1 1 0; min-width: 0; text-align: center;
  position: relative; padding: 0 4px;
  display: flex; flex-direction: column; align-items: center;
}
.bb-step-icon {
  width: 68px; height: 68px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; position: relative; z-index: 2;
  box-shadow: 0 3px 14px rgba(0,0,0,.1); flex-shrink: 0;
}
.bb-step-icon img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.bb-step-icon svg { width: 30px; height: 30px; }
.bb-how-arr {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  margin-bottom: 74px; padding: 0 2px;
}
.bb-how-arr-img { display: block; height: 20px; width: auto; max-width: 80px; object-fit: contain; }
.bb-how-arr svg { width: 56px; height: 16px; overflow: visible; display: block; }
.bb-step-num   { font-size: 12px; font-weight: 700; color: black; margin: 0 0 4px; line-height: 1.3; }
.bb-step-title { font-size: 12px; font-weight: 700; color: var(--bb-text); margin: 0 0 5px; line-height: 1.3; }
.bb-step-desc  { font-size: 11px; color:black; line-height: 1.5; margin: 0 auto; max-width: 110px;font-weight: 500;}

@media (max-width: 1100px) {
  .bb-how-flow { flex-wrap: wrap; gap: 20px; }
  .bb-how-arr  { display: none; }
  .bb-how-step { flex: 0 0 calc(33.333% - 20px); min-width: 90px; }
}
@media (max-width: 600px) {
  .bb-how-step { flex: 0 0 calc(50% - 16px); }
}

/* ─────────────────────────────────────────────
   6. WHY BUSINESSES LOVE BRAINYBOSS
───────────────────────────────────────────── */
.bb-why {
  background: var(--bb-why-bg);
  padding-top: var(--bb-section-py);
  padding-bottom: var(--bb-section-py);
}
.bb-why-inner {
  display: grid;
  grid-template-columns: 0.72fr 2.5fr;
  gap: 16px; align-items: stretch;
  background: #fff;
  padding: 24px;
  border-radius: var(--bb-r-lg);
}
.bb-why-left {
  background: var(--bb-white); border-radius: var(--bb-r);
  display: flex; flex-direction: column; justify-content: center;
}
.bb-why-left .bb-h2 { font-size: clamp(22px, 2.5vw, 34px); margin-bottom: 16px !important; }
.bb-why-left ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.bb-why-left li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--bb-text); font-weight: 500; }
.bb-why-left li .bb-li-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--bb-purple); flex-shrink: 0; }
.bb-why-tiles { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; align-content: stretch; }
.bb-why-tile { border-radius: var(--bb-r); padding: 20px 10px 10px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: transform .2s; }
.bb-why-tile:hover { transform: translateY(-3px); }
.bb-why-tile:nth-child(1) { background: #D6F0E4; }
.bb-why-tile:nth-child(2) { background: #FFECD4; }
.bb-why-tile:nth-child(3) { background: #FFE4E4; }
.bb-why-tile:nth-child(4) { background: var(--bb-purple-xl); }
.bb-why-tile:nth-child(5) { background: #FFF9D0; }
.bb-tile-icon { width: 80px; height: 80px; border-radius: 14px;  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;  }
.bb-tile-icon svg { width: 24px; height: 24px; }
.bb-tile-icon img{ width:100% !important; height:100% !important; object-fit:cover !important;
}
.bb-tile-title { font-size: 18px; font-weight: 700; color: var(--bb-text); line-height: 1.3; }
.bb-tile-desc  { font-size: 12.5px; color:black; line-height: 1.45; margin: 0; }

@media (max-width: 1100px) { .bb-why-inner { grid-template-columns: 1fr; } .bb-why-tiles { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px)  { .bb-why-tiles { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 380px)  { .bb-why-tiles { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────
   7. INTEGRATIONS
───────────────────────────────────────────── */
.bb-int {
  background: var(--bb-int-bg);
  padding-top: var(--bb-section-py);
  padding-bottom: var(--bb-section-py);
}
.bb-int-inner { display: grid; grid-template-columns: 1fr 2.6fr; align-items: center; gap: 48px; }
.bb-int-left h2 { font-family: var(--bb-fh); font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: var(--bb-text); margin: 0; line-height: 1.15; }
.bb-int-left h2 .bb-hl { color: var(--bb-purple); }
.bb-int-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 6px; }
.bb-int-card { background: #fff; border: 1.5px solid var(--bb-border); border-radius: 12px; padding: 14px 6px 12px; text-align: center; transition: all .2s; text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.bb-int-card:hover { border-color: var(--bb-purple); transform: translateY(-3px); box-shadow: var(--bb-shadow); }
.bb-int-logo { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.bb-int-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bb-int-name { font-size: 10px; font-weight: 600; color: var(--bb-text); }
.bb-int-more { background: white !important; border-color: transparent; }
.bb-int-more .bb-int-name { color: black !important; font-weight: 700; }
.bb-int-more-num { font-family: var(--bb-fh); font-size: 24px; font-weight: 800; color: black !important; line-height: 1; }

@media (max-width: 1024px) { .bb-int-inner { grid-template-columns: 1fr; } .bb-int-grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 640px)  { .bb-int-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 400px)  { .bb-int-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─────────────────────────────────────────────
   8. TESTIMONIALS
───────────────────────────────────────────── */
.bb-testi {
  background: #EDE8FF;
  padding-top: var(--bb-section-py);
}
.bb-testi-inner { display: flex; gap: 40px; align-items: flex-start; }
.bb-testi-top { margin-bottom: 40px; flex-shrink: 0;width:378px; }
.bb-testi-top .bb-h2 { font-size: clamp(22px, 3vw, 40px); line-height: 1.2; }
.bb-hlu { position: relative; color: #7B5BF5; display: inline-block; }
.bb-hlu::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; background: #7B5BF5; border-radius: 2px; }
.bb-testi-slider-outer { position: relative; flex: 1; min-width: 0; }
.bb-testi-slider-wrap { overflow: hidden; padding-top: 56px; margin-top: -56px; }
.bb-testi-track { display: flex; gap: 20px; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); will-change: transform; align-items: flex-end; }
.bb-testi-card {
  flex: 0 0 calc(50% - 10px);
  background: #fff; border-radius: 20px;
  padding: 20px 20px 20px 0;
  display: flex; flex-direction: row; align-items: flex-end;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  overflow: visible; position: relative;
  height:228px;
  border:1.5px solid var(--bb-border);
}
.bb-testi-av-wrap {
  width: 110px; min-width: 110px; height: 130px;
  border-radius: 16px; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: flex-end; justify-content: center;
  margin-top: -56px; margin-left: 16px;
   z-index: 2;
}
.bb-testi-av-img { width: 69%; height: 100%; object-fit: cover; object-position: top center; display: block; position: absolute;
    left: -98px; top:10px; max-height:367px;}
.bb-testi-av-init { font-size: 48px; font-weight: 800; color: #7B5BF5; opacity: .5; }
.bb-testi-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: flex-start; padding: 16px 0 8px 16px; align-self: flex-start; }
.bb-testi-q { font-size: 13px; color: #1a1a1a; line-height: 1.6; margin: 0 0 12px; font-style: italic; font-weight: 500; }
.bb-testi-q::before { content: '\201C'; color: #7B5BF5; font-weight: 800; font-style: normal; font-size: 16px; margin-right: 2px; }
.bb-testi-q::after  { content: '\201D'; color: #7B5BF5; font-weight: 800; font-style: normal; font-size: 16px; margin-left:  2px; }
.bb-testi-name  { font-size: 14px; font-weight: 700; color: #1a1a1a; margin: 0 0 2px; }
.bb-testi-role  { font-size: 11.5px; color: #888; margin: 0 0 8px; }
.bb-testi-stars { color: #F5B400; font-size: 14px; letter-spacing: 1px; }
.bb-testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #7B5BF5; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(123,91,245,.35); z-index: 20;
  transition: background .2s, transform .2s;
}
.bb-testi-arrow:hover { background: #6244e0; transform: translateY(-50%) scale(1.08); }
.bb-testi-arrow svg { width: 18px; height: 18px; }
.bb-testi-arrow-next { right: -21px; }
.bb-testi-arrow-prev { left: -21px; }

@media (max-width: 1024px) {
  .bb-testi-inner { flex-direction: column; gap: 24px; }
  .bb-testi-top   { width: 100%; }
  .bb-testi-slider-outer { width: 100%; }
}
@media (max-width: 700px) {
  .bb-testi-card    { flex: 0 0 85%; }
  .bb-testi-av-wrap { width: 85px; min-width: 85px; height: 110px; margin-top: -40px; }
}
@media (max-width: 480px) {
  .bb-testi-card    { flex: 0 0 92%; }
  .bb-testi-av-wrap { width: 72px; min-width: 72px; }
}

/* ─────────────────────────────────────────────
   9. CTA BANNER
───────────────────────────────────────────── */
.bb-cta { background: #fff; padding-top: 16px; padding-bottom: var(--bb-section-py); }
.bb-cta-banner {
  border-radius: var(--bb-r-xl);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 300px;
}
.bb-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 10% 30%, rgba(255,255,255,.22) 0%, transparent 50%), radial-gradient(ellipse at 90% 70%, rgba(255,255,255,.14) 0%, transparent 50%);
  pointer-events: none;
}
.bb-cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0; text-align: center; width: 100%; padding: 24px 40px 36px; }
.bb-cta-img-wrap { width: 100%; max-width: 640px; border-radius: 50%/30%; overflow: hidden; background: rgba(120,90,220,.25); display: flex; align-items: center; justify-content: center; }
.bb-cta-img { width: 100%; height: 480px !important; display: block; }
.bb-cta-btn {
  display: inline-block; background: #fff; color: var(--bb-text);
  padding: 14px 44px; border-radius: 50px; text-decoration: none;
  font-weight: 700; font-size: 15px; font-family: var(--bb-f);
  box-shadow: 0 6px 20px rgba(0,0,0,.15); transition: all .2s;
  cursor: pointer; border: none; margin-top: -16px;
  position: relative; bottom: 80px; z-index: 2;
}
.bb-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.22); }

@media (max-width: 600px) {
  .bb-cta-inner { padding: 20px 16px 28px; }
  .bb-cta-btn   { padding: 12px 32px; font-size: 14px; }
}

/* ─────────────────────────────────────────────
   10. FOOTER
───────────────────────────────────────────── */
.bb-footer {
  background: linear-gradient(175deg, #EDE6FF 0%, #DDD2FF 100%);
  padding-top: 52px; font-family: var(--bb-f); width: 100%;
}
.bb-footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; }
.bb-footer-brand-logo { font-family: var(--bb-fh); font-size: 20px; font-weight: 800; color: var(--bb-text); margin-bottom: 2px; line-height: 1; display: block; }
.bb-footer-brand-logo span { display: block; font-size: 9px; letter-spacing: 3px; color: var(--bb-purple); font-weight: 700; font-family: var(--bb-f); }
.bb-footer-brand img { height: 36px; width: auto; margin-bottom: 12px; }
.bb-footer-brand h4 { font-size: 11.5px; font-weight: 700; color: var(--bb-text); margin: 0 0 10px; letter-spacing: .07em; text-transform: uppercase; line-height: 1.4; }
.bb-footer-brand p  { font-size: 12.5px; color:black; line-height: 1.65; max-width: 300px; margin: 0 0 18px; }
.bb-footer-btns { display: flex; gap: 9px; flex-wrap: wrap; }
.bb-footer-col h4 { font-size: 11px; font-weight: 700; color: var(--bb-text); margin: 0 0 14px; letter-spacing: .1em; text-transform: uppercase; }
.bb-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.bb-footer-col a { color: var(--bb-text); text-decoration: none; font-size: 13px; transition: color .15s; }
.bb-footer-col a:hover { color: var(--bb-purple); }
.bb-footer-bottom { border-top: 1px solid black; padding: 16px 0 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.bb-footer-copy { font-size: 11.5px; color: var(--bb-text-lt); }
.bb-footer-socials { display: flex; gap: 8px; }
.bb-footer-socials a { width: 28px; height: 28px; border-radius: 7px; background: rgba(255,255,255,.55); display: inline-flex; align-items: center; justify-content: center; color: var(--bb-text); transition: all .15s; }
.bb-footer-socials a:hover { background: var(--bb-purple); color: #fff; }
.bb-footer-socials svg { width: 100%; height: 100%; fill: currentColor; }

@media (max-width: 1024px) { .bb-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px)  { .bb-footer-grid { grid-template-columns: 1fr; gap: 24px; } .bb-footer-bottom { flex-direction: column; text-align: center; } }