:root {
  --bz-red:     #ed1c24;
  --bz-red-dk:  #b5141a;
  --bz-yellow:  #ffd300;
  --bz-black:   #0c0c0e;
  --bz-dark:    #13131a;
  --bz-white:   #ffffff;
  --bz-off:     #f7f7f9;
  --bz-muted:   #6b7280;
  --bz-border:  #e5e7eb;
  --bz-radius:  14px;
  --bz-shadow:  0 2px 20px rgba(0,0,0,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #1a1a2e;
  background: var(--bz-white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--bz-black);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
h5 { font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
h6 { font-size: clamp(0.95rem, 1.3vw, 1.1rem); }

p { font-size: clamp(0.95rem, 1.4vw, 1.1rem); color: #444; margin: 0; }

a { color: var(--bz-red); text-decoration: none; }
a:hover { color: var(--bz-red-dk); }

.flex-grow-1 { flex: 1; }

.bz-eyebrow {
  display: block;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bz-red);
  margin-bottom: 0.65rem;
}

.bz-section-sub {
  color: var(--bz-muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  max-width: 560px;
  margin: 0.75rem auto 0;
}

.bz-section {
  padding: clamp(64px, 9vw, 112px) 0;
}

#bz-loader {
  position: fixed;
  inset: 0;
  background: var(--bz-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#bz-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bz-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.bz-loader-logo {
  width: clamp(90px, 18vw, 150px);
  height: auto;
}

.bz-loader-track {
  width: clamp(140px, 28vw, 240px);
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.bz-loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--bz-red), var(--bz-yellow));
  border-radius: 999px;
  transition: width 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   NAV BAR
   ============================================= */
.bz-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.bz-nav.scrolled {
  background: rgba(12,12,14,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.bz-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px,3vw,40px);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bz-nav-brand img {
  height: clamp(90px,7vw,110px);
  width: auto;
  display: block;
}

/* =============================================
   DESKTOP NAV — div based, Bootstrap-proof
   ============================================= */
.bz-nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bz-ndl {
  display: block;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82) !important;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
}

.bz-ndl:hover,
.bz-ndl.active {
  color: #fff !important;
  background: rgba(255,255,255,0.07);
}

.bz-ndl-drop::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 7px;
  vertical-align: middle;
}

.bz-ndrop {
  position: relative;
}

.bz-ndrop:hover .bz-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bz-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 100;
}

.bz-dropdown-inner {
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.bz-dropdown-inner a {
  display: block;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72) !important;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none !important;
}

.bz-dropdown-inner a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff !important;
}

/* =============================================
   HAMBURGER BUTTON
   ============================================= */
.bz-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10002;
  position: relative;
}

.bz-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.bz-nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.bz-nav-toggle.open span:nth-child(2) { opacity: 0; }
.bz-nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   MOBILE MENU — body-level, zero interference
   ============================================= */
.bz-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
}
.bz-mobile-overlay.open { display: block; }

.bz-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0a0a0c;
  z-index: 10001;
  overflow-y: auto;
  padding: 84px 0 40px;
  display: none;
  flex-direction: column;
}
.bz-mobile-menu.open { display: flex; }

.bz-mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.bz-mob-logo {
  height: 48px;
  width: auto;
}

.bz-mob-close {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  padding: 0;
  position: relative;
  transition: background 0.2s;
}

.bz-mob-close:hover {
  background: rgba(255,255,255,0.12);
}

.bz-mob-close span {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
}

.bz-mob-close span:nth-child(1) { transform: rotate(45deg); }
.bz-mob-close span:nth-child(2) { transform: rotate(-45deg); }

.bz-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 20px;
}

.bz-mlink {
  display: block;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85) !important;
  padding: 15px 16px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s;
}
.bz-mlink:hover,
.bz-mlink.active {
  background: rgba(255,255,255,0.06);
  color: #fff !important;
}

.bz-mgroup { width: 100%; }

