/* ============================================================
   BN-HERO
============================================================ */
.bn-hero {
  background: linear-gradient(135deg, #fbf7ef 0%, #f6edd9 45%, #efe3c6 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.bn-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.11) 0%,
    transparent 65%
  );
  border-radius: 50%;
  animation: bn-hero-pulse 5s ease-in-out infinite;
}
.bn-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 65%
  );
  border-radius: 50%;
  animation: bn-hero-pulse 7s ease-in-out infinite reverse;
}
@keyframes bn-hero-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
}
.bn-hero__geo {
  position: absolute;
  border: 1.5px solid rgba(201, 168, 76, 0.18);
  border-radius: 50%;
  animation: bn-hero-float 7s ease-in-out infinite;
}
.bn-hero__geo--1 {
  width: 90px;
  height: 90px;
  top: 10%;
  left: 3%;
  animation-delay: 0s;
}
.bn-hero__geo--2 {
  width: 55px;
  height: 55px;
  top: 65%;
  left: 7%;
  animation-delay: 1.8s;
}
.bn-hero__geo--3 {
  width: 130px;
  height: 130px;
  top: 8%;
  right: 4%;
  animation-delay: 3.2s;
}
.bn-hero__geo--4 {
  width: 65px;
  height: 65px;
  bottom: 14%;
  right: 10%;
  animation-delay: 0.9s;
}
.bn-hero__geo--5 {
  width: 40px;
  height: 40px;
  top: 50%;
  right: 20%;
  animation-delay: 2.4s;
}
@keyframes bn-hero-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-18px) rotate(10deg);
    opacity: 0.75;
  }
}
.bn-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #a8862e;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: bn-fade-up 0.7s ease both;
}
.bn-hero__badge-dot {
  width: 7px;
  height: 7px;
  background: #c9a84c;
  border-radius: 50%;
  animation: bn-blink 1.4s infinite;
}
@keyframes bn-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.bn-hero__title {
  /* font-family: "Playfair Display", serif; */
  font-size: 54px;
  font-weight: 800;
  color: #2a2218;
  line-height: 1.1;
  animation: bn-fade-up 0.8s 0.1s ease both;
}
.bn-hero__title-hl {
  color: #c9a84c;
  position: relative;
  display: inline-block;
}
.bn-hero__title-hl::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a);
  border-radius: 2px;
  transform-origin: left;
  animation: bn-line-grow 1s 0.9s ease both;
}
@keyframes bn-line-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.bn-hero__desc {
  font-size: 15.5px;
  color: #7a6f68;
  line-height: 1.8;
  max-width: 530px;
  animation: bn-fade-up 0.8s 0.22s ease both;
}
.bn-hero__btns {
  animation: bn-fade-up 0.8s 0.38s ease both;
}

