/* =====================================================
   Business Boost — CustomerPull v2.0
   Professional CSS — fully responsive
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Syne:wght@700;800&display=swap');

:root {
  --bb-bg: #0a0a0a;
  --bb-s1: #111111;
  --bb-s2: #181818;
  --bb-s3: #222222;
  --bb-border: #272727;
  --bb-yellow: #fcd41d;
  --bb-ydim: rgba(252, 212, 29, .10);
  --bb-green: #00e676;
  --bb-text: #f0f0f0;
  --bb-muted: #888888;
  --bb-faint: #444444;
  --bb-rad: 14px;
  --bb-sidebar: 240px;
  --bb-max: 1120px;
  --bb-nav-h: 66px;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  min-height: 100vh !important;
  background: var(--bb-bg) !important;
  overflow-x: hidden;
}

#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

#bb-app,
#bb-app *,
#bb-toast-container,
.bb-overlay,
.bb-wa-fab,
.bb-mob-menu-btn {
  box-sizing: border-box;
}

#bb-app ul,
#bb-app ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

#bb-app a {
  text-decoration: none;
}

#bb-app {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bb-bg);
  color: var(--bb-text);
  line-height: 1.6;
  font-size: 15px;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

#bb-app h1,
#bb-app h2,
#bb-app h3,
#bb-app h4 {
  margin: 0 0 0.4em;
  line-height: 1.15;
  font-family: 'Syne', sans-serif;
}

#bb-app p {
  margin: 0 0 0.9em;
}

#bb-app p:last-child {
  margin-bottom: 0;
}

#bb-app button {
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
}

.bb-page {
  display: none;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
}

.bb-page.active {
  display: block;
}

.bb-dash-page.active {
  display: flex !important;
}

.bb-hidden {
  display: none !important;
}

.bb-accent {
  color: var(--bb-yellow);
}

.bb-mt4 {
  margin-top: 4px !important;
}

.bb-mt8 {
  margin-top: 8px !important;
}

.bb-mt16 {
  margin-top: 16px !important;
}

.bb-mt20 {
  margin-top: 20px !important;
}

.bb-w100 {
  width: 100% !important;
}

/* ── NAVBAR ── */
.bb-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  width: 100%;
  height: var(--bb-nav-h);
  background: rgba(10, 10, 10, .93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bb-border);
}

/* Only show the navbar inside the active page */
.bb-page:not(.active) .bb-navbar {
  display: none;
}

.bb-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--bb-max);
  margin: 0 auto;
  padding: 0 40px;
  gap: 20px;
}

/* .bb-logo now handled by bb-cp-logo rules below */




.bb-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.bb-nav-link {
  background: none;
  border: none;
  color: var(--bb-muted);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.bb-nav-link:hover {
  color: var(--bb-text);
  background: var(--bb-s2);
}

.bb-nav-link.active {
  color: var(--bb-text);
  background: var(--bb-s2);
}

.bb-nav-badge {
  background: var(--bb-yellow);
  color: #000;
  font-size: .58rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

.bb-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.bb-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--bb-border);
  border-radius: 8px;
  color: var(--bb-text);
  padding: 7px 11px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.bb-navbar-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--bb-nav-h);
  padding: 0 40px;
  border-bottom: 1px solid var(--bb-border);
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 500;
}

.bb-secure-label {
  font-size: .82rem;
  color: var(--bb-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── BUTTONS ── */
.bb-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  padding: 10px 20px;
  transition: all .18s;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.bb-btn-primary {
  background: var(--bb-yellow);
  color: #000;
}

.bb-btn-primary:hover {
  background: #c8f000;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(252, 212, 29, .25);
}

.bb-btn-outline {
  background: transparent;
  color: var(--bb-text);
  border: 1px solid var(--bb-border);
}

.bb-btn-outline:hover {
  border-color: var(--bb-yellow);
  color: var(--bb-yellow);
}

.bb-btn-ghost {
  background: transparent;
  color: var(--bb-muted);
  border: none;
}

.bb-btn-ghost:hover {
  color: var(--bb-text);
}

.bb-btn-sm {
  padding: 7px 14px;
  font-size: .8rem;
  border-radius: 8px;
}

.bb-btn-lg {
  padding: 13px 26px;
  font-size: 1rem;
}

.bb-btn-xl {
  padding: 15px 30px;
  font-size: 1rem;
}

.bb-btn-round {
  border-radius: 50px;
}

.bb-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── HERO ── */
.bb-hero {
  text-align: center;
  padding: calc(var(--bb-nav-h) + 48px) 40px 72px;
  max-width: 900px;
  margin: 0 auto;
}

.bb-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bb-ydim);
  color: var(--bb-yellow);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(252, 212, 29, .18);
}

.bb-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}

.bb-hero-subtitle {
  font-size: 1.1rem;
  color: var(--bb-muted);
  line-height: 1.7;
}

.bb-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.bb-hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--bb-muted);
  font-size: .83rem;
  flex-wrap: wrap;
}

.bb-proof-avatars {
  display: flex;
}

.bb-proof-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bb-s2);
  border: 2px solid var(--bb-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  font-weight: 700;
  margin-left: -8px;
  color: var(--bb-muted);
}

.bb-proof-avatar:first-child {
  margin-left: 0;
}

/* ── STATS BAR ── */
.bb-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
  background: var(--bb-s1);
  width: 100%;
}

.bb-stat-item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--bb-border);
}

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

.bb-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--bb-yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.bb-stat-label {
  font-size: .78rem;
  color: var(--bb-muted);
}

/* ── SECTION LABELS ── */
.bb-section-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--bb-yellow);
  margin-bottom: 14px;
  text-align: center;
}

.bb-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 48px;
  letter-spacing: -.02em;
  text-align: center;
}

/* ── HOW IT WORKS ── */
.bb-hiw-section {
  padding: 96px 40px;
  max-width: var(--bb-max);
  margin: 0 auto;
  text-align: center;
}

.bb-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bb-step {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-rad);
  padding: 32px 28px;
  text-align: left;
  transition: border-color .2s;
}

.bb-step:hover {
  border-color: rgba(252, 212, 29, .3);
}

.bb-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--bb-yellow);
  margin-bottom: 14px;
  line-height: 1;
}

.bb-step-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
}

