/*
 * BlazeByte Solutions — Pillar & Service Pages
 * File: bb-pillar.css  v8 — Master Template / Locked
 * Depends on: globals.css
 *
 * ROOT FONT: 18px → 2.5rem = 45px, 1rem = 18px
 * CONTAINER: bb-wrap = 1320px max-width, 24px side padding
 *
 * COLOUR RHYTHM (dark/light alternating):
 *   Hero            #000000  black        DARK
 *   Self-Diagnosis  #ffffff  white        LIGHT
 *   Problem         #0D1117  dark navy    DARK
 *   Methodology     #ffffff  white        LIGHT
 *   Mid CTA         #0B121B  deep dark    DARK
 *   Proof           #0D1117  dark navy    DARK
 *   Unlock          #ffffff  white        LIGHT
 *   Services Hub    #F7F8FA  off-white    LIGHT
 *   Pricing         #ffffff  white        LIGHT
 *   FAQ             #F7F8FA  off-white    LIGHT
 *   Related         #0D1117  dark navy    DARK
 *   Final CTA       #000000  black        DARK
 *
 * CTA STRATEGY (conversion-first):
 *   Hero        → inline form (primary CTA)
 *   Diag        → "Get Free Audit" soft CTA below insight box
 *   Mid CTA     → inline form (hard conversion)
 *   Proof       → "Book Strategy Call" below case cards
 *   Pricing     → card CTAs + "View full pricing" link
 *   Related     → "Explore [service]" per card
 *   Final CTA   → dual button (primary + ghost)
 *
 * H2 SCALE (modulated by section importance):
 *   Diagnosis:  clamp(1.9rem, 3.2vw, 2.7rem)  — hook
 *   Problem:    clamp(1.75rem, 3vw, 2.5rem)   — evidence
 *   Methodology:clamp(1.65rem, 2.8vw, 2.3rem) — process
 *   Mid CTA:    clamp(1.4rem, 2.2vw, 1.85rem) — ask
 *   Proof:      clamp(1.75rem, 3vw, 2.5rem)   — social proof
 *   Others:     clamp(1.55rem, 2.6vw, 2.2rem) — supporting
 *   Final CTA:  clamp(2rem, 3.6vw, 3rem)      — climax
 */


/* ═══════════════════════════════════════════════════════════
   ASTRA BUTTON FIX
   Astra overrides <button> and <input[submit]> with wrong orange.
   These selectors beat Astra's specificity without touching globals.
═══════════════════════════════════════════════════════════ */
button.bb-btn-primary,
input[type="submit"].bb-btn-primary,
.bb-btn-primary {
  background: #FF6A00 !important;
  background-color: #FF6A00 !important;
  color: #ffffff !important;
  border-color: #FF6A00 !important;
}
button.bb-btn-primary:hover,
.bb-btn-primary:hover {
  background: #ED4B00 !important;
  background-color: #ED4B00 !important;
  border-color: #ED4B00 !important;
}

/* ═══════════════════════════════════════════════════════════
   CONTAINER OVERRIDE
   bb-wrap is defined in globals.css (1320px, clamp padding).
   !important here beats Elementor container overrides on pillar pages.
═══════════════════════════════════════════════════════════ */
.bb-wrap {
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* ═══════════════════════════════════════════════════════════
   PILLAR-ONLY UTILITIES
   Not in globals.css — used exclusively on pillar/service pages.
═══════════════════════════════════════════════════════════ */

/* Orange highlight span for key terms in headings and body */
.bb-or { color: #FF6A00 !important; font-weight: 700 !important; }

/* Ghost button variants — dark bg context */
.bb-btn-ghost {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #FF6A00 !important;
}
.bb-btn-ghost:hover {
  border-color: #ED4B00 !important;
  background: #ED4B00 !important;
}

/* Ghost button — light bg context */
.bb-btn-ghost-dark {
  background: transparent !important;
  color: #111827 !important;
  border: 2px solid #FF6A00 !important;
}
.bb-btn-ghost-dark:hover {
  border-color: #ED4B00 !important;
  color: #ED4B00 !important;
}

/* Between-section soft CTA strip — light bg */
.bb-section-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 22px 28px;
  background: #F7F8FA;
  border: 1px solid #E2E5EC;
  border-left: 4px solid #FF6A00;
  border-radius: 10px;
  flex-wrap: wrap;
}
.bb-section-cta-text {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  min-width: 200px;
}
.bb-section-cta-text span { color: #FF6A00; }

/* Dark variant — used in dark sections */
.bb-section-cta--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  border-left-color: #FF6A00;
}
.bb-section-cta--dark .bb-section-cta-text {
  color: rgba(255,255,255,0.88);
}

/* Soft CTA — inline note beside a button */
.bb-soft-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.bb-soft-cta-note {
  font-size: 0.75rem;
  color: #9CA3AF;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 1 — HERO
   #000000 | 72px / 64px
═══════════════════════════════════════════════════════════ */
.bb-page-hero {
  padding: 72px 0 64px;
  background: #000000;
}

.bb-page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.28);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #FF6A00;
  margin-bottom: 20px;
  width: fit-content;
}

.bb-page-hero-badge-dot {
  width: 5px; height: 5px;
  background: #FF6A00;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.bb-page-h1 {
  font-size: clamp(1.85rem, 2.8vw, 2.7rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.09 !important;
  letter-spacing: -0.028em !important;
  margin: 0 0 18px !important;
}

.bb-page-hero-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.72;
  font-weight: 400;
  margin-bottom: 8px;
  max-width: 560px;
}

.bb-page-hero-qualifier {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-bottom: 14px;
  max-width: 750px;	
}

.bb-page-hero-hook {
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 28px;
  padding-left: 12px;
  border-left: 3px solid rgba(255,106,0,0.5);
}

.bb-page-hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 32px;
}

.bb-page-hero-stat { display: flex; flex-direction: column; }

.bb-page-hero-stat-num {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FF6A00;
  line-height: 1;
  margin-bottom: 4px;
}

.bb-page-hero-stat-lbl {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.bb-page-hero-stat-div {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.bb-page-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bb-page-hero-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
}

.bb-hero-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 2px solid #FF6A00;
  border-radius: 10px;
  padding: 28px 24px;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 2 — SELF-DIAGNOSIS ("Is This You?")
   REDESIGNED: Two-column layout — symptoms left, visual right
   #ffffff | 80px
═══════════════════════════════════════════════════════════ */
.bb-diag {
  padding: 80px 0;
  background: #ffffff;
}

.bb-diag h2,
.bb-diag .bb-heading,
.bb-diag .elementor-widget-html h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem) !important;
  color: #111827 !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.08 !important;
}

.bb-diag-intro {
  font-size: 1rem;
  color: #4F5B68;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 28px;
  max-width: 1060px;
}

/* Symptom grid — 2 cols, elevated cards */
.bb-diag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 24px;
}

