:root {
  --bb-blue: #2380c3;
  --bb-blue-dark: #1c6ba3;
  --bb-red: #d42019;
  --bb-red-dark: #b31b14;
  --bb-gray: #5c5c5c;
  --bb-teal: #2380c3;
  --bb-teal-dark: #1c6ba3;
  --bb-coral: #d42019;
  --bb-coral-dark: #b31b14;
  --bb-navy: #1a4d73;
  --bb-sky: #e8f3fb;
  --bb-cream: #f5f5f5;
  --bb-text: #141414;
  --bb-text-muted: #5c5c5c;
  --bb-border: #d9d9d9;
  --bb-bg: #ffffff;
  --bb-bg-alt: #f7f7f7;
  --bb-radius: 16px;
  --bb-radius-lg: 24px;
  --bb-shadow: 0 12px 40px rgba(35, 128, 195, 0.12);
}

[data-theme="dark"] {
  --bb-text: #f1f5f9;
  --bb-text-muted: #a9a9a9;
  --bb-border: #4a5568;
  --bb-bg: #1a4d73;
  --bb-bg-alt: #1e557d;
  --bb-sky: #1e557d;
  --bb-cream: #225a82;
  --bb-navy: #153d5c;
  --bb-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

body.bb-landing {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--bb-text);
  background: var(--bb-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.bb-landing a { text-decoration: none; color: inherit; }

.bb-landing h1, .bb-landing h2, .bb-landing h3,
.bb-landing h4, .bb-landing h5, .bb-landing h6 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  color: var(--bb-text);
  letter-spacing: -0.02em;
}

.bb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.bb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bb-btn-primary {
  background: var(--bb-coral);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(212, 32, 25, 0.35);
}

.bb-btn-primary:hover,
.bb-btn-primary:focus,
.bb-btn-primary:active {
  background: var(--bb-coral-dark);
  color: #fff !important;
  transform: translateY(-2px);
}

.bb-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.bb-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.bb-btn-teal {
  background: var(--bb-teal);
  color: #fff;
}

.bb-btn-teal:hover {
  background: var(--bb-teal-dark);
  color: #fff;
}

.bb-btn-dark {
  background: var(--bb-navy);
  color: #fff;
}

/* Header */
.bb-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s;
}

.bb-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--bb-border);
}

[data-theme="dark"] .bb-header.scrolled {
  background: rgba(26, 77, 115, 0.95);
}

.bb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bb-header-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bb-logo img {
  height: 48px;
  width: auto;
}

.bb-dogra-logo img {
  height: 36px;
  width: auto;
  opacity: 0.95;
  transition: opacity 0.2s;
}

.bb-dogra-logo:hover img {
  opacity: 1;
}

.bb-header.scrolled .bb-dogra-logo img {
  filter: none;
}

.bb-header:not(.scrolled) .bb-dogra-logo img {
  filter: brightness(0) invert(1);
}

.bb-header.scrolled .bb-logo img {
  filter: none;
}

.bb-header:not(.scrolled) .bb-logo img {
  filter: brightness(0) invert(1);
}

.bb-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.bb-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bb-nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.bb-header.scrolled .bb-nav-links a {
  color: var(--bb-text);
  border-bottom-color: transparent;
}

.bb-header.scrolled .bb-nav-links a:hover,
.bb-header.scrolled .bb-nav-links a.active {
  color: var(--bb-teal);
  border-bottom-color: var(--bb-teal);
}

.bb-nav-links a:hover,
.bb-nav-links a.active {
  color: var(--bb-coral);
  border-bottom-color: var(--bb-coral);
}

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

.bb-theme-toggle,
.bb-mobile-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bb-header.scrolled .bb-theme-toggle,
.bb-header.scrolled .bb-mobile-toggle {
  border-color: var(--bb-border);
  background: var(--bb-bg);
  color: var(--bb-text);
}

[data-theme="dark"] .bb-header.scrolled .bb-theme-toggle,
[data-theme="dark"] .bb-header.scrolled .bb-mobile-toggle {
  border-color: var(--bb-border);
  background: var(--bb-bg);
  color: var(--bb-text);
}

/* Hero with video */
.bb-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.bb-hero-loader {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(145deg, #123a57 0%, var(--bb-navy) 45%, #0f2f47 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.bb-hero-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bb-hero-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bb-hero-loader-logo-wrap {
  filter: brightness(0) invert(1);
  line-height: 0;
}

.bb-hero-loader-logo {
  display: block;
  width: min(320px, 78vw);
  height: auto;
  animation: bb-loader-bounce 1.6s ease-in-out infinite;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes bb-loader-bounce {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -26px, 0); }
}