.bb-step-desc {
  font-size: .85rem;
  color: var(--bb-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── PLANS ── */
.bb-plans-preview {
  padding: 96px 40px;
  background: var(--bb-s1);
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
  text-align: center;
}

.bb-billing-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
  font-size: .85rem;
  color: var(--bb-muted);
  flex-wrap: wrap;
}

.bb-billing-pill {
  display: flex;
  background: var(--bb-s2);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid var(--bb-border);
}

.bb-billing-opt {
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--bb-muted);
  transition: all .15s;
  user-select: none;
}

.bb-billing-opt.active {
  background: var(--bb-yellow);
  color: #000;
}

.bb-save-tag {
  background: rgba(0, 230, 118, .12);
  color: var(--bb-green);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(0, 230, 118, .25);
}

.bb-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.bb-pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px 64px;
  text-align: left;
}

/* Plan cards */
.bb-plan-card {
  background: var(--bb-bg);
  border: 1px solid var(--bb-border);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.bb-card-hover:hover {
  border-color: rgba(252, 212, 29, .25);
  transform: translateY(-3px);
}

.bb-card-featured {
  border-color: var(--bb-yellow);
  background: #0c1100;
}

.bb-card-featured:hover {
  transform: translateY(-3px);
}

.bb-plan-badge {
  display: inline-block;
  background: var(--bb-yellow);
  color: #000;
  font-size: .65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 16px;
}

.bb-plan-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--bb-text);
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
}

.bb-plan-price-wrap {
  margin-bottom: 14px;
}

.bb-plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--bb-yellow);
  line-height: 1;
  display: block;
}

.bb-price-period {
  font-size: .82rem;
  color: var(--bb-muted);
  font-weight: 400;
  margin-top: 5px;
  display: block;
}

.bb-plan-desc {
  font-size: .84rem;
  color: var(--bb-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.bb-plan-divider {
  height: 1px;
  background: var(--bb-border);
  margin: 22px 0;
}

.bb-feature-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  margin-bottom: 24px;
}

.bb-fi {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .84rem;
  color: var(--bb-muted);
  line-height: 1.5;
}

.bb-fi.included {
  color: var(--bb-text);
}

.bb-check {
  color: var(--bb-yellow);
  font-size: .8rem;
  min-width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bb-x {
  color: var(--bb-faint);
  font-size: .8rem;
  min-width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bb-plan-card .bb-btn {
  margin-top: auto;
}

.bb-addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bb-s2);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  gap: 10px;
}

.bb-addon-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--bb-text);
}

.bb-addon-price {
  font-size: .75rem;
  color: var(--bb-yellow);
  margin-top: 3px;
}

.bb-flex-cfg {
  background: var(--bb-s2);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
}

.bb-flex-cfg-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  margin-bottom: 10px;
  color: var(--bb-muted);
}

.bb-flex-tier-label {
  color: var(--bb-yellow);
  font-weight: 600;
}

.bb-flex-cfg input[type=range] {
  width: 100%;
  accent-color: var(--bb-yellow);
  height: 4px;
  cursor: pointer;
}

.bb-flex-label-sm {
  font-size: .76rem;
  color: var(--bb-yellow);
  margin-top: 8px;
  font-weight: 600;
  min-height: 20px;
}

.bb-toggle {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

.bb-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.bb-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--bb-border);
  border-radius: 50px;
  transition: .2s;
}

.bb-toggle-track::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  left: 3px;
  top: 3px;
  transition: .2s;
}

.bb-toggle input:checked+.bb-toggle-track {
  background: var(--bb-yellow);
}

.bb-toggle input:checked+.bb-toggle-track::before {
  transform: translateX(16px);
  background: #000;
}

/* ── TESTIMONIALS ── */
.bb-testi-section {
  padding: 96px 40px;
  max-width: var(--bb-max);
  margin: 0 auto;
  text-align: center;
}

.bb-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.bb-testi-card {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bb-stars {
  font-size: .95rem;
  color: var(--bb-yellow);
  letter-spacing: 2px;
}

.bb-testi-text {
  font-size: .9rem;
  color: var(--bb-muted);
  line-height: 1.75;
  flex: 1;
  margin: 0;
}

.bb-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-av {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: var(--bb-s2);
  color: var(--bb-muted);
  flex-shrink: 0;
}

.bb-av-sm {
  width: 38px;
  height: 38px;
  font-size: .78rem;
}

.bb-testi-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--bb-text);
}

.bb-testi-role {
  font-size: .76rem;
  color: var(--bb-muted);
  margin-top: 2px;
}

/* ── FAQ ── */
.bb-faq-section {
  padding: 96px 40px;
  max-width: 740px;
  margin: 0 auto;
}

.bb-faq-section .bb-section-eyebrow {
  text-align: center;
}

.bb-faq-section .bb-section-title {
  text-align: center;
}

.bb-faq-item {
  border-bottom: 1px solid var(--bb-border);
  cursor: pointer;
}

.bb-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: 600;
  font-size: .95rem;
  color: var(--bb-text);
  gap: 16px;
}

.bb-faq-chev {
  color: var(--bb-muted);
  transition: transform .2s;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.bb-faq-item.open .bb-faq-chev {
  transform: rotate(180deg);
  color: var(--bb-yellow);
}

.bb-faq-a {
  display: none;
  padding-bottom: 20px;
  font-size: .88rem;
  color: var(--bb-muted);
  line-height: 1.75;
}

.bb-faq-item.open .bb-faq-a {
  display: block;
}

.bb-faq-item.open .bb-faq-q {
  color: var(--bb-yellow);
}

/* ── FOOTER ── */
.bb-footer-wrap {
  width: 100%;
  background: var(--bb-s1);
  border-top: 1px solid var(--bb-border);
}

.bb-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 40px 48px;
  max-width: var(--bb-max);
  margin: 0 auto;
}

.bb-footer-brand p {
  font-size: .84rem;
  color: var(--bb-muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.bb-footer-col h5 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--bb-faint);
  margin-bottom: 18px;
  font-family: 'Space Grotesk', sans-serif;
}

.bb-footer-col a {
  display: block;
  font-size: .85rem;
  color: var(--bb-muted);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color .15s;
}

.bb-footer-col a:hover {
  color: var(--bb-yellow);
}

.bb-footer-bottom {
  text-align: center;
  padding: 22px 40px;
  border-top: 1px solid var(--bb-border);
  font-size: .76rem;
  color: var(--bb-faint);
  background: var(--bb-s1);
}

/* ── PRICING PAGE ── */
.bb-pricing-hero {
  text-align: center;
  padding: 72px 40px 48px;
  max-width: 700px;
  margin: 0 auto;
}