.bn-hero__btn-primary {
  background: #c9a84c;
  color: #1c1a18;
  border: none;
  padding: 13px 30px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.32);
}
.bn-hero__btn-primary:hover {
  background: #a8862e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}
.bn-hero__btn-outline {
  background: transparent;
  color: #2a2218;
  border: 2px solid #c9a84c;
  padding: 11px 28px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s;
}
.bn-hero__btn-outline:hover {
  background: #c9a84c;
  color: #1c1a18;
}

.bn-hero__panel {
  animation: bn-slide-right 0.9s 0.28s ease both;
}
@keyframes bn-slide-right {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.bn-hero__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
  border: 1px solid #e5d9c0;
}
.bn-hero__live-badge {
  background: #c9a84c;
  color: #1c1a18;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  animation: bn-float-badge 3s ease-in-out infinite;
}
@keyframes bn-float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.bn-hero__donut-wrap {
  width: 110px;
  height: 110px;
  position: relative;
  margin: 0 auto 14px;
}
.bn-hero__donut {
  transform: rotate(-90deg);
}
.bn-hero__donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.bn-hero__donut-center strong {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #c9a84c;
  display: block;
  line-height: 1;
}
.bn-hero__donut-center span {
  font-size: 10px;
  color: #7a6f68;
}

.bn-hero__mini-stat {
  background: #f8f4ec;
  border-radius: 11px;
  padding: 13px 10px;
  text-align: center;
  border: 1px solid #eee6d4;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.bn-hero__mini-stat:hover {
  border-color: #c9a84c;
  transform: translateY(-3px);
}
.bn-hero__mini-stat strong {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #1c1a18;
  display: block;
}
.bn-hero__mini-stat small {
  font-size: 10.5px;
  color: #7a6f68;
}

/* ============================================================
   BN-TICK
============================================================ */
.bn-tick {
  background: #c9a84c;
  padding: 16px 0;
  overflow: hidden;
}
.bn-tick__inner {
  display: flex;
  gap: 48px;
  animation: bn-ticker-scroll 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes bn-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.bn-tick__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #2a2218;
}
.bn-tick__sep {
  color: rgba(42, 34, 24, 0.28);
  font-size: 18px;
}

/* ============================================================
   BN-WHY  — shared section heading helpers
============================================================ */
.bn-why {
  padding: 48px 0;
  /* background: #fffdf8; */
  background: #f7f8fa;
}
.bn-why__sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
  margin-bottom: 8px;
}
.bn-why__gold-bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a);
  border-radius: 2px;
  margin-bottom: 12px;
}
.bn-why__sec-title {
  /* font-family: "Playfair Display", serif; */
  font-size: 36px;
  font-weight: 700;
  color: #2a2218;
  margin-bottom: 12px;
}
.bn-why__sec-desc {
  color: #7a6f68;
  font-size: 15px;
  line-height: 1.75;
}

.bn-why__card {
  background: #ffffff;
  border: 1.5px solid #eee6d4;
  border-radius: 18px;
  padding: 30px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s,
    box-shadow 0.35s,
    transform 0.35s;
}
.bn-why__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.bn-why__card::after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: -30px;
  width: 130px;
  height: 130px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition:
    bottom 0.4s,
    right 0.4s;
}
.bn-why__card:hover {
  border-color: #c9a84c;
  box-shadow: 0 18px 48px rgba(201, 168, 76, 0.16);
  transform: translateY(-8px);
}
.bn-why__card:hover::before {
  transform: scaleX(1);
}
.bn-why__card:hover::after {
  bottom: -10px;
  right: 0;
}

.bn-why__card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.14),
    rgba(201, 168, 76, 0.04)
  );
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.bn-why__card:hover .bn-why__card-icon {
  background: #c9a84c;
  border-color: #c9a84c;
  transform: scale(1.1) rotate(-6deg);
}
.bn-why__card-title {
  /* font-family: "Playfair Display", serif; */
  font-size: 17px;
  font-weight: 700;
  color: #2a2218;
  margin-bottom: 9px;
}
.bn-why__card-text {
  font-size: 13.5px;
  color: #7a6f68;
  line-height: 1.7;
}

/* ============================================================
   BN-ECO
============================================================ */
.bn-eco {
  padding: 48px 0;
  /* background: #f8f4ec; */
  background: #f0f2f0;
}

.bn-eco__sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
  margin-bottom: 8px;
}
.bn-eco__gold-bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a);
  border-radius: 2px;
  margin-bottom: 12px;
}
.bn-eco__sec-title {
  /* font-family: "Playfair Display", serif; */
  font-size: 36px;
  font-weight: 700;
  color: #2a2218;
  margin-bottom: 12px;
}
.bn-eco__sec-desc {
  color: #7a6f68;
  font-size: 15px;
  line-height: 1.75;
}