.bz-mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 15px 16px;
  border-radius: 10px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  transition: background 0.15s;
}
.bz-mobile-dropdown-btn:hover,
.bz-mobile-dropdown-btn.open {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.bz-mob-arrow {
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: transform 0.25s ease, color 0.2s;
  display: inline-block;
  line-height: 1;
}
.bz-mobile-dropdown-btn.open .bz-mob-arrow {
  transform: rotate(90deg);
  color: #ffd300;
}

.bz-mobile-submenu {
  display: none;
  flex-direction: column;
  margin: 4px 0 8px 12px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  gap: 2px;
}
.bz-mobile-submenu.open { display: flex; }
.bz-mobile-submenu a {
  display: block;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62) !important;
  padding: 12px 14px;
  border-radius: 7px;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s;
}
.bz-mobile-submenu a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff !important;
}

/* =============================================
   BREAKPOINTS
   ============================================= */
@media (max-width: 991px) {
  .bz-nav-inner  { height: 72px; }
  .bz-nav-brand img { height: 52px; }
  .bz-nav-desktop { display: none; }
  .bz-nav-toggle  { display: flex; }
}

@media (min-width: 992px) {
  .bz-mobile-menu,
  .bz-mobile-overlay { display: none !important; }
}

.bz-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bz-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.bz-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12,12,14,0.92) 0%, rgba(12,12,14,0.6) 55%, rgba(12,12,14,0.3) 100%),
    linear-gradient(to bottom, rgba(12,12,14,0.7) 0%, rgba(12,12,14,0.2) 40%, rgba(12,12,14,0.5) 100%);
  z-index: 1;
}

.bz-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  width: 100%;
}

.bz-hero-title {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--bz-white);
  margin-bottom: 1.2rem;
}

.bz-hero-title span { color: var(--bz-yellow); }

.bz-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  max-width: 480px;
  margin-bottom: 1.8rem;
  line-height: 1.75;
}

.bz-hero-search {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.6rem;
  max-width: 460px;
  transition: border-color 0.2s, background 0.2s;
}

.bz-hero-search:focus-within {
  border-color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.11);
}

.bz-hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--bz-white);
  padding: 13px 16px;
  min-width: 0;
}

.bz-hero-search-input::placeholder {
  color: rgba(255,255,255,0.35);
  font-size: 0.86rem;
}

.bz-hero-search-btn {
  background: var(--bz-yellow);
  color: var(--bz-black);
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  padding: 13px 20px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.bz-hero-search-btn:hover { background: #e6be00; }

.bz-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bz-hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  z-index: 2;
}

.btn-bz-primary {
  display: inline-block;
  background: var(--bz-red);
  color: var(--bz-white);
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}

.btn-bz-primary:hover {
  background: var(--bz-red-dk);
  color: var(--bz-white);
  transform: translateY(-1px);
}

.btn-bz-ghost {
  display: inline-block;
  background: transparent;
  color: var(--bz-white);
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-align: center;
}

.btn-bz-ghost:hover {
  border-color: var(--bz-white);
  background: rgba(255,255,255,0.06);
  color: var(--bz-white);
  transform: translateY(-1px);
}

.btn-bz-yellow {
  display: inline-block;
  background: var(--bz-yellow);
  color: var(--bz-black);
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}

.btn-bz-yellow:hover {
  background: #e6be00;
  color: var(--bz-black);
  transform: translateY(-1px);
}

.btn-bz-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--bz-black);
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--bz-black);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.btn-bz-outline-dark:hover {
  background: var(--bz-black);
  color: var(--bz-white);
}

.bz-stats {
  background: var(--bz-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bz-stat-item {
  padding: clamp(24px, 4vw, 44px) 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bz-stat-last { border-right: none; }

.bz-stat-item strong {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--bz-yellow);
  line-height: 1;
}

.bz-stat-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bz-card {
  background: var(--bz-white);
  border: 1px solid var(--bz-border);
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-shadow);
  padding: clamp(24px, 3vw, 36px);
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bz-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.11);
  transform: translateY(-4px);
}