.bb-pricing-sub {
  font-size: 1rem;
  color: var(--bb-muted);
  line-height: 1.7;
}

.bb-compare-section {
  padding: 48px 40px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.bb-compare-section .bb-section-title {
  text-align: center;
}

.bb-compare-wrap {
  overflow-x: auto;
  border-radius: var(--bb-rad);
  border: 1px solid var(--bb-border);
}

.bb-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .87rem;
}

.bb-compare-table th,
.bb-compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--bb-border);
  text-align: center;
  color: var(--bb-muted);
}

.bb-compare-table tr:last-child th,
.bb-compare-table tr:last-child td {
  border-bottom: none;
}

.bb-compare-table th {
  font-weight: 700;
  color: var(--bb-text);
  background: var(--bb-s1);
}

.bb-compare-table td:first-child {
  text-align: left;
  color: var(--bb-text);
}

.bb-fcol {
  background: rgba(252, 212, 29, .04);
}

.bb-cy {
  color: var(--bb-yellow);
  font-weight: 700;
}

.bb-cn {
  color: var(--bb-faint);
}

/* ── AUTH ── */
.bb-auth-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--bb-bg);
}

.bb-auth-card {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 44px;
  width: 100%;
  max-width: 440px;
}

.bb-auth-hd {
  text-align: center;
  margin-bottom: 32px;
}

.bb-auth-icon {
  width: 54px;
  height: 54px;
  background: #1a2200;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.bb-auth-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.bb-auth-sub {
  font-size: .87rem;
  color: var(--bb-muted);
}

.bb-auth-note {
  font-size: .76rem;
  color: var(--bb-faint);
  text-align: center;
  margin-top: 14px;
}

.bb-divider-or {
  text-align: center;
  position: relative;
  margin: 24px 0;
  color: var(--bb-faint);
  font-size: .78rem;
}

.bb-divider-or::before,
.bb-divider-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 44%;
  height: 1px;
  background: var(--bb-border);
}

.bb-divider-or::before {
  left: 0;
}

.bb-divider-or::after {
  right: 0;
}

.bb-auth-foot {
  text-align: center;
  font-size: .84rem;
  color: var(--bb-muted);
}

.bb-auth-foot a {
  color: var(--bb-yellow);
  cursor: pointer;
}

/* ── FORMS ── */
.bb-form-group {
  margin-bottom: 16px;
}

.bb-form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--bb-muted);
  margin-bottom: 7px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.bb-input {
  width: 100%;
  background: var(--bb-s2);
  border: 1px solid var(--bb-border);
  color: var(--bb-text);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .92rem;
  font-family: 'Space Grotesk', sans-serif;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.bb-input:focus {
  border-color: var(--bb-yellow);
  box-shadow: 0 0 0 3px rgba(252, 212, 29, .08);
}

.bb-input::placeholder {
  color: var(--bb-faint);
}

.bb-select {
  width: 100%;
  background: var(--bb-s2);
  border: 1px solid var(--bb-border);
  color: var(--bb-text);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .92rem;
  font-family: 'Space Grotesk', sans-serif;
  outline: none;
  cursor: pointer;
  transition: border-color .15s;
}

.bb-select:focus {
  border-color: var(--bb-yellow);
}

textarea.bb-input {
  resize: vertical;
  min-height: 90px;
}

.bb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── CHECKOUT ── */
.bb-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 48px 40px 96px;
  align-items: start;
}

.bb-checkout-main {
  min-width: 0;
}

.bb-steps-bar {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

.bb-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.bb-step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--bb-muted);
}

.bb-step-circle.active {
  border-color: var(--bb-yellow);
  color: var(--bb-yellow);
}

.bb-step-circle.done {
  background: var(--bb-yellow);
  border-color: var(--bb-yellow);
  color: #000;
}

.bb-step-lbl {
  font-size: .72rem;
  color: var(--bb-faint);
  white-space: nowrap;
}

.bb-step-lbl.active {
  color: var(--bb-yellow);
}

.bb-step-conn {
  flex: 1;
  height: 1px;
  background: var(--bb-border);
  margin: 0 12px 20px;
}

.bb-co-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.bb-co-title span {
  color: var(--bb-yellow);
}

.bb-co-sub {
  font-size: .87rem;
  color: var(--bb-muted);
  margin-bottom: 28px;
}

.bb-chosen-plan {
  background: var(--bb-ydim);
  border: 1px solid rgba(252, 212, 29, .2);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 12px;
}

.bb-cp-name {
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
}

.bb-cp-price {
  color: var(--bb-yellow);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 4px;
}

.bb-cp-period {
  font-size: .76rem;
  color: var(--bb-muted);
  margin-top: 4px;
}

.bb-cp-change {
  color: var(--bb-muted);
  font-size: .82rem;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s;
}

.bb-cp-change:hover {
  color: var(--bb-yellow);
}

.bb-co-section {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}

.bb-co-section h3 {
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--bb-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: 'Space Grotesk', sans-serif;
}

.bb-pay-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bb-pay-method {
  flex: 1;
  min-width: 100px;
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color .15s, background .15s;
  background: var(--bb-bg);
}

.bb-pay-method:hover {
  border-color: rgba(252, 212, 29, .3);
}

.bb-pay-method.selected {
  border-color: var(--bb-yellow);
  background: var(--bb-ydim);
}

.bb-pay-method input {
  display: none;
}

.bb-pm-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.bb-pm-name {
  font-weight: 700;
  font-size: .85rem;
  color: var(--bb-text);
}

.bb-pm-desc {
  font-size: .73rem;
  color: var(--bb-muted);
  margin-top: 2px;
}

.bb-pay-note {
  font-size: .8rem;
  color: var(--bb-muted);
  margin-top: 16px;
  line-height: 1.6;
}

.bb-secure-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

.bb-sb {
  font-size: .72rem;
  color: var(--bb-faint);
  border: 1px solid var(--bb-border);
  border-radius: 50px;
  padding: 4px 12px;
}

.bb-demo-notice {
  background: rgba(252, 212, 29, .07);
  border: 1px solid rgba(252, 212, 29, .18);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .82rem;
  color: var(--bb-yellow);
  margin-top: 14px;
}

.bb-checkout-side {
  position: sticky;
  top: calc(var(--bb-nav-h) + 24px);
}

.bb-order-summary {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 14px;
}

.bb-order-summary h3 {
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--bb-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: 'Space Grotesk', sans-serif;
}