.bb-diag-item {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: #2B3542 !important;
  line-height: 1.45;
  font-weight: 400;
  background: #F7F8FA !important;
  border: 1px solid #E2E5EC !important;
  border-radius: 7px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

.bb-diag-item:hover {
  border-color: rgba(255,106,0,0.4) !important;
  box-shadow: 0 2px 10px rgba(255,106,0,0.08) !important;
}

.bb-diag-icon {
  color: #CC2200 !important;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.78rem;
  width: 14px;
  text-align: center;
  font-weight: 700;
}

/* Insight box — elevated dark callout */
.bb-diag .bb-insight-box {
  background: #fef8f3 !important;
  border-left: 4px solid #FF6A00 !important;
  border: 1px solid rgba(255,106,0,0.18);
  border-radius: 8px;
  padding: 20px 24px;
  padding-top:32px;
}

.bb-diag .bb-insight-box {
  text-align: left !important;
}

.bb-diag .bb-insight-box p {
  font-size: 0.97rem !important;
  color: #2B3542 !important;
  text-align: left !important;
  line-height: 1.72 !important;
}

.bb-diag .bb-insight-box strong {
  color: #111827;
}

/* Aggregate proof strip — new element above insight box */
.bb-diag-proof-strip {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border: 1px solid #E2E5EC;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.bb-diag-proof-stat {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid #E2E5EC;
}

.bb-diag-proof-stat:last-child { border-right: none; }

.bb-diag-proof-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: #FF6A00;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.bb-diag-proof-lbl {
  font-size: 0.7rem;
  color: #4F5B68;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: block;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 3 — PROBLEM
   REDESIGNED: 3 numbered statements, not cards
   #0D1117 | 96px
═══════════════════════════════════════════════════════════ */
.bb-problem-pillar {
  padding: 96px 0;
  background: #000 !important;
}

.bb-problem-pillar h2,
.bb-problem-pillar .bb-heading,
.bb-problem-pillar .elementor-widget-html h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.1 !important;
}

.bb-problem-pillar p,
.bb-problem-pillar .bb-lead {
  color: rgba(255,255,255,1) !important;
}

.bb-problem-pillar .bb-label { color: #FF6A00 !important; }

/* Problem items container */
.bb-prob-items {
  max-width: 800px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* REDESIGNED: numbered statement rows, not cards */
.bb-prob-item {
  display: flex !important;
  gap: 24px;
  padding: 24px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  background: transparent !important;
  border-radius: 0 !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  transition: none !important;
  align-items: flex-start;
}

.bb-prob-item:first-child {
  padding-top: 0 !important;
}

.bb-prob-item:last-child {
  border-bottom: none !important;
}

/* Problem number — large orange counter */
.bb-prob-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255,106,0,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  padding-top: 2px;
  font-feature-settings: "tnum";
  letter-spacing: -0.04em;
}

/* Problem icon  */
.bb-prob-icon {
  display: none !important;
}

/* Problem text block */
.bb-prob-item-text {
  flex: 1;
}

.bb-prob-item-text strong {
  display: block;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
  line-height: 1.3;
}

.bb-prob-item-text span {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.9) !important;
  line-height: 1.68 !important;
}

.bb-problem-pillar a {
  color: #FF6A00 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 4 — METHODOLOGY ("How We Work")
   REDESIGNED: Horizontal flow — Tracking → Campaigns → Conversion → Scale
   #ffffff | 96px
   Matches the homepage process section aesthetic
═══════════════════════════════════════════════════════════ */
.bb-method {
  padding: 96px 0;
  background: #ffffff;
}

.bb-method h2,
.bb-method .bb-heading,
.bb-method .elementor-widget-html h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.3rem) !important;
  color: #111827 !important;
  font-weight: 800 !important;
  letter-spacing: -0.022em !important;
  line-height: 1.12 !important;
}

