@import url("index-CNL9PmGj.css");

:root {
  --bb-orange: rgb(236, 111, 21);
  --bb-orange-dark: rgb(165, 77, 14);
  --bb-orange-deeper: rgb(213, 80, 2);
  --bb-bg-dark: rgba(24, 20, 18, 0.75);
  --bb-bg-body: rgba(130, 106, 95, 0.25);
  --bb-text-primary: rgb(255, 237, 212);
  --bb-text-secondary: rgb(141, 115, 102);
  --bb-border-dark: rgba(63, 49, 42, 0.5);
  --bb-border-radius: 12px;
  --bb-border-radius-lg: 18px;
  --bb-font: OpenRunde, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

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

body.bb-subpage {
  margin: 0;
  padding: 0;
  font-family: var(--bb-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--bb-text-primary);
  background-color: var(--bb-bg-body);
  min-height: 100vh;
  overflow-x: hidden;
}

.bb-page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: rgba(24, 20, 18, 0.75);
  overflow-x: hidden;
  max-width: 100%;
}

/* ── HEADER ── */

.bb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(24, 20, 18, 0.98) 0%, rgba(24, 20, 18, 0.92) 100%);
  border-bottom: 1px solid var(--bb-border-dark);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}

.bb-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 16px;
}

.bb-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.bb-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.bb-logo-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--bb-text-primary);
  font-family: var(--bb-font);
}

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

.bb-header-nav a {
  font-size: 15px;
  font-weight: 700;
  color: var(--bb-text-primary);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.bb-header-nav a:hover {
  opacity: 1;
  color: var(--bb-orange);
}

.bb-header-nav a.bb-nav-active {
  opacity: 1;
  color: var(--bb-text-primary);
}

.bb-header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--bb-border-radius);
  font-family: var(--bb-font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  line-height: 1.4;
}

.bb-btn-primary {
  background-color: var(--bb-orange);
  color: var(--bb-text-primary);
  border-color: var(--bb-orange);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 6px;
}

.bb-btn-primary:hover {
  background-color: transparent;
  color: var(--bb-orange);
  border-color: var(--bb-orange);
}

.bb-btn-outline {
  background-color: transparent;
  color: var(--bb-orange);
  border-color: var(--bb-orange);
}

.bb-btn-outline:hover {
  background-color: var(--bb-orange);
  color: var(--bb-text-primary);
}

/* ── MAIN CONTENT AREA ── */

.bb-main {
  flex: 1;
  width: 100%;
  max-width: 100%;
}

.bb-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.bb-container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ── HERO BANNER ── */

.bb-hero-banner {
  background: url("header-bg.svg") center center / cover no-repeat,
              linear-gradient(to top, rgb(29, 24, 22) 0%, rgb(43, 36, 33) 100%);
  border-bottom: 2px solid var(--bb-border-dark);
  padding: 56px 24px 48px;
  max-width: 100%;
  overflow-x: hidden;
}

.bb-hero-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bb-page-h1 {
  font-family: var(--bb-font);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--bb-text-primary);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.bb-page-subtitle {
  font-family: var(--bb-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--bb-text-secondary);
  margin: 0;
  max-width: 640px;
  line-height: 1.6;
}

/* ── SECTION LAYOUT ── */

.bb-section {
  padding: 48px 0;
  max-width: 100%;
  overflow-x: hidden;
}

.bb-section + .bb-section {
  border-top: 1px solid var(--bb-border-dark);
}

.bb-section-alt {
  background-color: rgba(24, 20, 18, 0.45);
}

.bb-section-title {
  font-family: var(--bb-font);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--bb-text-primary);
  margin: 0 0 28px 0;
  line-height: 1.3;
}

.bb-section-body {
  font-family: var(--bb-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--bb-text-primary);
  line-height: 1.75;
  margin: 0 0 16px 0;
}

.bb-section-body:last-child {
  margin-bottom: 0;
}

/* ── CARD GRID ── */

.bb-card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  width: 100%;
}