.bb-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bb-hero-video .video-js {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
}

.bb-hero-video .video-js .vjs-tech {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
}

.bb-hero-video .video-js .vjs-poster {
  background-size: cover;
  background-position: center center;
}

@media (min-width: 1200px) {
  .bb-hero {
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .bb-hero-video,
  .bb-hero-video .video-js,
  .bb-hero-video .video-js .vjs-tech {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
  }
}

.bb-hero-video .vjs-control-bar {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  background: rgba(26, 77, 115, 0.85);
  z-index: 4;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.bb-hero-video .vjs-big-play-button {
  display: none !important;
}

.bb-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(26, 77, 115, 0.88) 0%, rgba(35, 128, 195, 0.45) 45%, rgba(26, 77, 115, 0.2) 100%);
}

.bb-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 640px;
}

.bb-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(35, 128, 195, 0.25);
  border: 1px solid rgba(35, 128, 195, 0.5);
  color: #7ec8f0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bb-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}

.bb-hero h1 span {
  color: var(--bb-coral);
}

.bb-hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  max-width: 520px;
}

.bb-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.bb-hero-or {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.9rem;
}

.bb-hero-float {
  position: absolute;
  right: 8%;
  bottom: 18%;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--bb-radius);
  padding: 20px 24px;
  box-shadow: var(--bb-shadow);
  max-width: 220px;
}

.bb-hero-float strong {
  display: block;
  font-size: 1.5rem;
  color: var(--bb-teal);
  margin-bottom: 4px;
}

.bb-hero-float span {
  font-size: 0.88rem;
  color: var(--bb-text-muted);
}

.bb-unmute-btn {
  position: absolute;
  bottom: 72px;
  right: 24px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  background: var(--bb-coral);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 6px 20px rgba(212, 32, 25, 0.4);
}

.bb-unmute-btn.hidden { display: none; }

/* Sections */
.bb-section {
  padding: 96px 0;
}

.bb-section-sky { background: var(--bb-sky); }
.bb-section-cream { background: var(--bb-cream); }
.bb-section-dark { background: var(--bb-navy); color: #fff; }
.bb-section-dark h2, .bb-section-dark h3 { color: #fff; }
.bb-section-dark p { color: rgba(255, 255, 255, 0.75); }

.bb-section-label {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-teal);
  margin-bottom: 12px;
}

.bb-section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}

.bb-section-desc {
  text-align: center;
  color: var(--bb-text-muted);
  max-width: 620px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
}

/* How it works - 3 steps */
.bb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bb-step {
  text-align: center;
  padding: 36px 28px;
  background: var(--bb-bg);
  border-radius: var(--bb-radius-lg);
  border: 1px solid var(--bb-border);
  box-shadow: var(--bb-shadow);
}

.bb-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bb-blue), #4da3d9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.bb-step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.bb-step p {
  color: var(--bb-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Why cards */
.bb-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bb-why-card {
  background: var(--bb-bg);
  border-radius: var(--bb-radius-lg);
  overflow: hidden;
  border: 1px solid var(--bb-border);
  transition: transform 0.25s;
}

.bb-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bb-shadow);
}

.bb-why-icon {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--bb-sky), var(--bb-cream));
}

.bb-why-card:nth-child(2) .bb-why-icon { background: linear-gradient(135deg, #d4e9f7, #a8d4ef); }
.bb-why-card:nth-child(3) .bb-why-icon { background: linear-gradient(135deg, #f5d4d3, #e8a8a6); }

.bb-why-body {
  padding: 24px;
}

.bb-why-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.bb-why-body p {
  color: var(--bb-text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Promo band */
.bb-promo {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--bb-blue) 0%, #1c6ba3 100%);
  color: #fff;
  text-align: center;
}

.bb-promo .bb-section-label { color: #b8daf0; }
.bb-promo h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.bb-promo p { color: rgba(255, 255, 255, 0.85); margin-bottom: 28px; }

.bb-newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.bb-newsletter-form input {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 0.95rem;
}

/* Features picks grid */
.bb-picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bb-pick-card {
  background: var(--bb-bg);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
}

.bb-pick-card:hover {
  border-color: var(--bb-teal);
  transform: translateY(-4px);
  box-shadow: var(--bb-shadow);
}

.bb-pick-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bb-sky);
  color: var(--bb-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.bb-pick-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.bb-pick-card p {
  font-size: 0.82rem;
  color: var(--bb-text-muted);
  margin: 0;
}

.bb-step p,
.bb-why-body p,
.bb-split p,
.bb-stat p {
  color: var(--bb-text-muted);
}

/* Split section */
.bb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.bb-split img {
  width: 100%;
  border-radius: var(--bb-radius-lg);
  box-shadow: var(--bb-shadow);
}

.bb-split h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}

.bb-split p {
  color: var(--bb-text-muted);
  margin-bottom: 24px;
}

/* CTA band */
.bb-cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bb-navy) 0%, #2380c3 100%);
  color: #fff;
  text-align: center;
}

.bb-cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.bb-cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* Screenshots carousel */
.bb-screenshots-wrap {
  position: relative;
  padding: 0 52px;
}

.bb-screenshots-wrap .swiper-slide { width: 280px; }

.bb-shot-card {
  background: var(--bb-bg);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  overflow: hidden;
  transition: transform 0.25s;
}

.bb-shot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bb-shadow);
}

.bb-shot-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: var(--bb-bg-alt);
  padding: 10px;
  cursor: pointer;
}