.bz-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bz-red);
  background: rgba(237,28,36,0.07);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}

.bz-card h5 { margin: 0; font-size: clamp(1rem, 1.5vw, 1.2rem); }

.bz-card p {
  font-size: 0.92rem;
  color: var(--bz-muted);
  line-height: 1.65;
  flex: 1;
}

.bz-card-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bz-black);
  letter-spacing: 0.02em;
  border-bottom: 1.5px solid var(--bz-black);
  padding-bottom: 1px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}

.bz-card-cta:hover {
  color: var(--bz-red);
  border-color: var(--bz-red);
}

.bz-how { background: var(--bz-off); }

.bz-step {
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--bz-white);
  border: 1px solid var(--bz-border);
  border-radius: var(--bz-radius);
  height: 100%;
}

.bz-step-num {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--bz-yellow);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.bz-step h5 { margin-bottom: 0.75rem; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.bz-step p { font-size: 0.92rem; color: var(--bz-muted); }

.bz-cta { background: var(--bz-black); }
.bz-cta h2 { color: var(--bz-white); margin-bottom: 0.75rem; }
.bz-cta p { color: rgba(255,255,255,0.6); }

.bz-cta-inner {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 64px);
  background: rgba(255,255,255,0.02);
}

.bz-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bz-page-hero {
  background-color: var(--bz-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(110px, 14vw, 160px) 0 clamp(48px, 7vw, 80px);
  text-align: center;
  position: relative;
}

.bz-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,12,14,0.72);
}

.bz-page-hero .container-xl { position: relative; z-index: 1; }
.bz-page-hero h1 { color: var(--bz-white); }
.bz-page-hero .bz-eyebrow { color: var(--bz-yellow); }

.bz-page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0.75rem auto 0;
}

.bz-feed-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 32px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bz-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.bz-feed-label {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bz-yellow);
}

.bz-feed-all {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.bz-feed-all:hover { color: var(--bz-white); }

.bz-feed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bz-feed-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.22s, border-color 0.22s;
  text-decoration: none;
}

.bz-feed-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,211,0,0.3);
}

.bz-feed-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.bz-feed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.bz-feed-card:hover .bz-feed-img img { transform: scale(1.04); }

.bz-feed-no-img {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.04);
}

.bz-feed-info { padding: 11px 13px; }

.bz-feed-name {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bz-white);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bz-feed-district {
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255,255,255,0.36);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.bz-filter-bar {
  background: var(--bz-off);
  border: 1px solid var(--bz-border);
  border-radius: var(--bz-radius);
  padding: clamp(20px, 3vw, 32px);
}

.bz-filter-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bz-black);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bz-filter-input,
.bz-filter-select {
  width: 100%;
  border: 1.5px solid var(--bz-border);
  border-radius: 9px;
  font-size: 0.95rem;
  padding: 11px 14px;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  background: var(--bz-white);
  color: var(--bz-black);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.bz-filter-input:focus,
.bz-filter-select:focus {
  border-color: var(--bz-red);
  box-shadow: 0 0 0 3px rgba(237,28,36,0.1);
  outline: none;
}

.bz-filter-clear {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bz-muted);
  padding: 11px 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.bz-filter-clear:hover { color: var(--bz-red); }

.bz-results-count {
  font-size: 0.88rem;
  color: var(--bz-muted);
  margin-bottom: 1.5rem;
}

.bz-product-card {
  display: block;
  border-radius: var(--bz-radius);
  overflow: hidden;
  background: var(--bz-white);
  border: 1px solid var(--bz-border);
  box-shadow: var(--bz-shadow);
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  height: 100%;
}

.bz-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.11);
}

.bz-product-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bz-off);
}

.bz-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.bz-product-card:hover .bz-product-img img { transform: scale(1.04); }

.bz-product-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bz-off);
}

.bz-product-no-img span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bz-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bz-product-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bz-product-district {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bz-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.bz-product-name {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: var(--bz-black);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bz-product-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bz-red);
  letter-spacing: 0.03em;
}