.bb-method .bb-lead { color: #4F5B68 !important; }

.bb-method-bridge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4F5B68;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

/* HORIZONTAL FLOW TRACK — bordered card layout */
.bb-flow-track {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin-top: 52px;
  position: relative;
  align-items: start !important;  
}

/* Connector line removed — card borders carry the visual weight */
.bb-flow-track::before {
  display: none !important;
}

/* Each flow step — bordered card with breathing room */
.bb-flow-step {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px !important;
  background: #F7F8FA !important;
  border: 1.5px solid #E2E5EC !important;
  border-top: 3px solid transparent !important;
  border-radius: 10px !important;
  position: relative;
  z-index: 1;
  transition: border-top-color 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
}

.bb-flow-step:first-child {
  border-top-color: #FF6A00 !important;
  background: #ffffff !important;
  box-shadow: 0 4px 16px rgba(255,106,0,0.08) !important;
}

.bb-flow-step:hover {
  border-top-color: #FF6A00 !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.09) !important;
}

.bb-flow-step:last-child { padding-right: 24px !important; }

/* Step node — circle with number */
.bb-flow-node {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  margin: 0 0 18px 0 !important;
  border: 2px solid rgba(255,106,0,0.25) !important;
  background: #ffffff !important;
  color: rgba(255,106,0,0.5) !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}

/* First node — filled orange, active */
.bb-flow-step:first-child .bb-flow-node {
  background: #FF6A00 !important;
  border-color: #FF6A00 !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 5px rgba(255,106,0,0.1) !important;
}

/* Step keyword — the Tracking / Campaigns / Conversion / Scale label */
.bb-flow-keyword {
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #FF6A00 !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* Step heading */
.bb-flow-step h3 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 0 0 8px !important;
  line-height: 1.25 !important;
}

/* Step body */
.bb-flow-step p {
  font-size: 0.82rem !important;
  color: #4F5B68 !important;
  line-height: 1.65 !important;
  margin: 0 0 16px !important;
}

.bb-flow-step a {
  color: #FF6A00 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

/* Accordion — below step content */
.bb-flow-accordion {
  margin-top: 0;
  border-top: 1px solid #E2E5EC;
  padding-top: 10px;
  width: 100%;
}

.bb-flow-accordion-trigger {
  font-size: 0.74rem !important;
  font-weight: 600 !important;
  color: #FF6A00 !important;
  cursor: pointer;
  list-style: none;
  display: flex !important;
  align-items: center;
  gap: 6px;
  padding: 0;
  user-select: none;
  width: 100%;
}

.bb-flow-accordion-trigger::-webkit-details-marker { display: none; }

.bb-flow-accordion-trigger::after {
  content: '+';
  font-size: 0.85rem;
  margin-left: auto;
  font-weight: 400;
}

.bb-flow-accordion[open] .bb-flow-accordion-trigger::after { content: '−'; }

.bb-flow-accordion-body {
  padding-top: 10px;
}

.bb-flow-accordion-body p {
  font-size: 0.78rem !important;
  color: #4F5B68 !important;
  line-height: 1.62;
  margin: 0;
}

/* GA4 vs GTM strip */
.bb-explainer-strip {
  margin-top: 40px;
  padding: 20px 24px;
  background: #F7F8FA;
  border-left: 3px solid #FF6A00;
  border-radius: 8px;
}

.bb-explainer-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  display: block;
}

.bb-explainer-strip p {
  font-size: 0.875rem;
  color: #2B3542 !important;
  line-height: 1.72;
  margin: 0;
}

.bb-explainer-strip a {
  color: #FF6A00 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

/* Keep the old bb-process-steps/bb-step hidden if still in HTML */
.bb-method .bb-process-steps {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
  margin-top: 48px;
}

.bb-method .bb-process-steps::before { display: none !important; }

.bb-method .bb-step {
  text-align: left !important;
  padding: 22px 18px !important;
  background: #F7F8FA !important;
  border: 1.5px solid #E2E5EC !important;
  border-radius: 10px !important;
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.04) !important;
}

.bb-method .bb-step-node {
  width: 44px !important; height: 44px !important;
  min-width: 44px !important; min-height: 44px !important;
  max-width: 44px !important; max-height: 44px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  margin: 0 0 16px 0 !important;
  border: 2px solid rgba(255,106,0,0.3) !important;
  background: rgba(255,106,0,0.09) !important;
  color: #FF6A00 !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  align-self: flex-start !important;
  line-height: 1 !important;
}

.bb-method .bb-step:first-child .bb-step-node {
  background: #FF6A00 !important;
  border-color: #FF6A00 !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 6px rgba(255,106,0,0.1) !important;
}

.bb-method .bb-step-label {
  font-size: 0.6rem !important; font-weight: 700 !important;
  letter-spacing: 0.12em !important; text-transform: uppercase !important;
  color: #FF6A00 !important; margin-bottom: 6px !important;
  display: block !important; width: auto !important;
}

.bb-method .bb-step h3 {
  font-size: 1rem !important; font-weight: 700 !important;
  color: #111827 !important; margin: 0 0 10px !important; line-height: 1.3 !important;
}

.bb-method .bb-step p {
  font-size: 0.82rem !important; color: #4F5B68 !important;
  line-height: 1.65 !important; margin: 0 0 14px !important; flex: 1 !important;
}

.bb-method .bb-step a {
  color: #FF6A00 !important; font-weight: 600 !important; text-decoration: none !important;
}


/* ═══════════════════════════════════════════════════════════
   ACCORDION (shared)
═══════════════════════════════════════════════════════════ */
.bb-accordion {
  margin-top: 14px;
  border-top: 1px solid #E2E5EC;
  padding-top: 10px;
}

.bb-problem-pillar .bb-accordion,
.bb-proof .bb-accordion,
.bb-related .bb-accordion {
  border-top-color: rgba(255,255,255,0.1);
}

.bb-accordion-trigger {
  font-size: 0.76rem !important; font-weight: 600 !important;
  color: #FF6A00 !important; cursor: pointer;
  list-style: none;
  display: flex !important; align-items: center;
  gap: 6px; padding: 0; user-select: none; width: 100%;
}

.bb-accordion-trigger::-webkit-details-marker { display: none; }
.bb-accordion-trigger::after { content: '+'; font-size: 0.9rem; margin-left: auto; }
.bb-accordion[open] .bb-accordion-trigger::after { content: '−'; }

.bb-accordion-body { padding-top: 10px; }
.bb-accordion-body p {
  font-size: 0.8rem !important; color: #4F5B68 !important;
  line-height: 1.65; margin: 0;
}

/* Bullet lists inside service card accordions */
.bb-accordion-body ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bb-accordion-body ul li {
  font-size: 0.8rem !important;
  color: #4F5B68 !important;
  line-height: 1.6 !important;
  padding: 5px 0 5px 18px !important;
  position: relative !important;
  border-bottom: 1px solid rgba(0,0,0,0.04) !important;
}

.bb-accordion-body ul li:last-child { border-bottom: none !important; }

.bb-accordion-body ul li::before {
  content: '✓' !important;
  position: absolute !important;
  left: 0 !important;
  top: 6px !important;
  color: #FF6A00 !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
}

/* Bullet lists inside methodology flow step accordions */
.bb-flow-accordion-body ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bb-flow-accordion-body ul li {
  font-size: 0.78rem !important;
  color: #4F5B68 !important;
  line-height: 1.6 !important;
  padding: 5px 0 5px 18px !important;
  position: relative !important;
  border-bottom: 1px solid rgba(0,0,0,0.04) !important;
}

.bb-flow-accordion-body ul li:last-child { border-bottom: none !important; }

.bb-flow-accordion-body ul li::before {
  content: '✓' !important;
  position: absolute !important;
  left: 0 !important;
  top: 6px !important;
  color: #FF6A00 !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
}

.bb-problem-pillar .bb-accordion-body p,
.bb-proof .bb-accordion-body p,
.bb-related .bb-accordion-body p {
  color: rgba(255,255,255,0.6) !important;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 5 — MID-PAGE CTA
   REDESIGNED: Larger copy, orange pricing callout, premium form
   #0B121B | 88px
═══════════════════════════════════════════════════════════ */
.bb-audit {
  background: #05070B !important;
  position: relative !important;
  overflow: hidden !important;
}

.bb-audit::before {
  content: '' !important;
  position: absolute !important;
  top: -40% !important; right: -8% !important;
  width: 600px !important; height: 600px !important;
  background: radial-gradient(circle, rgba(255,106,0,0.08) 0%, transparent 60%) !important;
  pointer-events: none !important;
}

.bb-audit-copy h2,
.bb-audit-copy .elementor-widget-html h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 14px !important;
}

.bb-audit-copy .bb-label { color: #FF6A00 !important; }
.bb-audit-copy p { color: rgba(255,255,255,0.9) !important; font-size: 0.9rem !important; line-height: 1.7 !important; }

/* Pricing callout — prominent orange-tinted box */
.bb-audit-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.22);
  border-radius: 8px;
  letter-spacing: -0.01em;
}

.bb-audit-pricing::before {
  content: '✓';
  color: #FF6A00;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}


.bb-audit-micro-cta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75) !important;
  text-align: center;
  margin-top: 12px;
}

.bb-audit-micro-cta a {
  color: #FF6A00 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.bb-micro-cta-hero {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75) !important;
  text-align: left;
  margin-top: 20px;
}

.bb-micro-cta-hero a {
  color: #FF6A00 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.bb-micro-cta-hero a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 6 — PROOF ("Real Results")
   REDESIGNED: Stats-dominant card layout
   #0D1117 | 96px
═══════════════════════════════════════════════════════════ */
.bb-proof {
  padding: 96px 0;
  background: #000 !important;
}

.bb-proof h2,
.bb-proof .bb-heading,
.bb-proof .elementor-widget-html h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.1 !important;
}