.bn-eco__card {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #eee6d4;
  padding: 34px 28px;
  height: 100%;
  transition:
    box-shadow 0.35s,
    transform 0.35s,
    border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.bn-eco__card:hover {
  box-shadow: 0 22px 64px rgba(201, 168, 76, 0.14);
  transform: translateY(-8px);
  border-color: #c9a84c;
}
.bn-eco__card-num {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.bn-eco__card:hover .bn-eco__card-num {
  color: rgba(201, 168, 76, 0.22);
}
.bn-eco__card-chip {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: #a8862e;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.bn-eco__card-title {
  /* font-family: "Playfair Display", serif; */
  font-size: 19px;
  font-weight: 700;
  color: #2a2218;
  margin-bottom: 10px;
}
.bn-eco__card-desc {
  font-size: 13.5px;
  color: #7a6f68;
  line-height: 1.75;
  margin-bottom: 18px;
}
.bn-eco__list {
  list-style: none;
  padding: 0;
}
.bn-eco__list-item {
  font-size: 13px;
  color: #3d3530;
  padding: 7px 0;
  border-top: 1px solid #eee6d4;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.bn-eco__list-item:first-child {
  border-top: none;
}
.bn-eco__list-arrow {
  color: #c9a84c;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   BN-PROC
============================================================ */
.bn-proc {
  padding: 48px 0;
  background: #fffdf8;
}

.bn-proc__sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
  margin-bottom: 8px;
}
.bn-proc__gold-bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a);
  border-radius: 2px;
  margin-bottom: 12px;
}
.bn-proc__sec-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: #2a2218;
  margin-bottom: 12px;
}
.bn-proc__sec-desc {
  color: #7a6f68;
  font-size: 15px;
  line-height: 1.75;
}

.bn-proc__row {
  position: relative;
}
.bn-proc__connector {
  position: absolute;
  top: 32px;
  left: calc(10% + 32px);
  right: calc(10% + 32px);
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a, #c9a84c);
  z-index: 0;
}
.bn-proc__step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.bn-proc__step-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #c9a84c, #a8862e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.32);
  border: 3px solid #ffffff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.bn-proc__step:hover .bn-proc__step-circle {
  transform: scale(1.14);
  box-shadow: 0 14px 32px rgba(201, 168, 76, 0.5);
}
.bn-proc__step-card {
  background: #ffffff;
  border: 1.5px solid #eee6d4;
  border-radius: 14px;
  padding: 18px 14px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.bn-proc__step:hover .bn-proc__step-card {
  border-color: #c9a84c;
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.14);
  transform: translateY(-4px);
}
.bn-proc__step-title {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;
  color: #2a2218;
  margin-bottom: 5px;
}
.bn-proc__step-text {
  font-size: 11.5px;
  color: #7a6f68;
  line-height: 1.6;
}

/* ============================================================
   BN-INTEL
============================================================ */
.bn-intel {
  padding: 48px 0;
  /* background: #f8f4ec; */
  background: #f7f8fa;
}

.bn-intel__sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
  margin-bottom: 8px;
}
.bn-intel__gold-bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a);
  border-radius: 2px;
  margin-bottom: 12px;
}
.bn-intel__sec-title {

  font-size: 36px;
  font-weight: 700;
  color: #2a2218;
  margin-bottom: 12px;
}
.bn-intel__sec-desc {
  color: #7a6f68;
  font-size: 15px;
  line-height: 1.75;
}

.bn-intel__card {
  background: linear-gradient(135deg, #ffffff 0%, #fbf5e6 100%);
  border: 1.5px solid #e5d9c0;
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  transition:
    border-color 0.35s,
    box-shadow 0.35s,
    transform 0.35s;
  position: relative;
  overflow: hidden;
}
.bn-intel__card::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(201, 168, 76, 0.13);
  border-radius: 50%;
  transition:
    transform 0.4s,
    opacity 0.4s;
}
.bn-intel__card:hover {
  border-color: #c9a84c;
  box-shadow: 0 18px 50px rgba(201, 168, 76, 0.18);
  transform: translateY(-6px);
}
.bn-intel__card:hover::before {
  transform: scale(2.8);
  opacity: 0.35;
}
.bn-intel__card-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 16px;
  border: 1.5px solid #eee6d4;
  background: #ffffff;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.bn-intel__card:hover .bn-intel__card-icon {
  background: #c9a84c;
  border-color: #c9a84c;
  transform: rotate(8deg) scale(1.1);
}
.bn-intel__card-title {
  font-family: "Exo 2", serif;
  font-size: 16px;
  font-weight: 700;
  color: #2a2218;
  margin-bottom: 7px;
}
.bn-intel__card-text {
  font-size: 13px;
  color: #7a6f68;
  line-height: 1.7;
}