.bz-empty {
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
  max-width: 480px;
  margin: 0 auto;
}

.bz-empty-icon {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--bz-border);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.bz-empty h4 { margin-bottom: 0.75rem; font-size: clamp(1.2rem, 2vw, 1.5rem); }
.bz-empty p { color: var(--bz-muted); margin-bottom: 2rem; font-size: 0.95rem; }

.bz-empty-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.bz-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.bz-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bz-black);
  border: 1.5px solid var(--bz-border);
  background: var(--bz-white);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.bz-page-btn:hover { border-color: var(--bz-black); color: var(--bz-black); }

.bz-page-btn.active {
  background: var(--bz-black);
  border-color: var(--bz-black);
  color: var(--bz-white);
}

.bz-footer { background: var(--bz-black); color: rgba(255,255,255,0.6); }

.bz-footer-top {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
}

.bz-footer-logo {
  height: clamp(30px, 4vw, 42px);
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.bz-footer-about {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 320px;
}

.bz-footer-contact-line {
  font-size: 0.88rem;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: rgba(255,255,255,0.55);
}

.bz-footer-contact-line span {
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.bz-footer-contact-line small {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.32);
}

.bz-footer-heading {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bz-yellow);
  margin-bottom: 1.1rem;
}

.bz-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bz-footer-list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
}

.bz-footer-list a:hover { color: var(--bz-white); }

.bz-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}

.bz-footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

.bz-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--bz-black);
}

.bz-form .form-control,
.bz-form .form-select,
.bz-form textarea {
  width: 100%;
  border: 1.5px solid var(--bz-border);
  border-radius: 9px;
  font-size: 0.95rem;
  padding: 11px 14px;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--bz-white);
  color: var(--bz-black);
}

.bz-form .form-control:focus,
.bz-form .form-select:focus,
.bz-form textarea:focus {
  border-color: var(--bz-red);
  box-shadow: 0 0 0 3px rgba(237,28,36,0.1);
  outline: none;
}

.bz-required { color: var(--bz-red); }

/* =============================================
   DESKTOP NAV LINKS — shown >= 992px
   ============================================= */
.bz-nav-links-desktop {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.bz-nav-links-desktop > li { position: relative; }
.bz-nav-links-desktop > li > a {
  display: block;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.bz-nav-links-desktop > li > a:hover,
.bz-nav-links-desktop > li > a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.bz-nav-links-desktop > li.bz-has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 7px;
  vertical-align: middle;
}
.bz-nav-links-desktop .bz-has-dropdown:hover .bz-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =============================================
   MOBILE MENU — direct child of body
   Completely separate from nav element
   No stacking context interference
   ============================================= */

.bz-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
}
.bz-mobile-overlay.open { display: block; }

.bz-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0a0c;
  z-index: 10001;
  overflow-y: auto;
  padding: 90px 0 40px;
  display: none;
  flex-direction: column;
}
.bz-mobile-menu.open { display: flex; }