.bb-proof .bb-lead { color: rgba(255,255,255,0.75) !important; max-width: 1160px; margin-bottom: 16px; }
.bb-proof .bb-label { color: #FF6A00 !important; }
.bb-proof p { color: rgba(255,255,255,0.6) !important; }

/* Aggregate proof bar — replaces verbose intro */
.bb-proof-aggregate {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.bb-proof-agg-item {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.bb-proof-agg-item:last-child { border-right: none; }

.bb-proof-agg-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FF6A00;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}

.bb-proof-agg-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.02em;
  display: block;
}

/* Case cards grid — 3 columns */
.bb-cases-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px;
  margin-bottom: 24px;
}

/* FIX: Case card — increased padding + display pill */
.bb-proof .bb-case-card,
.bb-cases-grid .bb-case-card {
  background: #141414 !important;
  border: 1px solid rgba(255,106,0,0.35) !important;
  border-radius: 10px !important;
  padding: 28px 26px !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04) !important;
  transition: border-color 0.2s !important;
}

.bb-proof .bb-case-card:hover,
.bb-cases-grid .bb-case-card:hover {
  border-color: rgba(255,106,0,0.28) !important;
}

.bb-proof .bb-case-pill {
  color: #FF6A00 !important;
  background: rgba(255,106,0,0.1) !important;
  border: 1px solid rgba(255,106,0,0.18) !important;
  border-radius: 100px !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  display: inline-block !important;
  padding: 4px 10px !important;
  margin-bottom: 14px !important;
  text-transform: uppercase !important;
}

.bb-proof .bb-case-title {
  color: #ffffff !important;
  font-size: 0.97rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.bb-proof .bb-case-body {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.83rem !important;
  line-height: 1.68 !important;
}

/* Stats — dominant numbers */
.bb-proof .bb-cs-num,
.bb-cases-grid .bb-cs-num {
  font-size: 1.5rem !important;

  font-weight: 800 !important;
  color: #FF6A00 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
}

.bb-proof .bb-case-stats > div,
.bb-cases-grid .bb-case-stats > div {
  padding: 0 15px;
}

@media (max-width: 1024px){
  .bb-proof .bb-case-stats,
  .bb-cases-grid .bb-case-stats{
    flex-wrap: wrap;
  }

  .bb-proof .bb-case-stats > div,
  .bb-cases-grid .bb-case-stats > div{
    min-width: 33%;
  }
}

.bb-proof .bb-cs-lbl,
.bb-cases-grid .bb-cs-lbl {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.67rem !important;
}

/* FIX: Case stats — consistent flex alignment */
.bb-proof .bb-case-stats,
.bb-cases-grid .bb-case-stats {
  display: flex !important;
  gap: 0 !important;
  border-top: 1px solid rgba(255,106,0,0.18) !important;
  border-bottom: 1px solid rgba(255,106,0,0.18) !important;
  padding: 18px 0 !important;
  margin: 16px 0 !important;
}

.bb-proof .bb-case-stats > div,
.bb-cases-grid .bb-case-stats > div {
  flex: 1;
  text-align: center;
  display: flex !important;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.bb-proof .bb-case-stats > div + div,
.bb-cases-grid .bb-case-stats > div + div {
  border-left: 1px solid rgba(255,255,255,0.07) !important;
}

/* Quote — emotional anchor */
.bb-proof .bb-case-quote,
.bb-cases-grid .bb-case-quote {
  color: rgba(255,255,255,1) !important;
  border-left: 3px solid #FF6A00 !important;
  font-size: 0.88rem !important;
  line-height: 1.68 !important;
  font-style: italic !important;
}

.bb-proof .bb-case-quote cite,
.bb-cases-grid .bb-case-quote cite {
  color: rgba(255,255,255,0.55) !important;
  font-weight: 700;
  font-size: 0.72rem !important;
  font-style: normal !important;
}

.bb-proof-trust-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-top: 28px;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 6B — WHAT YOU UNLOCK
   REDESIGNED: Two-col with strong/desc on separate lines
   #ffffff | 80px
═══════════════════════════════════════════════════════════ */
.bb-unlock {
  padding: 96px 0;
  background: #ffffff;
}

.bb-unlock h2,
.bb-unlock .bb-heading,
.bb-unlock .elementor-widget-html h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem) !important;
  color: #111827 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.bb-unlock-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-top: 36px;
}

.bb-unlock-item {
  display: flex !important;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.84rem !important;
  color: #4F5B68 !important;
  line-height: 1.65 !important;
  padding: 22px 22px !important;
  background: #F7F8FA !important;
  border: 1px solid #E2E5EC !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03) !important;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s !important;
}

.bb-unlock-item:hover {
  border-color: rgba(255,106,0,0.3) !important;
  box-shadow: 0 6px 20px rgba(255,106,0,0.07), 0 2px 8px rgba(0,0,0,0.05) !important;
  transform: translateY(-1px) !important;
}

.bb-unlock-item > div {
  flex: 1;
}

/* Key outcome word — brand orange */
.bb-unlock-item strong {
  color: #FF6A00 !important;
  font-weight: 700 !important;
  display: block !important;
  margin-bottom: 6px !important;
  font-size: 0.95rem !important;
}

/* Secondary bold within description — stays dark */
.bb-unlock-item b {
  color: #111827 !important;
  font-weight: 700 !important;
}

/* Icon box — prominent square with subtle orange bg */
.bb-unlock-icon {
  flex-shrink: 0 !important;
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,106,0,0.09) !important;
  border: 1px solid rgba(255,106,0,0.15) !important;
  border-radius: 9px !important;
  margin-top: 1px;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 7 — SERVICES HUB
   #F7F8FA | 80px
═══════════════════════════════════════════════════════════ */
.bb-svc-hub {
  padding: 96px 0;
  background: #F7F8FA;
}

.bb-svc-hub h2,
.bb-svc-hub .bb-heading,
.bb-svc-hub .elementor-widget-html h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.3rem) !important;
  color: #111827 !important;
  font-weight: 800 !important;
  letter-spacing: -0.022em !important;
}

.bb-svc-hub .bb-lead { color: #4F5B68 !important; }

/* 3-col grid; 7th card (Multi-Pixel) spans naturally into 4th row */
.bb-svc-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
  align-items: start !important;  
}

/* <a> tag card — more padding for premium feel */
.bb-svc-card {
  display: flex !important;
  flex-direction: column;
  padding: 26px 24px !important;
  text-decoration: none !important;
  color: inherit !important;
  background: #ffffff !important;
  border: 1.5px solid #E2E5EC !important;
  border-top: 3px solid transparent !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04) !important;
  transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.15s !important;
}

.bb-svc-card:hover {
  border-top-color: #FF6A00 !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.09) !important;
  transform: translateY(-2px) !important;
}