.bb-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .87rem;
  margin-bottom: 12px;
  color: var(--bb-muted);
  gap: 8px;
}

.bb-sum-lbl {
  color: var(--bb-text);
}

.bb-sum-div {
  height: 1px;
  background: var(--bb-border);
  margin: 16px 0;
}

.bb-sum-total {
  font-weight: 700;
  font-size: 1rem;
}

#bb-sum-total {
  color: var(--bb-yellow);
  font-size: 1.2rem;
  font-weight: 800;
}

.bb-sum-period {
  font-size: .76rem;
  color: var(--bb-muted);
  margin-top: 8px;
}

.bb-trust-box {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 14px;
  padding: 18px 20px;
}

.bb-trust-item {
  font-size: .82rem;
  color: var(--bb-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── DASHBOARD ── */
.bb-dash-page {
  min-height: 100vh;
}

.bb-sidebar {
  width: var(--bb-sidebar);
  min-width: var(--bb-sidebar);
  background: var(--bb-s1);
  border-right: 1px solid var(--bb-border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  flex-shrink: 0;
}

.bb-sidebar-logo {
  padding: 20px 18px;
  border-bottom: 1px solid var(--bb-border);
}

.bb-sidebar-nav {
  flex: 1;
  padding: 14px 10px;
}

.bb-sb-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--bb-faint);
  font-weight: 700;
  padding: 12px 10px 6px;
}

.bb-sb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 9px;
  cursor: pointer;
  font-size: .87rem;
  color: var(--bb-muted);
  margin-bottom: 2px;
  transition: all .15s;
  font-weight: 500;
}

.bb-sb-item:hover {
  background: var(--bb-s2);
  color: var(--bb-text);
}

.bb-sb-item.active {
  background: var(--bb-ydim);
  color: var(--bb-yellow);
  font-weight: 600;
}

.bb-sb-logout:hover {
  background: rgba(255, 60, 60, .1);
  color: #ff6b6b;
}

.bb-sidebar-foot {
  padding: 16px;
  border-top: 1px solid var(--bb-border);
}

.bb-sb-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bb-sb-name {
  font-size: .84rem;
  font-weight: 700;
  color: var(--bb-text);
}

.bb-sb-plan {
  font-size: .72rem;
  color: var(--bb-muted);
  margin-top: 2px;
}

.bb-dash-main {
  flex: 1;
  overflow-y: auto;
  min-width: 0;
}

.bb-dash-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--bb-border);
}

.bb-dash-hdr h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.bb-dash-hdr p {
  font-size: .85rem;
  color: var(--bb-muted);
  margin: 0;
}

.bb-dash-body {
  padding: 28px 32px 48px;
}

.bb-dash-section {}

.bb-mob-menu-btn {
  display: none;
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 300;
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  color: var(--bb-text);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
}

.bb-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 99;
}

.bb-sidebar-overlay.show {
  display: block;
}

.bb-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.bb-stat-box {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 18px 22px;
}

.bb-stat-box.bb-hl {
  border-color: rgba(252, 212, 29, .25);
  background: var(--bb-ydim);
}

.bb-s-lbl {
  font-size: .76rem;
  color: var(--bb-muted);
  margin-bottom: 8px;
}

.bb-s-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--bb-yellow);
  line-height: 1;
}

.bb-s-sub {
  font-size: .73rem;
  color: var(--bb-faint);
  margin-top: 4px;
}

.bb-usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.bb-usage-card {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 20px;
}

.bb-usage-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.bb-usage-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .92rem;
}

.bb-usage-count {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bb-yellow);
}

.bb-usage-tot {
  font-size: .78rem;
  color: var(--bb-muted);
}

.bb-prog {
  background: var(--bb-s2);
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
  margin-top: 8px;
}

.bb-prog-bar {
  height: 100%;
  background: var(--bb-yellow);
  border-radius: 50px;
  transition: width .4s;
}

.bb-prog-bar.orange {
  background: #ff8800;
}

.bb-usage-note {
  font-size: .76rem;
  color: var(--bb-muted);
  margin-top: 10px;
}

.bb-tasks-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.bb-tasks-hdr h3 {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
}

.bb-task-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.bb-task-item {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bb-task-icon {
  font-size: 1.3rem;
  min-width: 28px;
  text-align: center;
}

.bb-task-info {
  flex: 1;
  min-width: 120px;
}

.bb-task-name {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 3px;
}

.bb-task-meta {
  font-size: .76rem;
  color: var(--bb-muted);
}

.bb-task-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.bb-plan-info-card {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 20px;
  margin-top: 4px;
}

.bb-plan-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--bb-border);
  font-size: .87rem;
  flex-wrap: wrap;
  gap: 6px;
}

.bb-plan-row:last-child {
  border-bottom: none;
}

.bb-pk {
  color: var(--bb-muted);
}

.bb-pv {
  font-weight: 600;
  color: var(--bb-text);
}

.bb-pv.yellow {
  color: var(--bb-yellow);
}

.bb-empty-state {
  padding: 48px 24px;
  text-align: center;
  color: var(--bb-muted);
  font-size: .9rem;
  border: 1px dashed var(--bb-border);
  border-radius: 12px;
  line-height: 1.6;
}

.bb-bm-table {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  overflow: hidden;
  overflow-x: auto;
}

.bb-bm-thead {
  display: grid;
  padding: 12px 18px;
  border-bottom: 1px solid var(--bb-border);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--bb-faint);
  min-width: 600px;
}

.bb-bm-row {
  display: grid;
  padding: 16px 18px;
  border-bottom: 1px solid var(--bb-border);
  align-items: center;
  font-size: .87rem;
  min-width: 600px;
}

.bb-bm-row:last-child {
  border-bottom: none;
}

.bb-bm-row:hover {
  background: var(--bb-s2);
}