.bz-mobile-links {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bz-mobile-links > li { width: 100%; }
.bz-mobile-links > li > a {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 15px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.bz-mobile-links > li > a:hover,
.bz-mobile-links > li > a.active {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.bz-mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 15px 16px;
  border-radius: 10px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  transition: background 0.15s, color 0.15s;
}
.bz-mobile-dropdown-btn:hover,
.bz-mobile-dropdown-btn.open {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.bz-mob-arrow {
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: transform 0.25s ease, color 0.2s;
  display: inline-block;
  line-height: 1;
}
.bz-mobile-dropdown-btn.open .bz-mob-arrow {
  transform: rotate(90deg);
  color: var(--bz-yellow);
}

.bz-mobile-submenu {
  list-style: none;
  margin: 4px 0 8px 12px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  display: none;
}
.bz-mobile-submenu.open { display: block; }
.bz-mobile-submenu li a {
  display: block;
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  padding: 12px 14px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.bz-mobile-submenu li a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

/* =============================================
   BREAKPOINTS
   ============================================= */
@media (max-width: 991px) {
  .bz-nav-inner { height: 72px; }
  .bz-nav-brand img { height: 52px; }
  .bz-nav-links-desktop { display: none; }
  .bz-nav-toggle { display: flex; }
  .bz-cta-btns { flex-direction: row; flex-wrap: wrap; }
  .bz-feed-wrap { margin-top: 8px; }
}
@media (min-width: 992px) {
  .bz-mobile-menu,
  .bz-mobile-overlay { display: none !important; }
  .bz-nav-toggle { display: none; }
}

@media (max-width: 767px) {
  .bz-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .bz-stat-last { border-bottom: none; }
  .bz-hero-btns { flex-direction: column; }
  .bz-hero-btns a { text-align: center; }
  .bz-cta-btns { flex-direction: column; }
  .bz-hero-search { max-width: 100%; }

  /* Hero mobile: use mobile image if set, fix position */
  .bz-hero {
    min-height: 100svh;
    background-position: center center;
    background-image: var(--hero-mobile, var(--hero-desktop));
  }

  /* Stronger overlay on mobile for readability */
  .bz-hero-overlay {
    background:
      linear-gradient(to bottom, rgba(12,12,14,0.85) 0%, rgba(12,12,14,0.55) 50%, rgba(12,12,14,0.8) 100%);
  }

  .bz-hero-content { padding-top: 88px; }
  .bz-hero-title { font-size: clamp(2rem, 9vw, 3rem); }
}

@media (min-width: 1400px) {
  body { font-size: 1.05rem; }
}

.bz-page-hero-sm {
  padding: clamp(88px, 11vw, 120px) 0 clamp(24px, 3vw, 36px);
}

.bz-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}

.bz-hero-breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.bz-hero-breadcrumb a:hover { color: var(--bz-white); }
.bz-hero-breadcrumb span:last-child { color: var(--bz-white); font-weight: 600; }

.bz-gallery { display: flex; flex-direction: column; gap: 10px; }

.bz-gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bz-off);
  border: 1px solid var(--bz-border);
}

.bz-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.bz-gallery-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bz-gallery-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--bz-border);
  cursor: pointer;
  transition: border-color 0.2s;
}

.bz-gallery-thumb.active,
.bz-gallery-thumb:hover { border-color: var(--bz-red); }

.bz-no-photo-block {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bz-off);
  border-radius: 16px;
  border: 1px solid var(--bz-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--bz-muted);
  font-weight: 500;
}

.bz-product-meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.bz-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bz-red);
  background: rgba(237,28,36,0.07);
  padding: 4px 10px;
  border-radius: 999px;
}

.bz-tag-outline {
  color: var(--bz-muted);
  background: transparent;
  border: 1px solid var(--bz-border);
}

.bz-product-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--bz-black);
  margin-bottom: 20px;
  line-height: 1.15;
}

.bz-product-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.bz-highlight {
  background: var(--bz-off);
  border: 1px solid var(--bz-border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bz-highlight-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bz-muted);
}

.bz-highlight-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bz-black);
}

.bz-product-desc {
  margin-bottom: 24px;
}

.bz-product-desc h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--bz-black);
}

.bz-product-desc p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
}

.bz-product-notice {
  background: rgba(237,28,36,0.04);
  border: 1px solid rgba(237,28,36,0.12);
  border-radius: 10px;
  padding: 14px 16px;
}

.bz-product-notice p {
  font-size: 0.82rem;
  color: var(--bz-muted);
  line-height: 1.55;
  margin: 0;
}

.bz-contact-card {
  background: var(--bz-white);
  border: 1px solid var(--bz-border);
  border-radius: 16px;
  box-shadow: var(--bz-shadow);
  overflow: hidden;
  position: sticky;
  top: 88px;
}

.bz-contact-card-head {
  background: var(--bz-black);
  padding: 20px 24px;
}