.bb-svc-num {
  font-size: 0.6rem !important; font-weight: 800 !important;
  color: #FF6A00 !important; letter-spacing: 0.16em !important;
  text-transform: uppercase !important; margin-bottom: 12px;
  display: block !important;
}

.bb-svc-body { display: flex; flex-direction: column; flex: 1; }

.bb-svc-title {
  font-size: 0.95rem !important; font-weight: 700 !important;
  color: #111827 !important; line-height: 1.3; margin-bottom: 10px;
}

.bb-svc-desc {
  font-size: 0.81rem !important; color: #4F5B68 !important;
  line-height: 1.65; margin-bottom: 14px; flex: 1;
}

.bb-svc-link {
  font-size: 0.75rem !important; font-weight: 600 !important;
  color: #FF6A00 !important; margin-top: auto;
  padding-top: 12px; display: block;
  text-decoration: none !important;
  border-top: 1px solid #E2E5EC;
}

.bb-svc-card:hover .bb-svc-link { text-decoration: underline !important; }

/* Between-section soft CTA — used after proof, after services, etc. */
.bb-section-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 24px 28px;
  background: #F7F8FA;
  border: 1px solid #E2E5EC;
  border-left: 4px solid #FF6A00;
  border-radius: 10px;
  flex-wrap: wrap;
}

.bb-section-cta-text {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  min-width: 200px;
}

.bb-section-cta-text span {
  color: #FF6A00;
}

/* Dark variant — used in dark sections */
.bb-section-cta--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  border-left-color: #FF6A00;
}

.bb-section-cta--dark .bb-section-cta-text {
  color: rgba(255,255,255,1);
}




/* ═══════════════════════════════════════════════════════════
   SECTION 8 — PRICING
   CONVERSION: Tier 1/3 = outlined, Tier 2 = solid primary
   #ffffff | 96px
═══════════════════════════════════════════════════════════ */
.bb-pricing {
  padding: 96px 0;
  background: #ffffff;
}

.bb-pricing h2,
.bb-pricing .bb-heading,
.bb-pricing .elementor-widget-html h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem) !important;
  color: #111827 !important; font-weight: 800 !important; letter-spacing: -0.02em !important;
}

.bb-pricing .bb-lead { color: #4F5B68 !important; }

/* Grid — equal heights, generous gap */
.bb-pricing-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

/* Base card */
.bb-pricing-card {
  padding: 36px 32px 32px !important;
  display: flex !important;
  flex-direction: column;
  background: #ffffff !important;
  border: 1.5px solid #E2E5EC !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 8px 24px rgba(0,0,0,0.04) !important;
  position: relative;
}

/* Featured card — orange tint background + border */
.bb-pricing-card--featured {
  
  background: #fffaf5 !important;
  box-shadow: 0 8px 32px rgba(255,106,0,0.14) !important;
}

/* Most Popular badge — positioned above card */
.bb-pricing-badge {
  border: 2px solid #FF6A00 !important;
  position: absolute !important;
  top: -14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  background: #FF6A00 !important;
  border-radius: 100px !important;
  padding: 5px 14px !important;
  white-space: nowrap !important;
}

/* Package name — large and bold at top */
.bb-pricing-name {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #111827 !important;
  line-height: 1.2 !important;
  margin-bottom: 8px !important;
}

/* Best for description */
.bb-pricing-bestfor {
  font-size: 0.82rem !important;
  color: #4F5B68 !important;
  line-height: 1.58 !important;
  margin-bottom: 20px !important;
}

/* Price divider above */
.bb-pricing-divider {
  border: none !important;
  border-top: 1.5px solid #E2E5EC !important;
  margin: 0 0 20px !important;
}

.bb-pricing-card--featured .bb-pricing-divider {
  border-top-color: rgba(255,106,0,0.25) !important;
}

/* Price — centered, brand orange */
.bb-pricing-price-wrap {
  text-align: center !important;
  margin-bottom: 6px !important;
}

.bb-pricing-price {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  color: #FF6A00 !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
  display: block !important;
}

.bb-pricing-freq {
  font-size: 0.75rem !important;
  color: #9CA3AF !important;
  font-weight: 500 !important;
  display: block !important;
  text-align: center !important;
  margin-bottom: 20px !important;
}

/* Divider below price */
.bb-pricing-divider-below {
  border: none !important;
  border-top: 1.5px solid #E2E5EC !important;
  margin: 0 0 20px !important;
}

.bb-pricing-card--featured .bb-pricing-divider-below {
  border-top-color: rgba(255,106,0,0.25) !important;
}

/* Feature list — clean bullet format */
.bb-pricing-features {
  list-style: none !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  flex: 1;
}

.bb-pricing-features li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 0.83rem !important;
  color: #2B3542 !important;
  line-height: 1.5 !important;
  padding: 6px 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.04) !important;
}

.bb-pricing-features li:last-child {
  border-bottom: none !important;
}

.bb-pricing-features li::before {
  content: '✓' !important;
  color: #FF6A00 !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}

/* Featured list — orange accent first item */
.bb-pricing-card--featured .bb-pricing-features li:first-child {
  color: #FF6A00 !important;
  font-weight: 600 !important;
}

/* Turnaround note */
.bb-pricing-meta {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.45) !important;
  margin-bottom: 16px;
  font-weight: 500;
  display: block;
  text-align: center;
}

.bb-pricing-note {
  text-align: center; font-size: 0.82rem; color: #4F5B68 !important; margin-top: 28px;
}

.bb-pricing-note a { color: #FF6A00 !important; font-weight: 600 !important; text-decoration: none !important; }

/* Tier 1 and 3: outlined ghost buttons */
.bb-pricing-card:not(.bb-pricing-card--featured) .bb-btn,
.bb-pricing-card:not(.bb-pricing-card--featured) .bb-btn-primary {
  background: transparent !important;
  background-color: transparent !important;
  color: #FF6A00 !important;
  border: 2px solid #FF6A00 !important;
}

.bb-pricing-card:not(.bb-pricing-card--featured) .bb-btn:hover,
.bb-pricing-card:not(.bb-pricing-card--featured) .bb-btn-primary:hover {
  background: rgba(255,106,0,0.06) !important;
  background-color: rgba(255,106,0,0.06) !important;
  color: #ED4B00 !important;
  border-color: #ED4B00 !important;
}

/* Tier 2 featured: solid primary */
.bb-pricing-card--featured .bb-btn,
.bb-pricing-card--featured .bb-btn-primary {
  background: #FF6A00 !important;
  background-color: #FF6A00 !important;
  color: #ffffff !important;
  border: none !important;
}

.bb-pricing-card--featured .bb-btn:hover,
.bb-pricing-card--featured .bb-btn-primary:hover {
  background: #ED4B00 !important;
  background-color: #ED4B00 !important;
}

.bb-pricing-card .bb-btn {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  text-align: center !important;
  font-weight: 700 !important;
  padding: 14px 20px !important;
  font-size: 0.92rem !important;
}


/* ═══════════════════════════════════════════════════════════
   SECTION 9 — FAQ
   REDESIGNED: Slightly upgraded — heavier question text
   #F7F8FA | 80px
═══════════════════════════════════════════════════════════ */
.bb-faq-section {
  padding: 96px 0;
  background: #F7F8FA;
}

.bb-faq-section h2,
.bb-faq-section .bb-heading,
.bb-faq-section .elementor-widget-html h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem) !important;
  color: #111827 !important; font-weight: 800 !important; letter-spacing: -0.02em !important;
}