.bb-ci {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bb-ci-av {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.bb-ci-name {
  font-weight: 700;
  font-size: .87rem;
}

.bb-ci-sub {
  font-size: .73rem;
  color: var(--bb-muted);
}

.bb-badge {
  display: inline-block;
  font-size: .71rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.bb-bgreen {
  background: rgba(0, 230, 118, .1);
  color: var(--bb-green);
  border: 1px solid rgba(0, 230, 118, .2);
}

.bb-byellow {
  background: var(--bb-ydim);
  color: var(--bb-yellow);
  border: 1px solid rgba(252, 212, 29, .2);
}

.bb-bdim {
  background: var(--bb-s2);
  color: var(--bb-muted);
  border: 1px solid var(--bb-border);
}

.bb-borange {
  background: rgba(255, 136, 0, .1);
  color: #ff8800;
  border: 1px solid rgba(255, 136, 0, .2);
}

.bb-bblue {
  background: rgba(96, 170, 255, .12);
  color: #60aaff;
  border: 1px solid rgba(96, 170, 255, .25);
}

.bb-bpurple {
  background: rgba(180, 120, 255, .12);
  color: #b478ff;
  border: 1px solid rgba(180, 120, 255, .25);
}

/* ── MODALS ── */
.bb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.bb-overlay.show {
  display: flex;
}

.bb-modal {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 22px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.bb-modal-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  color: var(--bb-yellow);
}

.bb-modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.bb-modal-sub {
  font-size: .9rem;
  color: var(--bb-muted);
  line-height: 1.7;
}

/* ── TOAST ── */
#bb-toast-container {
  position: fixed;
  top: 84px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: calc(100vw - 48px);
}

.bb-toast {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 10px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
  animation: bbIn .25s ease;
}

.bb-toast.success .bb-tdot {
  background: var(--bb-green);
}

.bb-toast.error .bb-tdot {
  background: #ff4444;
}

.bb-tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bb-yellow);
  flex-shrink: 0;
}

@keyframes bbIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── WA FAB ── */
.bb-wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .45);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}

.bb-wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .55);
}

/* ══ TABLET ══ */
@media (max-width: 960px) {
  .bb-navbar-inner {
    padding: 0 24px;
  }

  .bb-nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--bb-nav-h);
    left: 0;
    right: 0;
    background: var(--bb-s1);
    border-bottom: 1px solid var(--bb-border);
    padding: 14px 24px 18px;
    z-index: 199;
    gap: 2px;
  }

  .bb-nav-links.open {
    display: flex;
  }

  .bb-hamburger {
    display: block;
  }

  .bb-nav-actions .bb-btn-outline {
    display: none;
  }

  .bb-steps-row {
    grid-template-columns: 1fr 1fr;
  }

  .bb-plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bb-pr-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px 48px;
  }

  .bb-testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bb-checkout-layout {
    grid-template-columns: 1fr;
    padding: 32px 24px 60px;
  }

  .bb-checkout-side {
    position: static;
  }

  .bb-footer {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 36px;
  }

  .bb-footer-brand {
    grid-column: 1 / -1;
  }

  .bb-footer-brand p {
    max-width: 100%;
  }

  :root {
    --bb-sidebar: 210px;
  }

  .bb-pricing-hero {
    padding: 56px 24px 36px;
  }

  .bb-compare-section {
    padding: 32px 24px 60px;
  }

  .bb-hiw-section {
    padding: 64px 24px;
  }

  .bb-plans-preview {
    padding: 64px 24px;
  }

  .bb-testi-section {
    padding: 64px 24px;
  }

  .bb-faq-section {
    padding: 64px 24px;
  }
}

/* ══ MOBILE ══ */
@media (max-width: 640px) {
  .bb-navbar-inner {
    padding: 0 18px;
  }

  .bb-navbar-checkout {
    padding: 0 18px;
  }

  .bb-hero {
    padding: 56px 20px 40px;
  }

  .bb-hero-title {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .bb-hero-subtitle {
    font-size: 1rem;
  }

  .bb-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .bb-hero-actions .bb-btn {
    width: 100%;
    justify-content: center;
  }

  .bb-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .bb-stat-item:nth-child(2) {
    border-right: none;
  }

  .bb-stat-item:nth-child(3) {
    border-right: 1px solid var(--bb-border);
  }

  .bb-hiw-section {
    padding: 56px 20px;
  }

  .bb-steps-row {
    grid-template-columns: 1fr;
  }

  .bb-plans-preview {
    padding: 56px 20px;
  }

  .bb-plans-grid {
    grid-template-columns: 1fr;
  }

  .bb-pr-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
  }

  .bb-pricing-hero {
    padding: 44px 20px 28px;
  }

  .bb-compare-section {
    padding: 24px 20px 48px;
  }

  .bb-testi-section {
    padding: 56px 20px;
  }

  .bb-testi-grid {
    grid-template-columns: 1fr;
  }

  .bb-faq-section {
    padding: 56px 20px;
  }

  .bb-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 20px;
  }

  .bb-footer-bottom {
    padding: 18px 20px;
  }

  .bb-auth-card {
    padding: 30px 22px;
  }

  .bb-checkout-layout {
    padding: 24px 18px 56px;
    gap: 24px;
  }

  .bb-form-row {
    grid-template-columns: 1fr;
  }

  .bb-pay-methods {
    flex-direction: column;
  }

  .bb-pay-method {
    flex: none;
  }

  .bb-mob-menu-btn {
    display: block;
  }

  .bb-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    height: 100vh;
    width: 260px !important;
    min-width: 260px !important;
    transition: left .3s;
    z-index: 200;
    box-shadow: 4px 0 24px rgba(0, 0, 0, .6);
  }

  .bb-sidebar.open {
    left: 0;
  }

  .bb-dash-hdr {
    padding: 64px 18px 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .bb-dash-body {
    padding: 16px 18px 40px;
  }

  .bb-stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .bb-bm-thead,
  .bb-bm-row {
    min-width: 500px;
  }

  .bb-modal {
    padding: 30px 22px;
  }

  #bb-toast-container {
    top: 64px;
    right: 14px;
    left: 14px;
  }
}

@media (max-width: 380px) {
  .bb-stat-row {
    grid-template-columns: 1fr;
  }

  .bb-plan-card {
    padding: 22px 18px;
  }

  .bb-hero-title {
    font-size: 1.8rem;
  }
}

/* ── CUSTOMER PULL LOGO IMAGE ── */
.bb-cp-logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.bb-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.bb-logo .bb-logo-sub {
  font-size: .62rem;
  color: var(--bb-yellow);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
  white-space: nowrap;
}

/* ── STRATEGY TEASER (landing) ── */
.bb-strategy-teaser {
  padding: 80px 40px;
  background: var(--bb-s1);
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
}

.bb-strategy-teaser-inner {
  max-width: var(--bb-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bb-strategy-teaser-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bb-strat-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bb-s2);
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 14px 16px;
}

.bb-strat-icon {
  font-size: 1.3rem;
  min-width: 30px;
  text-align: center;
  margin-top: 2px;
}