.bz-contact-card-head h3 {
  color: var(--bz-white);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.bz-contact-card-head p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin: 0;
}

.bz-enquiry-form {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bz-field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bz-field-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bz-black);
}

.bz-req-star { color: var(--bz-red); }

.bz-pub-input,
.bz-pub-textarea {
  width: 100%;
  border: 1.5px solid var(--bz-border);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 0.92rem;
  padding: 10px 12px;
  color: var(--bz-black);
  background: var(--bz-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bz-pub-input:focus,
.bz-pub-textarea:focus {
  border-color: var(--bz-red);
  box-shadow: 0 0 0 3px rgba(237,28,36,0.08);
  outline: none;
}

.bz-pub-textarea { resize: vertical; min-height: 80px; }

.bz-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
}

.bz-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--bz-red);
  cursor: pointer;
}

.bz-checkbox-row a { color: var(--bz-red); }

.w-100 { width: 100%; }
.mt-3  { margin-top: 16px; }

.bz-form-disclaimer {
  font-size: 0.75rem;
  color: var(--bz-muted);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

.bz-form-errors {
  background: rgba(237,28,36,0.06);
  border: 1px solid rgba(237,28,36,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 24px 0;
}

.bz-form-errors p {
  font-size: 0.84rem;
  color: var(--bz-red);
  margin: 0;
  line-height: 1.5;
}

.bz-form-success {
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bz-success-icon {
  width: 52px;
  height: 52px;
  background: rgba(34,197,94,0.12);
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #22c55e;
  margin-bottom: 4px;
}

.bz-form-success h4 {
  font-size: 1.1rem;
  color: var(--bz-black);
}

.bz-form-success p {
  font-size: 0.88rem;
  color: var(--bz-muted);
  max-width: 280px;
}

.bz-ref-note {
  font-size: 0.8rem;
  background: var(--bz-off);
  border: 1px solid var(--bz-border);
  border-radius: 6px;
  padding: 6px 12px;
}

.bz-contact-helpline {
  background: var(--bz-off);
  border: 1px solid var(--bz-border);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
}

.bz-contact-helpline p { font-size: 0.82rem; color: var(--bz-muted); margin: 0; }
.bz-helpline-num { font-family: 'Outfit', Arial, sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--bz-black) !important; margin: 4px 0 !important; }
.bz-helpline-hours { font-size: 0.76rem !important; }

.bz-related-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--bz-black);
  margin-bottom: 4px;
}

.bz-section-sm { padding: clamp(32px, 5vw, 56px) 0; }

@media (max-width: 767px) {
  .bz-contact-card { position: static; }
  .bz-product-highlights { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .bz-product-highlights { grid-template-columns: 1fr; }
}

.bz-pub-form-card {
  background: var(--bz-white);
  border: 1px solid var(--bz-border);
  border-radius: 16px;
  box-shadow: var(--bz-shadow);
  overflow: hidden;
}

.bz-pub-form-section {
  padding: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid var(--bz-border);
}

.bz-pub-form-section:last-child { border-bottom: none; }

.bz-pub-form-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bz-off);
}

.bz-pub-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bz-black);
  margin-bottom: 18px;
}