.bb-card {
  background-color: var(--bb-bg-dark);
  border: 2px solid var(--bb-border-dark);
  border-radius: var(--bb-border-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.bb-card:hover {
  border-color: var(--bb-orange);
  background-color: rgba(24, 20, 18, 0.9);
}

.bb-card-title {
  font-family: var(--bb-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--bb-text-primary);
  margin: 0;
  line-height: 1.3;
}

.bb-card-body {
  font-family: var(--bb-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--bb-text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* ── Q&A ACCORDION ── */

.bb-qa-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.bb-qa-item {
  background-color: var(--bb-bg-dark);
  border: 2px solid var(--bb-border-dark);
  border-radius: var(--bb-border-radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.bb-qa-item:hover {
  border-color: rgba(236, 111, 21, 0.5);
}

.bb-qa-item.bb-qa-open {
  border-color: var(--bb-orange);
}

.bb-qa-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--bb-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--bb-text-primary);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.bb-qa-question:hover {
  color: var(--bb-orange);
}

.bb-qa-item.bb-qa-open .bb-qa-question {
  color: var(--bb-orange);
}

.bb-qa-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  transition: transform 0.25s ease, background-color 0.2s ease;
  line-height: 1;
  color: var(--bb-orange);
}

.bb-qa-item.bb-qa-open .bb-qa-icon {
  transform: rotate(45deg);
  background-color: var(--bb-orange);
  color: var(--bb-text-primary);
}

.bb-qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 24px;
}

.bb-qa-item.bb-qa-open .bb-qa-answer {
  max-height: 800px;
  padding: 0 24px 20px;
}

.bb-qa-answer p {
  font-family: var(--bb-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--bb-text-secondary);
  line-height: 1.75;
  margin: 0 0 12px 0;
}

.bb-qa-answer p:last-child {
  margin-bottom: 0;
}

.bb-qa-answer a {
  color: var(--bb-orange);
  text-decoration: underline;
}

.bb-qa-answer a:hover {
  color: var(--bb-orange-dark);
}

/* ── ABOUT SECTIONS ── */

.bb-about-lead {
  font-family: var(--bb-font);
  font-size: 17px;
  font-weight: 600;
  color: var(--bb-text-primary);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.bb-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.bb-stat-box {
  background-color: var(--bb-bg-dark);
  border: 2px solid var(--bb-border-dark);
  border-radius: var(--bb-border-radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.bb-stat-box:hover {
  border-color: var(--bb-orange);
}

.bb-stat-value {
  display: block;
  font-family: var(--bb-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--bb-orange);
  margin-bottom: 4px;
  line-height: 1.2;
}

.bb-stat-label {
  display: block;
  font-family: var(--bb-font);
  font-size: 12px;
  font-weight: 500;
  color: var(--bb-text-secondary);
  line-height: 1.4;
}

.bb-highlight-block {
  background: linear-gradient(to right, rgba(236, 111, 21, 0.12), rgba(236, 111, 21, 0.04));
  border-left: 3px solid var(--bb-orange);
  border-radius: 0 var(--bb-border-radius) var(--bb-border-radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.bb-highlight-block p {
  font-family: var(--bb-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--bb-text-primary);
  margin: 0;
  line-height: 1.7;
}

/* ── INLINE LINKS ── */

.bb-link {
  color: var(--bb-orange);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.bb-link:hover {
  color: var(--bb-orange-dark);
}

/* ── BREADCRUMB / NAV TAGS ── */

.bb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.bb-breadcrumb a {
  font-family: var(--bb-font);
  font-size: 12px;
  font-weight: 500;
  color: var(--bb-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bb-breadcrumb a:hover {
  color: var(--bb-orange);
}

.bb-breadcrumb-sep {
  font-size: 12px;
  color: var(--bb-text-secondary);
  opacity: 0.5;
}

.bb-breadcrumb-current {
  font-family: var(--bb-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--bb-text-primary);
}

/* ── DIVIDER ── */

.bb-divider {
  height: 1px;
  background-color: var(--bb-border-dark);
  border: none;
  margin: 0;
  width: 100%;
}

/* ── FOOTER ── */

.bb-footer {
  background-color: var(--bb-orange);
  padding: 16px 0;
  max-width: 100%;
  overflow-x: hidden;
}

.bb-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.bb-footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bb-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgb(213, 80, 2);
  color: var(--bb-orange);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.bb-footer-social a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.bb-footer-social a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.bb-footer-copy {
  font-family: var(--bb-font);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.bb-footer-legal a {
  font-family: var(--bb-font);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
}

/* ── BACK / CTA ROW ── */

.bb-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--bb-border-dark);
}

/* ── SECTION CALLOUT LINK ROW ── */

.bb-inline-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.bb-inline-links a {
  font-family: var(--bb-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--bb-orange);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.bb-inline-links a:hover {
  color: var(--bb-orange-dark);
}

/* ── RESPONSIVE ── */

@media (max-width: 899px) {
  .bb-header-nav {
    display: none;
  }

  .bb-hero-banner {
    padding: 40px 16px 36px;
  }

  .bb-section {
    padding: 36px 0;
  }

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

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

  .bb-container,
  .bb-container-narrow {
    padding: 0 16px;
  }

  .bb-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .bb-header-inner {
    padding: 0 16px;
  }
}

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

  .bb-qa-question {
    padding: 16px;
    font-size: 14px;
  }

  .bb-qa-answer {
    padding: 0 16px;
  }

  .bb-qa-item.bb-qa-open .bb-qa-answer {
    padding: 0 16px 16px;
  }

  .bb-card {
    padding: 18px;
  }

  .bb-page-h1 {
    font-size: 24px;
  }

  .bb-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}