.bb-strat-feature strong {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 2px;
  color: var(--bb-text);
}

.bb-strat-feature p {
  margin: 0;
  font-size: .78rem;
  color: var(--bb-muted);
  line-height: 1.5;
}

/* ── STRATEGY PAGE HERO ── */
.bb-strat-page-hero {
  padding: 114px 40px 48px;
  /* 66px navbar + 48px spacing */
  max-width: var(--bb-max);
  margin: 0 auto;
  text-align: center;
}

.bb-strat-page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ── STRATEGY PRICING SECTION ── */
.bb-strat-pricing-section {
  padding: 64px 40px;
  background: var(--bb-s1);
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
}

.bb-strat-pricing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.bb-strat-pricing-card {
  background: var(--bb-s2);
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 36px;
}

/* ── STRATEGY MODAL FORM FIX (high contrast) ── */
.bb-modal-strategy-form .bb-form-label,
.bb-modal-strategy-form label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--bb-text) !important;
  margin-bottom: 8px;
}

.bb-modal-strategy-form .bb-input,
.bb-modal-strategy-form .bb-select {
  background: var(--bb-s2) !important;
  color: var(--bb-text) !important;
  border: 1.5px solid var(--bb-border) !important;
}

.bb-modal-strategy-form .bb-input::placeholder {
  color: var(--bb-muted) !important;
}

.bb-modal-strategy-form .bb-input:focus,
.bb-modal-strategy-form .bb-select:focus {
  border-color: var(--bb-yellow) !important;
  outline: none;
}

.bb-strat-fee-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(252, 212, 29, .08);
  border: 1px solid rgba(252, 212, 29, .2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 4px;
}

.bb-strat-fee-amount {
  font-weight: 700;
  font-size: .9rem;
  color: var(--bb-yellow);
  margin-bottom: 3px;
}

.bb-strat-fee-note {
  font-size: .76rem;
  color: var(--bb-muted);
  line-height: 1.5;
}

/* ensure modal itself scrolls on small screens */
.bb-overlay {
  overflow-y: auto;
}

.bb-modal {
  max-height: 90vh;
  overflow-y: auto;
}

/* ── SIDEBAR LOGO FIX ── */
.bb-sidebar-logo .bb-cp-logo {
  height: 32px;
}

.bb-sidebar-logo .bb-logo-sub {
  font-size: .6rem;
}

/* ── RESPONSIVE STRATEGY ── */
@media (max-width: 960px) {
  .bb-strategy-teaser {
    padding: 56px 24px;
  }

  .bb-strategy-teaser-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bb-strat-page-hero {
    padding: 90px 24px 36px;
  }

  /* 66px navbar + 24px spacing */
  .bb-strat-pricing-section {
    padding: 48px 24px;
  }
}

@media (max-width: 640px) {
  .bb-strategy-teaser {
    padding: 48px 20px;
  }

  .bb-strat-page-hero {
    padding: 86px 20px 28px;
  }

  /* 66px navbar + 20px spacing */
  .bb-strat-pricing-section {
    padding: 36px 20px;
  }

  .bb-strat-pricing-card {
    padding: 24px 20px;
  }

  .bb-cp-logo {
    height: 34px;
  }
}

/* ── SPINNER ── */
.bb-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--bb-border);
  border-top-color: var(--bb-yellow);
  border-radius: 50%;
  animation: bb-spin .7s linear infinite;
}

@keyframes bb-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── STRAT FORM GRID (mobile) ── */
@media (max-width: 480px) {
  .bb-modal-strategy-form [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
/* ── NOTIFICATION ITEMS (BM dashboard) ── */
.bb-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--bb-border);
  transition: background .15s;
}
.bb-notif-item:hover { background: rgba(255,255,255,.03); }
.bb-notif-success { background: rgba(0,200,100,.05); }
.bb-notif-task    { background: rgba(212,255,0,.03); }
.bb-notif-empty   { opacity: .7; }
.bb-notif-icon  { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.bb-notif-body  { flex: 1; font-size: .88rem; line-height: 1.5; color: var(--bb-text, #f0f0f0); }
.bb-notif-body strong { color: #fff; }
.bb-notif-meta  { font-size: .76rem; color: var(--bb-muted, #888); margin-top: 3px; }

/* =====================================================
   Business Boost v3.0 — Upgrade Additions
   Tasks: 2, 3, 4, 8, 9, 10, 11, 12, 13
   ===================================================== */

/* ── Task 2: Hero animated orbs ── */
.bb-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--bb-nav-h) + 80px);
  padding-bottom: 100px;
  text-align: center;
}

.bb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(252,212,29,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.bb-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--bb-max);
  margin: 0 auto;
  padding: 0 40px;
}

.bb-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bb-orb-1 {
  width: 520px;
  height: 520px;
  background: var(--bb-yellow);
  opacity: 0.18;
  top: -120px;
  left: -80px;
  animation: bb-orb-float 10s ease-in-out infinite;
}

.bb-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--bb-green);
  opacity: 0.13;
  top: 40px;
  right: -60px;
  animation: bb-orb-float 12s ease-in-out infinite reverse;
}

.bb-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--bb-yellow);
  opacity: 0.20;
  bottom: 60px;
  right: 20%;
  animation: bb-orb-float 8s ease-in-out infinite 2s;
}

.bb-orb-4 {
  width: 250px;
  height: 250px;
  background: var(--bb-green);
  opacity: 0.15;
  bottom: 20px;
  left: 15%;
  animation: bb-orb-float 11s ease-in-out infinite 1s reverse;
}

@keyframes bb-orb-float {
  0%, 100% { transform: scale(1);   opacity: 0.18; }
  50%       { transform: scale(1.12); opacity: 0.28; }
}

/* Hero diagonal clip bottom */
.bb-hero-clip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bb-bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

/* Hero title word-break safeguard */
.bb-hero-title {
  word-break: break-word;
}

/* ── Task 3: Glassmorphism card styling ── */
.bb-plan-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.bb-card-featured {
  background: rgba(252, 212, 29, 0.07) !important;
  border-color: rgba(252, 212, 29, 0.22) !important;
}

.bb-order-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-radius: var(--bb-rad);
  padding: 24px;
  margin-bottom: 16px;
}

.bb-trust-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-radius: var(--bb-rad);
  padding: 16px 20px;
}

.bb-auth-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
}

.bb-strat-pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-radius: var(--bb-rad);
  padding: 36px;
  max-width: 700px;
  margin: 0 auto;
}