.bb-shot-card .caption {
  padding: 14px 18px;
  border-top: 1px solid var(--bb-border);
}

.bb-shot-card h5 { font-size: 0.92rem; margin-bottom: 3px; }
.bb-shot-card p { font-size: 0.78rem; color: var(--bb-text-muted); margin: 0; }

.bb-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--bb-border);
  background: var(--bb-bg);
  color: var(--bb-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--bb-shadow);
}

.bb-swiper-btn:hover { border-color: var(--bb-teal); color: var(--bb-teal); }
.bb-swiper-btn.prev { left: 0; }
.bb-swiper-btn.next { right: 0; }

.bb-screenshots-wrap .swiper-pagination { position: relative; margin-top: 28px; }

/* Stats */
.bb-stats {
  padding: 64px 0;
  background: var(--bb-bg-alt);
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
}

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

.bb-stat {
  text-align: center;
}

.bb-stat h3 {
  font-size: 2rem;
  color: var(--bb-teal);
  margin-bottom: 4px;
}

.bb-stat p {
  color: var(--bb-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Contact */
.bb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.bb-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.bb-contact-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bb-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bb-contact-form {
  background: var(--bb-bg);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 36px;
  box-shadow: var(--bb-shadow);
}

.bb-contact-form .form-control {
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--bb-bg);
  color: var(--bb-text);
}

.bb-contact-form .form-control:focus {
  border-color: var(--bb-teal);
  box-shadow: 0 0 0 3px rgba(35, 128, 195, 0.2);
}

.bb-captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bb-captcha-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bb-text);
  margin: 0;
  white-space: nowrap;
}

.bb-captcha-row .form-control {
  max-width: 120px;
}

.bb-captcha-refresh {
  border: none;
  background: var(--bb-sky);
  color: var(--bb-teal);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.bb-captcha-refresh:hover {
  background: #d4e9f7;
}

/* Toast */
.bb-toast-wrap {
  position: fixed;
  top: calc(88px + env(safe-area-inset-top, 0));
  right: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.bb-toast {
  min-width: min(360px, calc(100vw - 40px));
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--bb-border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: auto;
}

.bb-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.bb-toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.bb-toast.success .bb-toast-icon {
  background: rgba(35, 128, 195, 0.15);
  color: var(--bb-teal);
}

.bb-toast.error .bb-toast-icon {
  background: rgba(212, 32, 25, 0.12);
  color: var(--bb-coral);
}

.bb-toast-body strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--bb-text);
}

.bb-toast-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--bb-text-muted);
  line-height: 1.45;
}

[data-theme="dark"] .bb-toast {
  background: var(--bb-bg-alt);
  border-color: var(--bb-border);
}

/* Footer */
.bb-footer {
  background: var(--bb-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.bb-footer h6 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.bb-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bb-footer-brand img {
  height: 40px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.bb-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.bb-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bb-footer-links li { margin-bottom: 10px; }

.bb-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.bb-footer-links a:hover { color: var(--bb-coral); }

.bb-social {
  display: flex;
  gap: 10px;
}

.bb-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s;
}

.bb-social a:hover {
  background: var(--bb-coral);
  border-color: var(--bb-coral);
}

.bb-footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  font-size: 0.84rem;
  text-align: center;
}

.bb-scroll-cluster {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0));
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.bb-scroll-cluster.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bb-landing a.bb-scroll-credit,
.bb-landing a.bb-scroll-credit:hover {
  color: var(--bb-gray);
}

.bb-scroll-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--bb-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
  max-width: min(360px, calc(100vw - 100px));
  transition: box-shadow 0.2s, transform 0.2s;
}