.bz-pub-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.bz-pub-select {
  width: 100%;
  border: 1.5px solid var(--bz-border);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 0.92rem;
  padding: 10px 12px;
  color: var(--bz-black);
  background: var(--bz-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7280'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.bz-pub-select:focus {
  border-color: var(--bz-red);
  box-shadow: 0 0 0 3px rgba(237,28,36,0.08);
  outline: none;
}

.bz-field-hint {
  font-size: 0.76rem;
  color: var(--bz-muted);
  margin-top: 4px;
}

.bz-pub-error-box {
  background: rgba(237,28,36,0.06);
  border: 1px solid rgba(237,28,36,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.bz-pub-error-box p {
  font-size: 0.86rem;
  color: var(--bz-red);
  margin: 0;
  line-height: 1.6;
}

.bz-upload-area {
  border: 2px dashed var(--bz-border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.bz-upload-area:hover,
.bz-upload-area.drag-over {
  border-color: var(--bz-red);
  background: rgba(237,28,36,0.03);
}

.bz-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.bz-upload-icon {
  font-size: 2rem;
  font-weight: 300;
  color: var(--bz-muted);
  margin-bottom: 8px;
}

.bz-upload-label p { font-size: 0.9rem; color: var(--bz-muted); margin: 0; }
.bz-upload-hint { font-size: 0.76rem !important; margin-top: 4px !important; }

.bz-upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.bz-preview-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--bz-border);
}

.bz-submission-success {
  background: var(--bz-white);
  border: 1px solid var(--bz-border);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: var(--bz-shadow);
}

.bz-success-icon-lg {
  width: 64px;
  height: 64px;
  background: rgba(34,197,94,0.1);
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #22c55e;
}

.bz-submission-success h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.bz-submission-success p  { color: var(--bz-muted); font-size: 0.95rem; max-width: 440px; }

.bz-success-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.bz-success-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bz-off);
  border: 1px solid var(--bz-border);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: left;
  max-width: 200px;
}

.bz-success-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bz-red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bz-success-step p { font-size: 0.8rem; color: var(--bz-muted); margin: 0; }

.bz-success-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.d-inline-block { display: inline-block; }

.bz-cat-strip {
  background: var(--bz-off);
  border-bottom: 1px solid var(--bz-border);
  padding: 14px 0;
}

.bz-cat-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  flex-wrap: nowrap;
}

.bz-cat-scroll::-webkit-scrollbar { display: none; }

.bz-cat-pill {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bz-muted);
  background: var(--bz-white);
  border: 1.5px solid var(--bz-border);
  border-radius: 999px;
  padding: 7px 16px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.bz-cat-pill:hover { color: var(--bz-black); border-color: var(--bz-black); }
.bz-cat-pill.active { background: var(--bz-black); color: var(--bz-white); border-color: var(--bz-black); }

.bz-provider-card {
  background: var(--bz-white);
  border: 1px solid var(--bz-border);
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-shadow);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bz-provider-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.11);
  transform: translateY(-3px);
}

.bz-provider-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 0;
}

.bz-provider-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bz-border);
  flex-shrink: 0;
}

.bz-provider-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(237,28,36,0.08);
  border: 2px solid rgba(237,28,36,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bz-red);
  flex-shrink: 0;
}

.bz-provider-info h5 { font-size: 0.98rem; margin-bottom: 5px; }

.bz-provider-body {
  padding: 14px 18px;
  flex: 1;
}

.bz-provider-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  color: var(--bz-muted);
  font-weight: 500;
}

.bz-provider-meta span::before { content: '•'; margin-right: 6px; opacity: 0.4; }
.bz-provider-meta span:first-child::before { display: none; }

.bz-provider-skills {
  font-size: 0.84rem;
  color: var(--bz-muted);
  line-height: 1.5;
  margin: 0;
}

.bz-provider-foot {
  padding: 14px 18px 18px;
  border-top: 1px solid var(--bz-border);
}

.bz-provider-btn {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 0.88rem;
}

.bz-cat-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bz-cat-option {
  cursor: pointer;
}

.bz-cat-option input { display: none; }

.bz-cat-option span {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bz-muted);
  background: var(--bz-off);
  border: 1.5px solid var(--bz-border);
  border-radius: 999px;
  padding: 7px 14px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.bz-cat-option input:checked + span {
  background: var(--bz-black);
  color: var(--bz-white);
  border-color: var(--bz-black);
}

.bz-cat-option:hover span {
  border-color: var(--bz-black);
  color: var(--bz-black);
}

.bz-section-note {
  font-size: 0.82rem;
  color: var(--bz-muted);
  margin-bottom: 16px;
  background: var(--bz-off);
  border: 1px solid var(--bz-border);
  border-radius: 8px;
  padding: 10px 14px;
}