.bb-testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* ── Task 4: Quarterly billing pill ── */
.bb-billing-pill {
  display: flex;
  gap: 2px;
  background: var(--bb-s2);
  border: 1px solid var(--bb-border);
  border-radius: 50px;
  padding: 3px;
}

.bb-billing-opt {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--bb-muted);
  transition: all .2s;
  white-space: nowrap;
}

.bb-billing-opt.active {
  background: var(--bb-yellow);
  color: #000;
}

/* ── Task 10: Growth Marketing section ── */
.bb-growth-section {
  max-width: var(--bb-max);
  margin: 0 auto;
  padding: 80px 40px;
}

.bb-growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.bb-growth-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-radius: var(--bb-rad);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}

.bb-growth-card:hover {
  border-color: rgba(252, 212, 29, 0.25);
  transform: translateY(-2px);
}

.bb-growth-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.bb-growth-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bb-text);
  margin-bottom: 8px;
}

.bb-growth-card p {
  font-size: .85rem;
  color: var(--bb-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Task 13b: Renewal banner ── */
.bb-renewal-banner {
  background: var(--bb-ydim);
  border: 1px solid rgba(252,212,29,.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .85rem;
  margin-bottom: 20px;
  color: var(--bb-text);
}

.bb-renewal-banner a {
  color: var(--bb-yellow);
  text-decoration: underline;
  cursor: pointer;
}

/* ── Task 13d: Sidebar active state with left accent ── */
.bb-sb-item.active {
  border-left: 3px solid var(--bb-yellow);
  padding-left: calc(16px - 3px);
  color: var(--bb-yellow);
}

/* ── Task 11 + 12: Mobile responsiveness & navbar overflow ── */

/* Task 12: Navbar overflow fix */
.bb-navbar-inner {
  position: relative;
  overflow: visible;
}

@media (max-width: 900px) {
  .bb-nav-links {
    display: none;
  }
  .bb-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bb-s1);
    border-top: 1px solid var(--bb-border);
    border-bottom: 1px solid var(--bb-border);
    padding: 12px 0;
    z-index: 100;
    gap: 0;
  }
  .bb-nav-links.open .bb-nav-link {
    width: 100%;
    text-align: left;
    padding: 12px 24px;
    border-radius: 0;
  }
  .bb-hamburger {
    display: flex !important;
  }
}

/* Task 11a: Navbar on mobile < 480px */
@media (max-width: 480px) {
  .bb-navbar-inner {
    padding: 0 16px;
    gap: 8px;
  }
}

/* Task 11b: Hero text clipping */
@media (max-width: 320px) {
  .bb-hero-title {
    font-size: 1.9rem !important;
    word-break: break-word;
  }
}

/* Task 11c: Plan cards grid on mobile */
@media (max-width: 640px) {
  .bb-plans-grid,
  .bb-pr-grid {
    grid-template-columns: 1fr !important;
  }
  .bb-growth-grid {
    grid-template-columns: 1fr;
  }
}

/* Task 11d: Checkout layout stacks on mobile */
@media (max-width: 768px) {
  .bb-checkout-layout {
    flex-direction: column !important;
  }
  .bb-checkout-side {
    width: 100% !important;
    max-width: none !important;
  }
  .bb-navbar-checkout {
    padding: 0 16px;
  }
}

/* Task 11e: Strategy modal form on mobile */
@media (max-width: 480px) {
  .bb-strat-form-grid {
    grid-template-columns: 1fr !important;
  }
  .bb-modal-strategy-form {
    padding: 16px !important;
  }
}

/* Hero content responsive padding */
@media (max-width: 640px) {
  .bb-hero-content {
    padding: 0 20px;
  }
  .bb-hero {
    padding-bottom: 80px;
  }
  .bb-growth-section {
    padding: 60px 20px;
  }
}

/* Stars for testimonials */
.bb-stars {
  color: var(--bb-yellow);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* ── Task 8: Appointments section WA link ── */
#bb-appt-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}


/* =====================================================
   v3.1 Additions — Hero highlight, Calendar, Appointments
   ===================================================== */

/* ── Hero highlighted price text ── */
.bb-hero-highlight-wrap {
  position: relative;
  display: inline-block;
}
.bb-hero-highlight {
  position: relative;
  color: var(--bb-yellow);
  z-index: 1;
}
.bb-hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -6px;
  right: -6px;
  height: 38px;
  border: 2px solid rgba(252,212,29,0.45);
  border-radius: 50%;
  transform: rotate(-1.5deg);
  pointer-events: none;
  z-index: -1;
}
.bb-hero-price-pill {
  display: inline-block;
  background: rgba(252,212,29,0.1);
  border: 1px solid rgba(252,212,29,0.3);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 1.05rem;
  color: var(--bb-yellow);
  font-weight: 600;
  margin: 12px 0 16px;
  font-style: normal !important;
}
.bb-hero-price-pill em { font-style: normal; }

/* ── Growth section intro text ── */
.bb-growth-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--bb-muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* ── Growth services tag list ── */
.bb-growth-services-list {
  margin-top: 40px;
  padding: 24px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--bb-rad);
}
.bb-gsl-title {
  font-size: .8rem;
  font-weight: 600;
  color: var(--bb-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bb-gsl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bb-gsl-tags span {
  background: rgba(252,212,29,.08);
  border: 1px solid rgba(252,212,29,.2);
  color: var(--bb-yellow);
  border-radius: 50px;
  padding: 4px 13px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Calendar widget ── */
.bb-calendar {
  background: var(--bb-s2);
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 14px;
  user-select: none;
}
.bb-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.bb-cal-month {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--bb-text);
}
.bb-cal-nav {
  background: none;
  border: 1px solid var(--bb-border);
  color: var(--bb-muted);
  border-radius: 6px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}
.bb-cal-nav:hover { border-color: var(--bb-yellow); color: var(--bb-yellow); }
.bb-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.bb-cal-weekdays span {
  text-align: center;
  font-size: .68rem;
  font-weight: 600;
  color: var(--bb-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 0;
}
.bb-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.bb-cal-day {
  text-align: center;
  padding: 7px 2px;
  border-radius: 7px;
  font-size: .82rem;
  cursor: pointer;
  color: var(--bb-text);
  transition: all .15s;
  border: 1px solid transparent;
}
.bb-cal-day:not(.bb-cal-past):not(.bb-cal-sun):not(.bb-cal-empty):hover {
  background: rgba(252,212,29,.12);
  border-color: rgba(252,212,29,.3);
  color: var(--bb-yellow);
}
.bb-cal-day.bb-cal-selected {
  background: var(--bb-yellow);
  color: #000;
  font-weight: 700;
  border-color: var(--bb-yellow);
}
.bb-cal-day.bb-cal-past,
.bb-cal-day.bb-cal-sun {
  color: var(--bb-faint);
  cursor: not-allowed;
  pointer-events: none;
}
.bb-cal-day.bb-cal-empty {
  pointer-events: none;
}

/* ── Time slot grid ── */
.bb-time-slots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.bb-time-slot {
  text-align: center;
  padding: 7px 4px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--bb-border);
  color: var(--bb-muted);
  background: var(--bb-s2);
  transition: all .15s;
  white-space: nowrap;
}
.bb-time-slot:hover {
  border-color: rgba(252,212,29,.4);
  color: var(--bb-yellow);
  background: rgba(252,212,29,.07);
}
.bb-time-slot.selected {
  background: var(--bb-yellow);
  color: #000;
  border-color: var(--bb-yellow);
}

@media (max-width: 400px) {
  .bb-time-slots { grid-template-columns: repeat(3, 1fr); }
}

/* ── Appointment card in dashboard ── */
.bb-appt-card {
  transition: border-color .2s;
}
.bb-appt-card:hover {
  border-color: rgba(252,212,29,.25) !important;
}


/* =====================================================
   v3.2 — Elementor Canvas Full-Screen Fixes
   Ensures the plugin renders correctly on all screens
   when hosted on Elementor canvas template pages.
   ===================================================== */

/* ── Reset any Elementor / theme container interference ── */
.elementor-page #bb-app,
body.elementor-page #bb-app,
.e-con #bb-app,
.elementor-section-wrap #bb-app {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* ── Force full viewport coverage on Elementor canvas ── */
html body.elementor-page {
  background: #0a0a0a !important;
}
.elementor-page .bb-page.active {
  min-height: 100vh;
  width: 100%;
}

/* ── Checkout page — pin section side by side on all screens ── */
#bb-co-pin-err {
  display: none;
  color: #ff6b6b;
  font-size: .82rem;
  padding: 8px 12px;
  background: rgba(255,107,107,.1);
  border-radius: 8px;
  margin-top: 6px;
}
#bb-co-err {
  display: none;
  color: #ff6b6b;
  font-size: .84rem;
  padding: 10px 14px;
  background: rgba(255,107,107,.1);
  border: 1px solid rgba(255,107,107,.25);
  border-radius: 10px;
  margin-bottom: 12px;
}
.bb-co-section {
  margin-bottom: 28px;
  padding: 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-rad);
}
.bb-co-section h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--bb-text);
}