/* ============================================================
   BN-METRIC
============================================================ */
.bn-metric {
  padding: 48px 0;
  /* background: linear-gradient(135deg, #f5edd8 0%, #ede2c8 100%); */
  background: #f0f2f0;

}
.bn-metric__sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
  margin-bottom: 8px;
}
.bn-metric__gold-bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a);
  border-radius: 2px;
  margin-bottom: 12px;
}
.bn-metric__sec-title {
  /* font-family: "Playfair Display", serif; */
  font-size: 36px;
  font-weight: 700;
  color: #2a2218;
  margin-bottom: 12px;
}
.bn-metric__sec-desc {
  color: #7a6f68;
  font-size: 15px;
  line-height: 1.75;
}

.bn-metric__table-wrap {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.07);
  border: 1.5px solid #e5d9c0;
}
.bn-metric__table-head {
  background: linear-gradient(90deg, #2a2218, #3d2a14);
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.bn-metric__table-head-cell {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c9a84c;
}
.bn-metric__table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #eee6d4;
  transition: background 0.2s;
}
.bn-metric__table-row:last-child {
  border-bottom: none;
}
.bn-metric__table-row:hover {
  background: #fbf5e6;
}
.bn-metric__table-cell {
  padding: 16px 28px;
  font-size: 13.5px;
  color: #696969;
  font-weight: 600;
}
.bn-metric__table-cell--value {
  color: #a8862e;
  font-weight: 600;
}

.bn-metric__stat-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1.5px solid #e5d9c0;
  padding: 22px 16px;
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}
.bn-metric__stat-card:hover {
  border-color: #c9a84c;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.16);
}
.bn-metric__stat-num {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 800;
  color: #c9a84c;
  display: block;
  margin-bottom: 4px;
}
.bn-metric__stat-label {
  font-size: 12px;
  color: #7a6f68;
  line-height: 1.5;
}

/* ============================================================
   BN-COURT
============================================================ */
.bn-court {
  padding: 48px 0;
  /* background: #f2ede0; */
  background: #f7f8fa;
}

.bn-court__sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
  margin-bottom: 8px;
}
.bn-court__gold-bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a);
  border-radius: 2px;
  margin-bottom: 12px;
}
.bn-court__sec-title {
  /* font-family: "Playfair Display", serif; */
  font-size: 36px;
  font-weight: 700;
  color: #2a2218;
  margin-bottom: 12px;
}
.bn-court__sec-desc {
  color: #7a6f68;
  font-size: 15px;
  line-height: 1.75;
}

.bn-court__card {
  background: #ffffff;
  border: 1.5px solid #eee6d4;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition:
    border-color 0.32s,
    box-shadow 0.32s,
    transform 0.32s;
  height: 100%;
}
.bn-court__card:hover {
  border-color: #c9a84c;
  box-shadow: 0 14px 38px rgba(201, 168, 76, 0.17);
  transform: translateY(-6px);
}
.bn-court__card-badge {
  background: linear-gradient(135deg, #c9a84c, #a8862e);
  color: #1c1a18;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 11px;
  min-width: 68px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.28);
  line-height: 1.3;
  transition: transform 0.3s;
}
.bn-court__card:hover .bn-court__card-badge {
  transform: scale(1.1) rotate(-4deg);
}
.bn-court__card-title {
  /* font-family: "Playfair Display", serif; */
  font-size: 14px;
  font-weight: 700;
  color: #2a2218;
  margin-bottom: 5px;
}
.bn-court__card-text {
  font-size: 12px;
  color: #7a6f68;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   BN-CTA
============================================================ */
.bn-cta {
  padding: 88px 0;
  background: linear-gradient(135deg, #2a2218 0%, #3e2910 55%, #2a1c08 100%);
  position: relative;
  overflow: hidden;
}
.bn-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 380px;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 62%
  );
}
.bn-cta__geo {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.13);
  border-radius: 50%;
  animation: bn-hero-float 7s ease-in-out infinite;
}
.bn-cta__geo--1 {
  width: 220px;
  height: 220px;
  top: -70px;
  left: -70px;
}
.bn-cta__geo--2 {
  width: 130px;
  height: 130px;
  bottom: -40px;
  right: 60px;
  animation-delay: 2s;
}
.bn-cta__geo--3 {
  width: 80px;
  height: 80px;
  top: 40%;
  right: 25%;
  animation-delay: 1.2s;
}