.bb-scroll-credit:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.bb-scroll-credit-label,
.bb-scroll-credit > span {
  color: inherit;
  font-weight: 600;
  line-height: 1.3;
}

.bb-scroll-credit-label {
  white-space: nowrap;
}

.bb-scroll-credit img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.bb-back-top {
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bb-coral);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.15rem;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(212, 32, 25, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.bb-back-top:hover {
  background: var(--bb-coral-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 32, 25, 0.45);
}

[data-theme="dark"] .bb-scroll-credit {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .bb-landing a.bb-scroll-credit,
[data-theme="dark"] .bb-landing a.bb-scroll-credit:hover {
  color: #5c5c5c;
}

.hero-video-modal .modal-content { border: none; border-radius: 20px; overflow: hidden; }
.hero-video-modal .btn-close { filter: invert(1); }

/* Responsive */
@media (max-width: 991px) {
  .bb-nav {
    position: relative;
  }

  .bb-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    flex-direction: column;
    background: var(--bb-bg);
    border: 1px solid var(--bb-border);
    border-radius: 12px;
    padding: 16px;
    margin-top: 12px;
    box-shadow: var(--bb-shadow);
    z-index: 1001;
  }

  .bb-nav-links.open { display: flex; }
  .bb-nav-links.open a {
    color: var(--bb-text) !important;
    border-bottom-color: transparent;
  }
  .bb-nav-links.open a:hover,
  .bb-nav-links.open a.active {
    color: var(--bb-teal) !important;
    border-bottom-color: var(--bb-teal);
  }

  .bb-mobile-toggle { display: flex !important; }
  .bb-header-actions .bb-btn { display: none !important; }

  .bb-section { padding: 72px 0; }
  .bb-section-desc { margin-bottom: 40px; }

  .bb-hero-float { display: none; }
  .bb-steps, .bb-why-grid { grid-template-columns: 1fr; }
  .bb-picks-grid { grid-template-columns: repeat(2, 1fr); }
  .bb-split, .bb-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .bb-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bb-footer-grid { grid-template-columns: 1fr 1fr; }

  .bb-screenshots-wrap { padding: 0 44px; }
  .bb-screenshots-wrap .swiper-slide { width: 260px; }

  .bb-unmute-btn {
    bottom: calc(56px + env(safe-area-inset-bottom, 0));
    right: 16px;
  }
}

@media (max-width: 767px) {
  .bb-container { padding: 0 16px; }

  .bb-header { padding: 12px 0; }
  .bb-logo img { height: 40px; }
  .bb-dogra-logo img { height: 28px; }
  .bb-header-logos { gap: 12px; }

  .bb-hero {
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
  }

  .bb-hero-video,
  .bb-hero-video .video-js {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding-top: 0 !important;
    margin: 0 !important;
  }

  .bb-hero-video .video-js .vjs-tech,
  .bb-hero-video .video-js video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .bb-hero-loader {
    padding: max(12px, env(safe-area-inset-top)) 16px max(12px, env(safe-area-inset-bottom));
  }

  .bb-hero-loader-logo { width: min(260px, 82vw); }

  .bb-hero-video .vjs-current-time,
  .bb-hero-video .vjs-time-divider,
  .bb-hero-video .vjs-duration,
  .bb-hero-video .vjs-remaining-time,
  .bb-hero-video .vjs-playback-rate,
  .bb-hero-video .vjs-picture-in-picture-control {
    display: none !important;
  }

  .bb-hero-video .vjs-control-bar {
    height: 3em;
    font-size: 12px;
  }

  .bb-hero-video .vjs-progress-control {
    min-width: 0;
    flex: 1 1 auto;
  }

  .bb-unmute-btn {
    top: calc(68px + env(safe-area-inset-top, 0));
    bottom: auto;
    right: 12px;
    left: auto;
    padding: 8px 14px;
    font-size: 0.78rem;
    gap: 6px;
    max-width: calc(100% - 24px);
  }

  .bb-unmute-btn .bi { font-size: 0.95rem; }

  .bb-section { padding: 56px 0; }
  .bb-section-title { font-size: clamp(1.45rem, 5vw, 1.9rem); }
  .bb-section-desc {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .bb-step { padding: 28px 20px; }
  .bb-promo { padding: 52px 0; }
  .bb-cta-band { padding: 56px 0; }

  .bb-picks-grid { grid-template-columns: 1fr; gap: 14px; }
  .bb-pick-card { padding: 22px 18px; }

  .bb-screenshots-wrap {
    padding: 0 36px;
  }

  .bb-screenshots-wrap .swiper-slide { width: min(78vw, 260px); }

  .bb-swiper-btn {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .bb-swiper-btn.prev { left: 0; }
  .bb-swiper-btn.next { right: 0; }

  .bb-shot-card img { height: 170px; }

  .bb-contact-form { padding: 24px 18px; }
  .bb-contact-item .icon { width: 40px; height: 40px; }

  .bb-btn {
    padding: 12px 22px;
    font-size: 0.9rem;
  }

  .bb-scroll-cluster {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0));
    justify-content: flex-end;
    gap: 8px;
  }

  .bb-scroll-credit {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #5c5c5c;
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 52px);
  }

  .bb-landing a.bb-scroll-credit,
  .bb-landing a.bb-scroll-credit:hover {
    color: #5c5c5c;
  }
}