.bz-info-sidebar {
  background: var(--bz-off);
  border: 1px solid var(--bz-border);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 30px);
  position: sticky;
  top: 88px;
}

.bz-info-sidebar h3 { font-size: 1.05rem; margin-bottom: 20px; }

.bz-info-steps,
.bz-trust-list { display: flex; flex-direction: column; gap: 16px; }

.bz-info-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bz-info-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bz-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Outfit', Arial, sans-serif;
}

.bz-info-step strong { display: block; font-size: 0.9rem; margin-bottom: 3px; }
.bz-info-step p { font-size: 0.82rem; color: var(--bz-muted); margin: 0; line-height: 1.5; }

.bz-trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bz-trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1.5px solid rgba(34,197,94,0.25);
  color: #22c55e;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bz-trust-item strong { display: block; font-size: 0.88rem; margin-bottom: 2px; }
.bz-trust-item p { font-size: 0.8rem; color: var(--bz-muted); margin: 0; line-height: 1.5; }

.bz-info-contact {
  background: var(--bz-white);
  border: 1px solid var(--bz-border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.bz-info-link-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bz-info-link-box p { font-size: 0.85rem; color: var(--bz-muted); margin: 0; }

.bz-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bz-about-stat {
  background: var(--bz-black);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bz-about-stat strong {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--bz-yellow);
  line-height: 1;
}

.bz-about-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bz-value-card,
.bz-how-card {
  background: var(--bz-white);
  border: 1px solid var(--bz-border);
  border-radius: var(--bz-radius);
  padding: clamp(24px, 3vw, 36px);
  height: 100%;
}

.bz-value-num,
.bz-how-num {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--bz-yellow);
  line-height: 1;
  margin-bottom: 12px;
}

.bz-value-card h5,
.bz-how-card h5 { margin-bottom: 10px; font-size: clamp(1rem, 1.5vw, 1.15rem); }
.bz-value-card p,
.bz-how-card p  { font-size: 0.9rem; color: var(--bz-muted); line-height: 1.65; margin: 0; }

.bz-contact-info { display: flex; flex-direction: column; gap: 28px; }

.bz-contact-block h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bz-muted); margin-bottom: 8px; }
.bz-contact-value { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; color: var(--bz-black); margin: 0; }
.bz-contact-value a { color: var(--bz-black); }
.bz-contact-value a:hover { color: var(--bz-red); }
.bz-contact-note { font-size: 0.82rem; color: var(--bz-muted); margin: 4px 0 0; }

.bz-quick-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bz-quick-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bz-black);
  padding: 8px 0;
  border-bottom: 1px solid var(--bz-border);
  transition: color 0.2s, padding-left 0.2s;
}

.bz-quick-links a:hover { color: var(--bz-red); padding-left: 4px; }
.bz-quick-links a:last-child { border-bottom: none; }

.bz-legal-body h3 {
  font-size: 1.05rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--bz-black);
}

.bz-legal-body p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 12px;
}

.bz-legal-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.bz-legal-body ul li {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 6px;
}

.bz-cookie-table {
  border: 1px solid var(--bz-border);
  border-radius: 10px;
  overflow: hidden;
  margin: 16px 0;
}

.bz-cookie-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--bz-border);
}

.bz-cookie-row:last-child { border-bottom: none; }

.bz-cookie-row span {
  padding: 12px 14px;
  font-size: 0.85rem;
  color: #444;
  border-right: 1px solid var(--bz-border);
}

.bz-cookie-row span:last-child { border-right: none; }

.bz-cookie-head span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bz-muted);
  background: var(--bz-off);
}

@media (max-width: 767px) {
  .bz-pub-row { grid-template-columns: 1fr; }
  .bz-info-sidebar { position: static; }
  .bz-about-stats { grid-template-columns: 1fr 1fr; }
  .bz-cookie-row { grid-template-columns: 1fr; }
  .bz-cookie-row span { border-right: none; }
}