/* FAQ inner — constrained to readable width, still wide */
.bb-faq-inner {
  max-width: 860px;
}

.bb-faq {
  display: flex; flex-direction: column;
  margin-top: 36px; border-top: 1.5px solid #E2E5EC;
}

.bb-faq-item { border-bottom: 1.5px solid #E2E5EC; }
.bb-faq-details { width: 100%; }

.bb-faq-q {
  font-size: 1rem !important; font-weight: 600 !important;
  color: #111827 !important; cursor: pointer;
  padding: 22px 0; list-style: none;
  display: flex !important; align-items: center;
  justify-content: space-between; gap: 20px;
  user-select: none; line-height: 1.4;
  transition: color 0.15s;
}

.bb-faq-q::-webkit-details-marker { display: none; }

.bb-faq-q::after {
  content: '+'; font-size: 1.1rem; font-weight: 400;
  color: #FF6A00; flex-shrink: 0;
}

.bb-faq-details[open] .bb-faq-q::after { content: '−'; }
.bb-faq-details[open] .bb-faq-q { color: #FF6A00 !important; }

.bb-faq-a { padding: 0 0 22px; }

.bb-faq-a p {
  font-size: 0.92rem; color: #2B3542 !important;
  line-height: 1.78; margin: 0; max-width: 720px;
}

.bb-faq-a a { color: #FF6A00 !important; font-weight: 600 !important; text-decoration: none !important; }


/* ═══════════════════════════════════════════════════════════
   SECTION 10 — RELATED SERVICES
   Left accent border on each card, dark glass
   #0D1117 | 88px
═══════════════════════════════════════════════════════════ */
.bb-related {
  padding: 88px 0;
  background: #080a0e !important;
}

.bb-related h2,
.bb-related .bb-heading,
.bb-related .elementor-widget-html h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem) !important;
  color: #ffffff !important; font-weight: 800 !important; letter-spacing: -0.02em !important;
}

.bb-related .bb-lead { color: rgba(255,255,255,0.80) !important; margin-bottom: 40px; }
.bb-related .bb-label { color: #FF6A00 !important; }

.bb-related-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

.bb-related-card {
  display: flex !important; flex-direction: column;
  padding: 32px 28px !important;
  text-decoration: none !important; color: inherit !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-left: 4px solid rgba(255,106,0,0.6) !important;
  border-radius: 10px !important;
  transition: border-left-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}

.bb-related-card:hover {
  border-left-color: #FF6A00 !important;
  background: rgba(255,255,255,0.09) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3) !important;
}

/* Eyebrow — service category micro-label */
.bb-related-eyebrow {
  font-size: 0.6rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #FF6A00 !important;
  margin-bottom: 10px !important;
  display: block !important;
}

/* Main label — larger, full white */
.bb-related-label {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 14px !important;
  line-height: 1.3 !important;
}

.bb-related-desc {
  font-size: 0.86rem !important; color: rgba(255,255,255,0.8) !important;
  line-height: 1.72 !important; flex: 1; margin: 0 0 20px;
}

.bb-related-link {
  font-size: 0.78rem !important; font-weight: 700 !important;
  color: #FF6A00 !important; margin-top: auto; text-decoration: none !important;
  display: inline-flex; align-items: center; gap: 4px;
}

.bb-related-link:hover { text-decoration: underline !important; }


/* ═══════════════════════════════════════════════════════════
   SECTION 11 — FINAL CTA
   PEAK: Largest H2. Orange outline secondary. Pulse badge.
   #000000 | 120px
═══════════════════════════════════════════════════════════ */
.bb-final {
  background: #000000 !important;
  padding: 120px 0 !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
}

.bb-final::before {
  content: '' !important; position: absolute !important;
  top: 50% !important; left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 700px !important; height: 300px !important;
  background: radial-gradient(ellipse, rgba(255,106,0,0.13) 0%, transparent 65%) !important;
  pointer-events: none !important;
}

.bb-final-inner {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* PEAK — largest H2 on the page */
.bb-final h2,
.bb-final .bb-heading,
.bb-final .elementor-widget-html h2 {
  font-size: clamp(2rem, 3.6vw, 3rem) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 18px !important;
}

.bb-final h2 em,
.bb-final .elementor-widget-html h2 em {
  font-style: normal !important;
  color: #FF6A00 !important;
}

.bb-final-body,
.bb-final p.bb-final-body {
  font-size: 1rem !important;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.72 !important;
  margin-bottom: 36px !important;
}

.bb-final-actions {
  display: flex !important;
  justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
}

/* Primary: solid orange */
.bb-final .bb-btn-primary {
  background: #FF6A00 !important; background-color: #FF6A00 !important;
  color: #ffffff !important; border: 1px solid #FF6A00 !important; font-weight: 700 !important;
}

.bb-final .bb-btn-primary:hover {
  background: #ED4B00 !important; background-color: #ED4B00 !important; border-color: #ED4B00 !important;
}

/* Secondary: orange outline (warm, not cold grey) */
.bb-final .bb-btn-outline-lt {
  background: transparent !important;
  color: #FF6A00 !important;
  border: 1.5px solid rgba(255,106,0,0.5) !important;
  font-weight: 600 !important;
}

.bb-final .bb-btn-outline-lt:hover {
  border-color: #FF6A00 !important;
  background: rgba(255,106,0,0.07) !important;
}

.bb-final-note {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.7) !important;
  display: block; margin-top: 12px;
}

.bb-final-note-light {
  font-size: 0.72rem !important;
  color: rgba(0,0,0,0.6) !important;
  display: block; margin-top: 12px;
  text-align: center;
}

/* Scarcity badge with pulse */
.bb-scarce {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.22);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.7rem; font-weight: 600;
  color: #FF6A00 !important;
  letter-spacing: 0.04em; margin-bottom: 24px;
}

.bb-scarce-dot {
  width: 6px; height: 6px;
  background: #FF6A00; border-radius: 50%;
  display: inline-block;
  animation: bb-pulse 2s ease-in-out infinite;
}

@keyframes bb-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.65); }
}

/* ═══════════════════════════════════════════════════════════
   FIX 1 — DARK FORM: CHECKBOX, RADIO & FORM CONTAINER
   Targets all WPForms field types inside .bb-dark-form
═══════════════════════════════════════════════════════════ */