@media (max-width: 575px) {
  .bb-picks-grid, .bb-stats-grid, .bb-footer-grid { grid-template-columns: 1fr; }
  .bb-hero-content { padding: 120px 0 80px; }
  .bb-footer-bottom { text-align: center; }

  .bb-scroll-cluster {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0));
    gap: 8px;
  }

  .bb-scroll-credit {
    padding: 7px 10px;
    font-size: 0.66rem;
    max-width: calc(100% - 48px);
  }

  .bb-scroll-credit img {
    width: 22px;
    height: 22px;
  }

  .bb-back-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .bb-footer { padding-top: 52px; }
  .bb-hero-loader-logo { width: min(240px, 85vw); }
  .bb-unmute-btn { white-space: nowrap; }
  .bb-screenshots-wrap { padding: 0 32px; }
  .bb-stat h3 { font-size: 1.65rem; }

  .bb-toast-wrap {
    left: 16px;
    right: 16px;
  }

  .bb-toast {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 767px) and (max-height: 520px) {
  .bb-hero-loader-logo { width: 200px; }
  .bb-hero-loader-inner { gap: 0; }
}

/* PiscoTech brand logos */
.bb-pisco-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: none;
  padding: 0;
  box-shadow: none;
}

.bb-pisco-logo img {
  height: 40px;
  width: auto;
  filter: none !important;
  background: none;
}

.bb-pisco-logo-img,
.bb-pisco-loader-logo,
.bb-pisco-footer-logo {
  filter: none !important;
  width: auto;
  background: none;
}

.bb-pisco-logo-img {
  height: 40px;
}

.bb-pisco-logo-dark {
  display: none;
}

.bb-pisco-logo-light {
  display: block;
}

/* Over hero video — light-text logo */
.bb-header:not(.scrolled) .bb-pisco-logo-light {
  display: block !important;
}

.bb-header:not(.scrolled) .bb-pisco-logo-dark {
  display: none !important;
}

/* Scrolled light header — dark-text logo */
.bb-header.scrolled .bb-pisco-logo-light {
  display: none;
}

.bb-header.scrolled .bb-pisco-logo-dark {
  display: block;
}

/* Dark theme header — light-text logo */
[data-theme="dark"] .bb-header .bb-pisco-logo-light {
  display: block !important;
}

[data-theme="dark"] .bb-header .bb-pisco-logo-dark {
  display: none !important;
}

.bb-pisco-loader-logo {
  width: min(320px, 78vw);
  height: auto;
  animation: bb-loader-bounce 1.6s ease-in-out infinite;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.bb-pisco-footer-logo {
  height: 42px;
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .bb-pisco-logo img,
  .bb-pisco-logo-img {
    height: 34px;
  }

  .bb-pisco-loader-logo {
    width: min(260px, 82vw);
  }

  .bb-pisco-footer-logo {
    height: 36px;
  }
}

.bb-mobile-toggle { display: none; }

/* Image hero (Pisco) */
.bb-hero--image {
  display: flex;
  align-items: center;
}

.bb-hero-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bb-hero--image .bb-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(26, 77, 115, 0.9) 0%, rgba(35, 128, 195, 0.5) 45%, rgba(26, 77, 115, 0.35) 100%);
}

.bb-hero--image .bb-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 720px;
}

.bb-hero--image .bb-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}

.bb-hero--image .bb-hero-content .bb-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 640px;
}

.bb-hero--image .bb-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.bb-logo-text {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
}

.bb-header.scrolled .bb-logo-text {
  color: var(--bb-teal);
}

@media (max-width: 767px) {
  .bb-hero--image {
    height: auto;
    min-height: 100dvh;
    max-height: none;
  }

  .bb-hero--image .bb-hero-content {
    padding: 120px 0 80px;
  }
}