/* ── Checkout layout — full width on all canvas sizes ── */
.bb-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 860px) {
  .bb-checkout-layout {
    grid-template-columns: 1fr !important;
    padding: 24px 20px 60px !important;
    gap: 20px !important;
  }
  .bb-checkout-side {
    width: 100% !important;
    order: -1; /* summary on top on mobile */
  }
}
@media (max-width: 540px) {
  .bb-checkout-layout { padding: 16px 14px 60px !important; }
  .bb-co-section { padding: 18px 16px; }
  .bb-form-row { flex-direction: column !important; gap: 0 !important; }
  .bb-steps-bar { gap: 6px; }
  .bb-step-lbl { font-size: .65rem; }
}

/* ── Strategy modal — full screen safe on all viewports ── */
.bb-modal-strategy-form {
  width: calc(100vw - 32px) !important;
  max-width: 500px !important;
  max-height: 92vh !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 540px) {
  .bb-modal-strategy-form {
    width: calc(100vw - 24px) !important;
    padding: 16px 14px !important;
    border-radius: 16px !important;
  }
  .bb-strat-form-grid {
    grid-template-columns: 1fr !important;
  }
  .bb-time-slots {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* ── Client dashboard — full screen on Elementor canvas ── */
.bb-dash-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
}
.bb-dash-page.active {
  display: flex !important;
  width: 100%;
}
.bb-sidebar {
  flex-shrink: 0;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow-y: auto;
}
.bb-dash-main {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .bb-sidebar {
    position: fixed !important;
    left: -280px;
    top: 0;
    height: 100vh !important;
    width: 260px !important;
    z-index: 200;
    transition: left .3s ease;
    box-shadow: 4px 0 24px rgba(0,0,0,.6);
  }
  .bb-sidebar.open { left: 0 !important; }
  .bb-mob-menu-btn {
    display: flex !important;
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 201;
    background: var(--bb-s2);
    border: 1px solid var(--bb-border);
    border-radius: 8px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--bb-text);
    cursor: pointer;
  }
  .bb-dash-main .bb-dash-hdr {
    padding-top: 64px;
  }
}

/* ── Appointment cards — responsive grid ── */
@media (max-width: 480px) {
  .bb-appt-card > div:nth-child(2) {
    grid-template-columns: 1fr !important;
  }
}

/* ── Hero responsive fixes for canvas ── */
@media (max-width: 480px) {
  .bb-hero-content { padding: 0 16px; }
  .bb-hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem) !important; }
  .bb-hero-highlight::after { display: none; } /* ellipse too wide on very small screens */
  .bb-hero-price-pill { font-size: .9rem; padding: 5px 14px; }
  .bb-hero-actions { flex-direction: column; gap: 10px; }
  .bb-hero-actions .bb-btn { width: 100%; justify-content: center; }
}

/* ── Pricing grid canvas fixes ── */
@media (max-width: 480px) {
  .bb-pr-grid, .bb-plans-grid {
    grid-template-columns: 1fr !important;
    padding: 0 16px;
  }
  .bb-growth-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* ── Strategy page canvas fixes ── */
.bb-strat-page-hero {
  text-align: center;
  padding: calc(var(--bb-nav-h) + 60px) 24px 60px;
}
.bb-strat-page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 540px) {
  .bb-strat-page-hero { padding: calc(var(--bb-nav-h) + 40px) 16px 40px; }
  .bb-strat-pricing-card { padding: 24px 18px !important; }
}

/* ── Overlay and modals ── */
.bb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 16px;
  overflow-y: auto;
}
.bb-overlay.show {
  display: flex;
}
.bb-modal {
  background: var(--bb-s1);
  border: 1px solid var(--bb-border);
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 480px) {
  .bb-modal { padding: 28px 20px; border-radius: 16px; }
}