.bn-cta__inner {
  position: relative;
  z-index: 2;
}

.bn-cta__sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
  margin-bottom: 8px;
}
.bn-cta__gold-bar {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d98a);
  border-radius: 2px;
  margin-bottom: 12px;
}
.bn-cta__title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}
.bn-cta__title-hl {
  color: #c9a84c;
}
.bn-cta__desc {
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 1.75;
}

.bn-cta__btn-primary {
  background: #c9a84c;
  color: #1c1a18;
  border: none;
  padding: 13px 30px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.32);
}
.bn-cta__btn-primary:hover {
  background: #a8862e;
  color: #ffffff;
  transform: translateY(-2px);
}

.bn-cta__btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.28);
  padding: 11px 28px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s;
}
.bn-cta__btn-outline:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

.bn-cta__stat-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid #ffffff85;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.bn-cta__stat-card:hover {
  background: rgba(201, 168, 76, 0.11);
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-4px);
}
.bn-cta__stat-num {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 800;
  color: #c9a84c;
  display: block;
}
.bn-cta__stat-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   BN-FOOT
============================================================ */
.bn-foot {
  background: #1c1a18;
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  padding: 22px 48px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bn-foot__logo-box {
  width: 28px;
  height: 28px;
  background: #c9a84c;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  color: #1c1a18;
  font-size: 13px;
}
.bn-foot__link {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.bn-foot__link:hover {
  color: #c9a84c;
}

/* ============================================================
   BN-ANIM — scroll reveal utilities
============================================================ */
.bn-anim-reveal,
.bn-anim-reveal-left,
.bn-anim-reveal-right {
  opacity: 0;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.bn-anim-reveal {
  transform: translateY(28px);
}
.bn-anim-reveal-left {
  transform: translateX(-28px);
}
.bn-anim-reveal-right {
  transform: translateX(28px);
}

.bn-anim-reveal.bn-anim--visible,
.bn-anim-reveal-left.bn-anim--visible,
.bn-anim-reveal-right.bn-anim--visible {
  opacity: 1;
  transform: none;
}
.bn-anim--d1 {
  transition-delay: 0.1s;
}
.bn-anim--d2 {
  transition-delay: 0.2s;
}
.bn-anim--d3 {
  transition-delay: 0.3s;
}
.bn-anim--d4 {
  transition-delay: 0.4s;
}
.bn-anim--d5 {
  transition-delay: 0.5s;
}
.bn-anim--d6 {
  transition-delay: 0.6s;
}

@keyframes bn-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .bn-hero__title {
    font-size: 40px;
  }
  .bn-why__sec-title,
  .bn-eco__sec-title,
  .bn-proc__sec-title,
  .bn-intel__sec-title,
  .bn-metric__sec-title,
  .bn-court__sec-title,
  .bn-cta__title {
    font-size: 30px;
  }
  .bn-proc__connector {
    display: none;
  }
}
@media (max-width: 768px) {
  .bn-hero {
    padding: 72px 0 56px;
  }
  .bn-hero__title {
    font-size: 34px;
  }
  .bn-foot {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px;
  }
}