/* Lead Form Custom Codes */

.bb-dark-form .wpforms-container {
  background: linear-gradient(145deg, rgba(22,22,26,.95), rgba(11,18,27,.92));
  border: 1px solid rgba(255,106,0,0.35);
  box-shadow:
    0 0 0 1px rgba(255,106,0,0.08),
    0 16px 40px rgba(0,0,0,0.35);
  border-radius: 12px;
  padding: 32px;
  min-height: 320px;
}


/* Checkbox and radio list items */
.bb-dark-form .wpforms-container .wpforms-field-checkbox li,
.bb-dark-form .wpforms-container .wpforms-field-radio li,
.bb-dark-form .wpforms-container .wpforms-field-payment-checkbox li,
.bb-dark-form .wpforms-container .wpforms-field-payment-multiple li {
  margin-bottom: 10px !important;
}

/* Checkbox and radio labels — white text */
.bb-dark-form .wpforms-container .wpforms-field-checkbox li label,
.bb-dark-form .wpforms-container .wpforms-field-radio li label {
  color: rgba(255,255,255,1) !important;
  font-size: 0.92rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  cursor: pointer !important;
}

/* Native checkbox/radio — hide default, replace with styled */
.bb-dark-form .wpforms-container .wpforms-field-checkbox input[type="checkbox"],
.bb-dark-form .wpforms-container .wpforms-field-radio input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid rgba(255,255,255,0.28) !important;
  border-radius: 4px !important;
  background: rgba(255,255,255,0.06) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  margin-right: 10px !important;
  vertical-align: middle !important;
  transition: border-color 0.15s, background 0.15s !important;
  position: relative !important;
}

.bb-dark-form .wpforms-container .wpforms-field-radio input[type="radio"] {
  border-radius: 50% !important;
}

/* Checked state */
.bb-dark-form .wpforms-container .wpforms-field-checkbox input[type="checkbox"]:checked,
.bb-dark-form .wpforms-container .wpforms-field-radio input[type="radio"]:checked {
  background: #FF6A00 !important;
  border-color: #FF6A00 !important;
}

/* Checkmark via box-shadow trick — no pseudo-element needed */
.bb-dark-form .wpforms-container .wpforms-field-checkbox input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 5l3.5 3.5L11 1'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 11px !important;
}

/* Radio dot */
.bb-dark-form .wpforms-container .wpforms-field-radio input[type="radio"]:checked {
  box-shadow: inset 0 0 0 3px #FF6A00, inset 0 0 0 6px #161C27 !important;
  background: #FF6A00 !important;
}

/* Select dropdown */
.bb-dark-form .wpforms-container select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23ffffff' stroke-opacity='0.5' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 18px !important;
  padding-right: 36px !important;
}

/* Select option text (browser-limited) */
.bb-dark-form .wpforms-container select option {
  background: #1a2235 !important;
  color: #ffffff !important;
}

/* BlazeByte dark-section WPForms fields */
.bb-dark-form .wpforms-container input[type="text"],
.bb-dark-form .wpforms-container input[type="email"],
.bb-dark-form .wpforms-container input[type="url"],
.bb-dark-form .wpforms-container input[type="tel"],
.bb-dark-form .wpforms-container input[type="number"],
.bb-dark-form .wpforms-container textarea,
.bb-dark-form .wpforms-container select {
  background: #ffffff !important;
  border: 1px solid rgba(18,32,54,0.16) !important;
  border-radius: 8px !important;
  color: rgba(0,0,0,0.86) !important;
  padding: 12px 14px !important;
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08) !important;
}

/* Placeholders */
.bb-dark-form .wpforms-container input::placeholder,
.bb-dark-form .wpforms-container textarea::placeholder {
  color: rgba(0,0,0,0.6) !important;
  opacity: 1 !important;
}

/* Labels */
.bb-dark-form .wpforms-container .wpforms-field-label {
  color: #ffffff !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

/* Description/help text */
.bb-dark-form .wpforms-container .wpforms-field-description,
.bb-dark-form .wpforms-container .wpforms-field-sublabel {
  color: rgba(255,255,255,0.62) !important;
}

/* Textarea */
.bb-dark-form .wpforms-container textarea {
  min-height: 120px !important;
}

/* Focus state */
.bb-dark-form .wpforms-container input:focus,
.bb-dark-form .wpforms-container textarea:focus,
.bb-dark-form .wpforms-container select:focus {
  border-color: #FF6A00 !important;
  box-shadow: 0 0 0 3px rgba(255,106,0,0.18) !important;
  outline: none !important;
}

.bb-dark-form .wpforms-container .wpforms-page-button,
.bb-dark-form .wpforms-container button[type="submit"],
.bb-dark-form .wpforms-container .wpforms-submit,
.bb-dark-form .wpforms-container input[type="submit"] {
  width: 100% !important;
  padding: 19px 17px !important;
  font-size: clamp(1rem, 1vw, 1rem) !important;
  line-height: 1.25 !important;
  white-space: normal !important;
  word-break: break-word !important;
  height: auto !important;
  min-height: unset !important;
}


/* ═══════════════════════════════════════════════════════════
   FIX 2 — TESTIMONIALS: MOBILE RESPONSIVE
   SP Testimonial / Swiper — cramped at <768px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Give testimonial cards breathing room */
  .bb-testi .sp-testimonial--carousel .sp-testimonial-item,
  .bb-testi .sp_testimonial_section .sp-testimonial-item,
  .bb-testi .swiper-slide {
    padding: 0 8px !important;
  }

  .bb-testi .sp-testimonial-content,
  .bb-testi .sp-testimonial-item-inner,
  .bb-testi .sp-testimonial-slide {
    padding: 20px !important;
    border-radius: 10px !important;
  }

  /* Testimonial quote text */
  .bb-testi .sp-testimonial-item p,
  .bb-testi .sp-testimonial-item .sp-testimonial-description,
  .bb-testi blockquote p {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
  }

  /* Author name */
  .bb-testi .sp-testimonial-item .sp-testimonial-client-name,
  .bb-testi .sp-testimonial-author-name {
    font-size: 0.88rem !important;
  }

  /* Company/URL */
  .bb-testi .sp-testimonial-item .sp-testimonial-client-company,
  .bb-testi .sp-testimonial-author-designation {
    font-size: 0.78rem !important;
  }

  /* Star ratings if shown */
  .bb-testi .sp-testimonial-item .sp-testimonial-star-rating {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .bb-testi .sp-testimonial-content,
  .bb-testi .sp-testimonial-item-inner {
    padding: 16px !important;
  }

  .bb-testi .sp-testimonial-item p,
  .bb-testi .sp-testimonial-item .sp-testimonial-description {
    font-size: 0.86rem !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Grid collapses */
  .bb-flow-track,
  .bb-method .bb-process-steps      { grid-template-columns: repeat(2, 1fr) !important; }
  .bb-flow-track::before             { display: none !important; }
  .bb-diag-grid                      { grid-template-columns: 1fr !important; }
  .bb-diag-proof-strip               { flex-wrap: wrap; gap: 12px; }
  .bb-proof-aggregate                { flex-wrap: wrap; gap: 16px; }
  .bb-unlock-grid                    { grid-template-columns: 1fr !important; }
  .bb-svc-grid                       { grid-template-columns: 1fr 1fr !important; }
  .bb-pricing-grid                   { grid-template-columns: 1fr !important; gap: 14px; }
  .bb-related-grid                   { grid-template-columns: 1fr !important; }
  .bb-cases-grid                     { grid-template-columns: 1fr !important; }
  .bb-page-hero-stats                { gap: 18px; flex-wrap: wrap; }
  .bb-page-hero-stat-div             { display: none; }
}
 
@media (max-width: 600px) {
 
  /* ─── GLOBAL: restore side padding on mobile ─── */
  /* Elementor removes its own container padding on mobile — add it back here */
  .bb-wrap {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
 
  /* ─── HERO ─── */
  .bb-page-hero                      { padding: 48px 0 40px; }
  .bb-page-h1                        { font-size: clamp(1.7rem, 7vw, 2.1rem) !important; }
  .bb-page-hero-actions              { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bb-page-hero-actions .bb-btn      { width: 100%; justify-content: center; }
  .bb-page-hero-stats                { gap: 16px; flex-wrap: wrap; }
  .bb-page-hero-stat-div             { display: none; }
  .bb-page-hero-sub                  { font-size: 0.9rem !important; }
  .bb-micro-cta-hero                 { font-size: 0.82rem; margin-top: 10px; }
 
  /* ─── SECTION PADDING ─── */
  .bb-diag,
  .bb-unlock,
  .bb-svc-hub,
  .bb-faq-section                    { padding: 56px 0; }
 
  .bb-problem-pillar,
  .bb-method,
  .bb-proof,
  .bb-pricing,
  .bb-related                        { padding: 64px 0; }
 
  .bb-final                          { padding: 72px 0 !important; }
 
  /* ─── SELF-DIAGNOSIS ─── */
  .bb-diag-grid                      { grid-template-columns: 1fr !important; gap: 8px; }
  .bb-diag-proof-strip               { flex-direction: column; gap: 0; }
  .bb-diag-proof-stat                { width: 100%; text-align: center; padding: 12px 0;
                                       border-bottom: 1px solid #E2E5EC; }
  .bb-diag-proof-stat:last-child     { border-bottom: none; }
  .bb-diag-proof-num                 { font-size: 1.5rem !important; }
  .bb-insight-box                    { padding: 18px !important; }
  .bb-insight-box p                  { font-size: 0.88rem !important; }
 
  /* ─── PROBLEM ─── */
  .bb-prob-item                      { gap: 14px; }
  .bb-prob-num                       { font-size: 2rem !important; }
  .bb-prob-item-text strong          { font-size: 0.92rem !important; }
  .bb-section-cta                    { flex-direction: column; gap: 12px; }
  .bb-section-cta .bb-btn            { width: 100%; justify-content: center; }
 
  /* ─── METHODOLOGY ─── */
  .bb-flow-track,
  .bb-method .bb-process-steps       { grid-template-columns: 1fr !important; gap: 12px !important; }
  .bb-method-bridge                  { font-size: 0.72rem !important; }
  .bb-explainer-strip                { padding: 18px !important; }
  .bb-explainer-strip p              { font-size: 0.84rem !important; }
  .bb-flow-step                      { padding: 22px 18px !important; }
 
  /* ─── PROOF ─── */
  .bb-proof-aggregate                { flex-direction: column; gap: 0; }
  .bb-proof-agg-item                 { width: 100%; text-align: center;
                                       padding: 12px 0;
                                       border-bottom: 1px solid rgba(255,255,255,0.08); }
  .bb-proof-agg-item:last-child      { border-bottom: none; }
  .bb-proof-agg-num                  { font-size: 1.6rem !important; }
  .bb-cases-grid                     { grid-template-columns: 1fr !important; gap: 14px; }
  .bb-case-card                      { padding: 22px 18px !important; }
  .bb-case-stats                     { flex-direction: row !important; }
  .bb-cs-num                         { font-size: 1.1rem !important; }
 
  /* ─── UNLOCK / OUTCOME ─── */
  .bb-unlock-grid                    { grid-template-columns: 1fr !important; gap: 10px; }
  .bb-unlock-item                    { padding: 16px 14px !important; gap: 12px; }
 
  /* ─── SERVICES HUB ─── */
  .bb-svc-grid                       { grid-template-columns: 1fr !important; gap: 12px; }
  .bb-svc-card                       { padding: 20px 18px !important; }
 
  /* ─── PRICING ─── */
  .bb-pricing-grid,
  .bb-pm-pricing-grid                { grid-template-columns: 1fr !important; gap: 14px; }
  .bb-plan                           { padding: 28px 20px !important; }
  .bb-price__num                     { font-size: 1.6rem !important; }
 
  /* ─── FAQ ─── */
  .bb-faq-q                          { font-size: 0.9rem !important; padding: 18px 0 !important; }
  .bb-faq-inner                      { max-width: 100%; }
  .bb-pm-faq-group-label             { font-size: 0.62rem !important; }
  .bb-faq-inline-cta                 { font-size: 0.8rem !important; }
 
  /* ─── RELATED / CROSS-PILLAR ─── */
  .bb-related-grid                   { grid-template-columns: 1fr !important; gap: 12px; }
  .bb-related-card                   { padding: 22px 18px !important; }
 
  /* ─── FINAL CTA ─── */
  .bb-final-actions                  { padding: 22px 20px !important; flex-direction: column !important; align-items: center; gap: 12px; }
  .bb-final-actions .bb-btn          { width: 100%; justify-content: center; margin-top:20px;}
  .bb-final h2                       { font-size: clamp(1.6rem, 6vw, 2rem) !important; }
 
  /* ─── SOFT CTA STRIP ─── */
  .bb-soft-cta                       { flex-direction: column; gap: 8px; }
  .bb-soft-cta .bb-btn               { width: 100%; justify-content: center; }
 
  /* ─── SECTION CTA STRIP ─── */
  .bb-section-cta--dark              { flex-direction: column; gap: 12px; }
  .bb-section-cta--dark .bb-btn      { width: 100%; justify-content: center; }
}
 
/* ─── Extra small — 375px and below ─── */
@media (max-width: 390px) {
  .bb-wrap {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .bb-page-h1   { font-size: clamp(1.5rem, 8vw, 1.9rem) !important; }
  .bb-btn       { font-size: 0.85rem !important; padding: 13px 18px !important; }
}