/* ================================================================
   BACK TO BENGAL — page-specific styles
   Built on top of assets/css/main.css design tokens (colors, type,
   spacing, radius, shadow). Structural colors use --color-* tokens;
   a few decorative gradient/border shades reuse literal hex values
   already established elsewhere on the site (e.g. the dark-variant
   pillar gradients in about/our-story.html, the .feature-card border).
   ================================================================ */

/* ----------------------------------------------------------------
   PRELOADER
   ---------------------------------------------------------------- */
.btb-preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at top right, #2a0f42 0%, var(--color-ink) 55%);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}

.btb-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.btb-preloader__inner {
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--sp3);
}

.btb-preloader__brand {
  font-family: var(--font-display, var(--font-base));
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -.02em;
  margin-bottom: var(--sp2);
}

.btb-preloader__btn {
  font-size: 18px;
  text-transform: uppercase;
}

.btb-preloader__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .55);
  margin-bottom: var(--sp4);
}

.btb-preloader__timer {
  display: grid;
  grid-template-rows: 1fr;
  justify-content: center;
  gap: 14px;
  margin-bottom: var(--sp5);
  overflow: hidden;
  transition: grid-template-rows .5s var(--ease), opacity .4s var(--ease), margin-bottom .5s var(--ease);
}

.btb-preloader__timer.is-done {
  grid-template-rows: 0fr;
  opacity: 0;
  margin-bottom: 0;
  pointer-events: none;
}

.btb-preloader__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  min-height: 0;
  overflow: hidden;
  transition: opacity .35s var(--ease), transform .4s var(--ease);
}

.btb-preloader__timer.is-done .btb-preloader__unit {
  opacity: 0;
  transform: scale(.85);
}

.btb-preloader__num {
  display: inline-block;
  font-size: clamp(32px, 67vw, 412px);
  font-weight: 600;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.btb-preloader__num.is-tick {
  animation: btbNumTick .45s cubic-bezier(.16, 1, .3, 1);
}

@keyframes btbNumTick {
  0% {
    opacity: 0;
    transform: translateX(48px) skewX(-10deg);
    filter: blur(6px);
  }

  55% {
    opacity: 1;
    transform: translateX(-6px) skewX(2deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) skewX(0);
  }
}

.btb-preloader__unit-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .55);
  margin-top: 6px;
}

.btb-preloader__sep {
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
  transform: translateY(-8px);
}

.btb-preloader__btn {
  animation: btbPreloaderBtnIn .5s var(--ease) both;
}

.btb-preloader__btn.is-hidden {
  display: none;
}

@keyframes btbPreloaderBtnIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------------------------------
   PAGE LAYOUT UTILITIES — shared across multiple sections below
   ---------------------------------------------------------------- */
.btb-section {
  padding: var(--sp7) 0;
}

.btb-section--mist {
  background: var(--color-mist);
}

.btb-photo-section {
  position: relative;
  isolation: isolate;
}

.btb-photo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bbbg.png') center / cover no-repeat;
  z-index: -2;
}

.btb-photo-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 10, .72);
  z-index: -1;
}

.btb-eyebrow-center {
  justify-content: center;
}

.btb-text-accent {
  color: var(--color-accent);
}

@media (min-width: 1300px) {
  .btb-sub-nowrap {
    max-width: none;
    white-space: nowrap;
  }
}

.btb-flex-col {
  display: flex;
}

.btb-card-static {
  cursor: default;
}

.btb-svg-fluid {
  width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------
   NAV — page-specific sticky bar (replaces the global mega-menu
   on this microsite: brand mark + anchor links + CTA)
   ---------------------------------------------------------------- */
.btb-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(111, 49, 159, .1);
  transform: translateY(0);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.btb-nav.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

.btb-nav.is-hidden {
  transform: translateY(-100%);
}

.btb-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp4);
  height: 76px;
}

.btb-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  color: inherit;
}

.btb-nav__brand:hover {
  color: inherit;
}

.btb-nav__logo {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
}

.btb-nav__brand-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btb-nav__brand-name {
  font-family: var(--font-display, var(--font-base));
  font-weight: 700;
  font-size: 26px;
  color: var(--color-ink);
  letter-spacing: -.2px;
  line-height: 1;
}

.btb-nav__brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #777;
  border-left: 1px solid rgba(0, 0, 0, .15);
  padding-left: 8px;
  line-height: 1;
}

.btb-nav__brand-logo {
  height: 16px;
  width: auto;
  display: block;
}

.btb-nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp4);
  margin-left: auto;
}

.btb-nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp4);
  margin: 0;
}

.btb-nav__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btb-nav__link:hover {
  color: var(--color-primary);
}

.btb-nav__cta {
  padding: 10px 22px;
  font-size: 16px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 1px;

}

.btb-nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.btb-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-ink);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

.btb-nav__toggle.is-active .btb-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.btb-nav__toggle.is-active .btb-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.btb-nav__toggle.is-active .btb-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btb-nav__mobile {
  display: none;
  flex-direction: column;
  padding: var(--sp1) var(--sp3) var(--sp4);
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid rgba(111, 49, 159, .1);
}

.btb-nav__mobile.is-open {
  display: flex;
}

.btb-nav__mobile-link {
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.btb-nav__mobile-link:hover {
  color: var(--color-primary);
}

.btb-nav__mobile-cta {
  width: 100%;
  justify-content: center;
  margin-top: var(--sp3);
}

@media (max-width: 991px) {

  .btb-nav__links,
  .btb-nav__cta {
    display: none;
  }

  .btb-nav__toggle {
    display: flex;
  }
}

@media (min-width: 992px) {
  .btb-nav__mobile {
    display: none !important;
  }
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.btb-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top right, #2a0f42 0%, var(--color-ink) 55%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  color: var(--color-white);
}

.btb-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.btb-hero__bg.is-active {
  opacity: 0.7;
}

.btb-hero__overlay-left {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(42, 15, 66, .85) 0%, rgba(42, 15, 66, .55) 35%, transparent 70%);
  pointer-events: none;
}

.btb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.btb-hero::after {
  content: '';
  position: absolute;
  top: -160px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(229, 129, 56, .16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.btb-hero__inner {
  position: relative;
  z-index: 1;
}

.btb-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(229, 129, 56, .35);
  background: rgba(229, 129, 56, .12);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: var(--sp4);
}

.btb-hero__title {
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--color-white) !important;
  margin-bottom: var(--sp4);
}

.btb-hero__title em {
  font-style: normal;
  color: var(--color-accent);
}

.btb-hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 0 var(--sp5);
}

.btb-hero__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.btb-hero__scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
  letter-spacing: .04em;
  z-index: 1;
  animation: btbBounce 2.2s ease-in-out infinite;
}

@keyframes btbBounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

/* ----------------------------------------------------------------
   STICKY QUICK-APPLY TAB — fixed to the viewport edge, only shown
   while the hero is in view (toggled via IntersectionObserver)
   ---------------------------------------------------------------- */
.btb-sticky-cta {
  position: fixed;
  /* now an <a> rather than a <button>, so kill the default underline */
  text-decoration: none;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--r-md) 0 0 var(--r-md);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease), background var(--dur-fast) var(--ease);
}

.btb-sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
}

.btb-sticky-cta:hover {
  background: var(--color-primary-dark);
}

@media (max-width: 991px) {
  .btb-sticky-cta {
    top: auto;
    right: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--r-pill);
  }
}

/* ----------------------------------------------------------------
   QUICK-APPLY MODAL
   ---------------------------------------------------------------- */
.btb-quickform-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp3);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.btb-quickform-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.btb-quickform-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 30, .6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btb-quickform-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 56px 0 var(--sp3);
  transform: translateY(16px) scale(.97);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.btb-quickform-modal.is-open .btb-quickform-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.btb-quickform-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: none;
  border-radius: 50%;
  color: var(--color-ink);
  font-size: 14px;
  cursor: pointer;
  box-shadow: var(--sh-md);
  transition: background var(--dur-fast) var(--ease);
}

.btb-quickform-modal__close:hover {
  background: #e5e0ec;
}

.btb-quickform-modal__title {
  font-size: 24px;
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--sp3);
}

/* ----------------------------------------------------------------
   ECOSYSTEM CHECKLIST (Why Bengal)
   ---------------------------------------------------------------- */
.btb-why-title {
  font-size: clamp(30px, 4vw, 44px);
}

@media (min-width: 1601px) {
  .btb-why-row>[class*="col-"]:not(.btb-journey-normal) {
    padding-right: 40px;
  }
}

@media (max-width: 1600px) {
  .btb-why-row .btb-journey-normal {
    margin-top: 40px;
  }
}

.btb-why-sub {
  max-width: 640px;
  margin-top: 16px;
}

.btb-eco-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-ink);
  margin: var(--sp4) 0 var(--sp2);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.btb-check-grid {
  column-count: 2;
  column-gap: 28px;
  margin-top: var(--sp3);
}

.btb-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-ink);
  text-align: left;
  break-inside: avoid;
}

.btb-check-item i {
  color: var(--color-success);
  font-size: 18px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   JOURNEY ILLUSTRATION PANEL
   ---------------------------------------------------------------- */
.btb-journey-normal {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* ----------------------------------------------------------------
   SVG MAP DECORATION — map label font (Opportunity Map SVG below)
   ---------------------------------------------------------------- */
.btb-map-font {
  font-family: var(--font-base);
}

.btb-why-imgbox {
  display: block;
  width: 100%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  background: var(--color-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}

/* ----------------------------------------------------------------
   STATS ROW (Bengal is Transforming)
   ---------------------------------------------------------------- */
.btb-stats-row {
  margin-bottom: var(--sp6);
}

.btb-stat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 460px;
  border-radius: var(--r-lg);
  padding: var(--sp4);
  box-shadow: var(--sh-md);
}

.btb-stat-card__head {
  margin-bottom: var(--sp3);
  padding-bottom: var(--sp3);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.btb-stat-card__icon {
  display: block;
  font-size: 20px;
  color: var(--color-ink);
  opacity: .4;
}

.btb-stat-card--c {
  background: #FFF2E8;
  border: 1.5px solid rgba(229, 129, 56, .25);
}

.btb-stat-card--c .btb-stat-card__icon,
.btb-stat-card--c .btb-stat-card__num {
  color: var(--color-accent);
}

.btb-stat-card--d {
  background: #E6FFED;
  border: 1.5px solid rgba(48, 175, 82, .25);
}

.btb-stat-card--d .btb-stat-card__icon,
.btb-stat-card--d .btb-stat-card__num {
  color: var(--color-success);
}

.btb-stat-card--b {
  background: var(--color-white);
  border: 1.5px solid rgba(48, 175, 82, .25);
}

.btb-stat-card--b .btb-stat-card__icon,
.btb-stat-card--b .btb-stat-card__num {
  color: var(--color-success);
}

.btb-stat-card__num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
  margin: 8px 0 4px;
  color: var(--color-ink);
}

.btb-stat-card__lbl {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, .6);
}

.btb-stat-card__row {
  margin-bottom: var(--sp3);
}

.btb-stat-card__row--source {
  margin-bottom: 0;
  margin-top: auto;
  padding-top: var(--sp3);
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.btb-stat-card__row-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(0, 0, 0, .4);
  margin-bottom: 4px;
}

.btb-stat-card__row-value {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0, 0, 0, .75);
  margin: 0;
}

.btb-stat-card__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}

.btb-stat-card__logo {
  height: 18px;
  width: auto;
  object-fit: contain;
}

/* ----------------------------------------------------------------
   INDUSTRY FLIP-REVEAL CARDS
   ---------------------------------------------------------------- */
.btb-ind-card {
  position: relative;
  height: 148px;
  border-radius: var(--r-md);
  border: 1px solid #ece7f2;
  background: var(--color-white);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--dur) var(--ease);
}

.btb-ind-card:hover {
  box-shadow: var(--sh-md);
}

@media (min-width: 768px) and (max-width: 1600px) {
  .btb-ind-card {
    height: 96px;
  }

  .btb-ind-card__front {
    gap: 6px;
  }

  .btb-ind-card__front i {
    font-size: 22px;
  }

  .btb-ind-card__front span {
    font-size: 16px;
  }
}

.btb-ind-card__front {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.btb-ind-card__front i {
  font-size: 28px;
  color: var(--color-primary);
}

.btb-ind-card__front span {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
  text-align: center;
}

.btb-ind-card:hover .btb-ind-card__front {
  transform: translateY(-100%);
  opacity: 0;
}

.btb-ind-card__back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-primary);
  transform: translateY(100%);
  transition: transform var(--dur) var(--ease), font-size var(--dur) var(--ease);
}

.btb-ind-card:hover .btb-ind-card__back {
  transform: translateY(0);
  font-size: 15px;
}

.btb-ind-card--success .btb-ind-card__back {
  background: var(--color-success);
}

.btb-ind-card--accent .btb-ind-card__back {
  background: var(--color-accent);
}

.btb-ind-card--ink .btb-ind-card__back {
  background: var(--color-ink);
}

/* ----------------------------------------------------------------
   WHY PROFESSIONALS ARE RETURNING
   ---------------------------------------------------------------- */
.btb-returning-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: url('../img/herobanner.png') center center / cover no-repeat;
  border-top: 1px solid rgba(0, 0, 0, .07);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  box-shadow: inset 0 1px 0 rgba(111, 49, 159, .08), inset 0 -1px 0 rgba(111, 49, 159, .08);
}

.btb-returning-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .78);
  pointer-events: none;
}

.btb-returning-inner {
  position: relative;
  z-index: 1;
}

.btb-returning-hdr {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--sp6);
}

.btb-returning-title {
  margin-top: 12px;
}

.btb-returning-sub {
  margin-top: 16px;
}

.btb-returning-cta {
  margin-top: var(--sp5);
  display: inline-flex;
}

/* ----------------------------------------------------------------
   OPPORTUNITY MAP
   ---------------------------------------------------------------- */
.btb-map-panel {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg);
  padding: var(--sp4);
  min-height: 300px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes btb-map-panel-pulse {
  from {
    opacity: .4;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btb-map-panel--pulse {
  animation: btb-map-panel-pulse .35s var(--ease);
}

.btb-map-panel__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 2px;
}

.btb-map-panel__subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: var(--sp3);
}

.btb-map-panel__label {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}

.btb-map-panel__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
}

.btb-map-panel__value--demand {
  color: var(--color-success);
}

.btb-demand-meter {
  margin-top: 8px;
  height: 6px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}

.btb-demand-meter__fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--color-success);
  transition: width var(--dur-slow) var(--ease);
}

.btb-demand-meter__fill--l1 {
  width: 20%;
}

.btb-demand-meter__fill--l2 {
  width: 40%;
}

.btb-demand-meter__fill--l3 {
  width: 60%;
}

.btb-demand-meter__fill--l4 {
  width: 80%;
}

.btb-demand-meter__fill--l5 {
  width: 100%;
}

.btb-map-panel__insight {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}

.btb-map-frame {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 1600px) {
  .btb-map-frame {
    max-width: 420px;
    margin: 0 auto;
  }
}

.btb-opportunity-sub {
  max-width: 880px;
}

.btb-map-wb-dots {
  fill: rgba(255, 255, 255, .28);
}

/* ----------------------------------------------------------------
   CITY QUICK-JUMP PILLS (Opportunity Map, left side)
   ---------------------------------------------------------------- */
.btb-city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: var(--sp3) 0 var(--sp4);
}

.btb-city-pill {
  appearance: none;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-pill);
  color: rgba(255, 255, 255, .75);
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.btb-city-pill:hover {
  border-color: rgba(255, 255, 255, .35);
  color: var(--color-white);
}

.btb-city-pill.is-active {
  background: var(--color-success);
  border-color: var(--color-success);
  color: var(--color-white);
}

.btb-map-dot {
  cursor: pointer;
}

.btb-map-dot__core {
  fill: var(--color-accent);
  transform-box: fill-box;
  transform-origin: center;
  transition: fill var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.btb-map-dot:hover .btb-map-dot__core,
.btb-map-dot.is-active .btb-map-dot__core {
  fill: var(--color-success);
  transform: scale(1.3);
}

/* Themed "current selection" ping — animated via SMIL <animate>, shown only on .is-active */
.btb-map-dot__ring {
  display: none;
  fill: none;
  stroke: var(--color-success);
  stroke-width: 2;
}

.btb-map-dot.is-active .btb-map-dot__ring {
  display: block;
}

.btb-map-label {
  font-size: 13px;
  font-weight: 600;
  fill: rgba(255, 255, 255, .55);
  pointer-events: none;
  transition: fill var(--dur-fast) var(--ease);
}

.btb-map-label--active {
  fill: var(--color-accent);
  font-weight: 700;
}

.btb-city-pill.is-preview {
  border-color: rgba(255, 255, 255, .35);
  color: var(--color-white);
}

.btb-map-dot.is-preview .btb-map-dot__core {
  fill: var(--color-success);
  transform: scale(1.15);
}

.btb-map-label.is-preview {
  fill: var(--color-white);
}

/* ----------------------------------------------------------------
   ADVANTAGE COMPARISON BARS
   ---------------------------------------------------------------- */
.btb-advantage-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.btb-bar-row {
  display: flex;
  align-items: center;
  gap: var(--sp3);
  margin-bottom: var(--sp4);
}

.btb-bar-row:last-child {
  margin-bottom: 0;
}

.btb-bar-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: #f4f0fa;
  color: var(--color-primary);
  font-size: 20px;
}

.btb-bar-row__body {
  flex: 1;
  min-width: 0;
}

.btb-bar-row__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.btb-bar-track {
  position: relative;
  min-height: 48px;
  background: var(--color-mist);
  border-radius: var(--r-pill);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.btb-bar-fill {
  flex-shrink: 0;
  min-height: 100%;
  width: 0%;
  display: flex;
  align-items: center;
  padding: 10px 18px;
  transition: width 1.3s var(--ease);
}

.btb-bar-fill span {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.btb-bar-fill--accent {
  background: var(--color-accent);
}

.btb-bar-fill--success {
  background: var(--color-success);
}

.btb-bar-fill--primary {
  background: var(--color-primary);
}

.btb-bar-fill--blue {
  background: #2F6FE0;
}

.btb-bar-fill--teal {
  background: #12A594;
}

.btb-bar-fill--red {
  background: #DC3F3F;
}

.btb-bar-other {
  flex: 1;
  min-width: 0;
  border-left: 2px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 18px;
}

.btb-bar-other span {
  font-size: 12px;
  font-weight: 600;
  color: #777;
  text-align: right;
  line-height: 1.4;
}

.btb-advantage-sources {
  max-width: 900px;
  margin: var(--sp4) auto 0;
  font-size: 12px;
  color: #999;
  text-align: center;
}

/* ----------------------------------------------------------------
   TESTIMONIAL SCROLL STRIP (reuses .testi-card from main.css)
   ---------------------------------------------------------------- */
.btb-testi-title {
  color: #fff !important;
}

.btb-testi-color--purple {
  --tc-color-a: var(--color-primary-light);
  --tc-color-b: #3d1060;
}

.btb-testi-color--orange {
  --tc-color-a: var(--color-accent);
  --tc-color-b: #7a3200;
}

.btb-testi-color--green {
  --tc-color-a: var(--color-success);
  --tc-color-b: #0e6b3c;
}

/* ----------------------------------------------------------------
   PROCESS STEP — extended body (title + description under the
   existing .process-step__num circle from main.css)
   ---------------------------------------------------------------- */
.btb-step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
  margin: var(--sp2) 0 6px;
}

.btb-step__body {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.btb-join-title {
  font-size: clamp(22px, 4.5vw, 52px);
}

.btb-join-hdr {
  max-width: 680px;
  margin: 0 auto var(--sp5);
}

.btb-join-sub {
  margin: 0 auto;
}

.btb-join-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp5);
  box-shadow: var(--sh-lg);
}

/* Zoho-hosted embed. The iframe fills the card edge to edge, so the card
   contributes only the rounded corner and the shadow - hence no padding and
   no white background, which would otherwise frame Zoho's own gradient.
   Wider than the stock card because Zoho's form column is ~780px and gets
   cramped below that. The two-class selector keeps these winning over the
   responsive `.btb-join-card { padding }` override further down. */
.btb-join-card--embed {
  max-width: 900px;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, .04);
}

/* Zoho ships nine script bundles and takes a few seconds to paint, which
   would otherwise leave an unexplained empty box on a dark section. This
   placeholder sits behind the frame and needs no JS: an unloaded iframe is
   transparent, and Zoho's own opaque background covers this the moment it
   renders. */
.btb-join-card--embed::before {
  content: "Loading the form\2026";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-base);
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
}

.btb-zoho-form {
  display: block;
  /* positioned so it paints over the loading placeholder above */
  position: relative;
  width: 100%;
  /* Zoho sizes its card to the frame and scrolls the fields inside it, so
     this has to clear the tallest page (step 3: six checkboxes, a dropdown,
     a textarea and the consent line) which needs ~780px of card. */
  height: 900px;
  border: 0;
}

/* Fields stack single-column on narrow screens, so the form needs more room. */
@media (max-width: 768px) {
  .btb-zoho-form {
    height: 1150px;
  }
}

.btb-partner-hdr {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------------
   MULTI-STEP FORM
   ---------------------------------------------------------------- */
.btb-form-progress {
  margin-bottom: var(--sp4);
}

.btb-form-progress__labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #b8b8b8;
  margin-bottom: 8px;
  padding: 0 2px;
}

.btb-form-progress__labels span.is-active {
  color: var(--color-primary);
}

.btb-form-progress__track {
  width: 100%;
  height: 6px;
  background: var(--color-mist);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.btb-form-progress__fill {
  height: 100%;
  width: 33.33%;
  background: var(--color-accent);
  border-radius: var(--r-pill);
  transition: width .4s var(--ease);
}

.btb-form-step {
  display: none;
}

.btb-form-step.is-active {
  display: block;
  animation: btbFadeIn .4s var(--ease);
}

@keyframes btbFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btb-form-step__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--sp3);
}

.btb-form-group {
  margin-bottom: var(--sp3);
}

.btb-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.btb-required {
  color: #dc3545;
  margin-left: 3px;
}

.btb-form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1.5px solid #e4e0ec;
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.btb-form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(111, 49, 159, .1);
}

.btb-form-control.is-invalid {
  border-color: #dc3545;
}

.btb-form-control.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(220, 53, 69, .1);
}

.btb-field-error {
  display: none;
  font-size: 12px;
  color: #dc3545;
  margin: 6px 0 0;
}

select.btb-form-control {
  cursor: pointer;
}

.btb-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}

.btb-checkbox-grid.is-invalid {
  outline: 1.5px solid #dc3545;
  outline-offset: 6px;
  border-radius: var(--r-sm);
}

.btb-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-ink);
  cursor: pointer;
}

.btb-checkbox-item input {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.btb-consent-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-mist);
  border: 1px solid #ece7f2;
  border-radius: var(--r-md);
  padding: 16px;
  margin-top: var(--sp3);
}

.btb-consent-box input {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.btb-consent-box label {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.btb-form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--sp4);
}

.btb-form-nav--end {
  justify-content: flex-end;
}

.btb-textarea-fixed {
  resize: none;
}

.btb-form-back {
  background: none;
  border: none;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
}

.btb-form-back:hover {
  color: var(--color-primary);
}

/* ----------------------------------------------------------------
   THANK-YOU STATE
   ---------------------------------------------------------------- */
.btb-thankyou {
  display: none;
  text-align: center;
  padding: var(--sp5) 0;
}

.btb-thankyou-title {
  font-size: 32px;
}

.btb-thankyou-sub {
  max-width: 420px;
  margin: 0 auto var(--sp4);
}

.btb-thankyou.is-active {
  display: block;
  animation: btbFadeIn .5s var(--ease);
}

.btb-thankyou__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #e6ffed;
  color: var(--color-success);
  font-size: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp3);
}

/* ----------------------------------------------------------------
   TESTIMONIALS — image panel removed (page-scoped only; the shared
   .testi-card rules in main.css, and the home page, stay untouched)
   ---------------------------------------------------------------- */
.testi-card.btb-testi-noimg {
  height: auto;
  min-height: 280px;
}

.btb-testi-noimg .testi-card__body {
  display: flex;
  flex-direction: column;
}

.btb-testi-noimg .testi-card__stars {
  margin-top: 0;
}

.btb-testi-noimg .testi-card__quote {
  flex: 1;
}

.btb-testi-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: var(--sp3);
  padding-top: var(--sp3);
  border-top: 1px solid #f0ecf5;
}

.btb-testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--tc-color-a, #6f31a0), var(--tc-color-b, #2a0a50));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.btb-testi-who {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.btb-testi-who strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.3;
}

.btb-testi-who span {
  font-size: 13px;
  color: #777;
  line-height: 1.3;
}

/* ----------------------------------------------------------------
   WHY PARTNER WITH 2COMS — modern icon-card grid
   ---------------------------------------------------------------- */
.btb-role-card {
  background: var(--color-white);
  border-radius: var(--r-lg);
  padding: var(--sp4);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.btb-role-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}

.btb-role-card__num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 44px;
  font-weight: 800;
  color: var(--color-mist);
  line-height: 1;
  z-index: 0;
}

.btb-role-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--sp3);
  position: relative;
  z-index: 1;
}

.btb-role-card--primary .btb-role-card__icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.btb-role-card--success .btb-role-card__icon {
  background: linear-gradient(135deg, var(--color-success), #1a9e55);
}

.btb-role-card--accent .btb-role-card__icon {
  background: linear-gradient(135deg, var(--color-accent), #7a3200);
}

.btb-role-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.btb-role-card__body {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */

/* Bootstrap's col-lg-* classes switch at the framework's fixed 992px
   breakpoint and can't be reconfigured — override them here so every
   two-column / grid section keeps its tablet (921px) arrangement all
   the way up to 1600px; only above that does the desktop grid apply. */
@media (min-width: 992px) and (max-width: 1600px) {

  /* The Numbers — stay 2-per-row instead of 4-across */
  .btb-stats-row .col-lg-3 {
    flex: 0 0 auto;
    width: 50%;
  }

  /* Industry cards — stay 3-2 centered instead of 5-across */
  .row.justify-content-center>.col-lg {
    flex: 0 0 auto;
    width: 33.3333%;
  }

  /* Why Bengal — stay stacked instead of 50/50 side-by-side */
  .btb-why-row>.col-lg-6 {
    flex: 0 0 auto;
    width: 100%;
  }

  /* Opportunity Map — stay stacked instead of 58/42 side-by-side */
  .col-lg-7.reveal,
  .col-lg-5.reveal.reveal--d1 {
    flex: 0 0 auto;
    width: 100%;
  }

  /* The Return — stay stacked instead of 33/67 side-by-side
     (the 4 story cards inside keep their own 2-per-row via col-md-6) */
  .btb-returning-row>.col-lg-4,
  .btb-returning-row>.col-lg-8 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 1600px) {

  .btb-hero__title br,
  .btb-hero__sub br,
  .btb-why-title br,
  .btb-join-title br,
  .cta-banner__title br {
    display: none;
  }

  .btb-hero {
    padding: 140px 0 96px;
    min-height: auto;
  }

  .btb-form-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.btb-footer {
  background: var(--color-mist);
  border-top: 1px solid rgba(0, 0, 0, .06);
  padding-top: var(--sp7);
}

.btb-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp6);
  justify-content: space-between;
  padding-bottom: var(--sp6);
}

.btb-footer__cols {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: var(--sp6);
}

.btb-footer__col {
  flex: 1;
  min-width: 0;
}

.btb-footer__brand {
  max-width: 420px;
}

.btb-footer__title {
  font-family: var(--font-display, var(--font-base));
  font-weight: 700;
  font-size: 26px;
  color: var(--color-ink);
  margin-bottom: var(--sp2);
}

.btb-footer__tagline {
  color: rgba(0, 0, 0, .6);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: var(--sp3);
}

.btb-footer__social {
  display: flex;
  gap: 10px;
}

.btb-footer__social-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .05);
  color: var(--color-ink);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.btb-footer__social-a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.btb-footer__col-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-accent);
  margin-bottom: var(--sp3);
}

.btb-footer__link {
  display: block;
  color: rgba(0, 0, 0, .65);
  font-size: 15px;
  text-decoration: none;
  margin-bottom: var(--sp2);
  transition: color var(--dur-fast) var(--ease);
}

.btb-footer__link:hover {
  color: var(--color-ink);
}

.btb-footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding: var(--sp3) 0;
}

.btb-footer__copy {
  color: rgba(0, 0, 0, .5);
  font-size: 13px;
  text-align: center;
  margin: 0;
}

/* ----------------------------------------------------------------
   COME HOME CTA — override sitewide h2 { color: ink !important; }
   reset so this banner's heading stays white
   ---------------------------------------------------------------- */

/* main.css sets `background: url(ctabanner.png) ...` as a shorthand, which
   resets background-color to transparent. If that image fails to load the
   section goes white and the white heading below becomes invisible, so
   pin a solid fallback underneath it. */
.cta-banner {
  background-color: var(--color-ink);
}

.cta-banner__title {
  color: var(--color-white) !important;
}

@media (max-width: 767px) {
  .btb-check-grid {
    column-count: 1;
  }

  .btb-nav__brand-name {
    font-size: 19px;
  }

  .btb-nav__brand-tag {
    font-size: 10px;
    padding-left: 6px;
  }

  .btb-nav__brand-logo {
    height: 12px;
  }

  .btb-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  .btb-footer__top {
    flex-direction: column;
    gap: var(--sp5);
  }

  .btb-footer__cols {
    width: 100%;
    gap: var(--sp3);
  }

  .btb-ind-card {
    height: 68px;
  }

  .btb-ind-card__front {
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 20px;
    gap: 16px;
  }

  .btb-ind-card__front i {
    font-size: 22px;
  }

  .btb-ind-card__front span {
    font-size: 16px;
    text-align: left;
  }

  /* Testimonials — static stacked list instead of the auto-scroll marquee */
  .testi-marquee {
    mask-image: none;
    -webkit-mask-image: none;
    padding: 0 var(--sp2);
  }

  .testi-track {
    flex-direction: column;
    width: 100%;
    animation: none;
    gap: 20px;
  }

  .testi-card {
    width: 100%;
  }

  .testi-track [aria-hidden="true"] {
    display: none;
  }

  /* Forms — tighter spacing on small screens */
  .btb-join-card {
    padding: var(--sp3);
  }

  .btb-form-progress {
    margin-bottom: var(--sp3);
  }

  .btb-form-step__title {
    font-size: 19px;
    margin-bottom: var(--sp2);
  }

  .btb-form-group {
    margin-bottom: var(--sp2);
  }

  .btb-form-label {
    margin-bottom: 5px;
  }

  .btb-form-control {
    padding: 11px 14px;
  }

  .btb-form-nav {
    margin-top: var(--sp3);
  }

  .btb-quickform-modal__panel {
    padding: 44px 0 var(--sp2);
  }
}

/* ----------------------------------------------------------------
   ASK AI FOOTER WIDGET — stack centered under 615px
   ---------------------------------------------------------------- */
@media (max-width: 615px) {
  .footer-ask-ai {
    flex-direction: column;
    text-align: center;
  }

  .footer-ask-ai__btns {
    margin-left: 0;
  }
}
/* ----------------------------------------------------------------
   SERVER-SIDE FORM STATES
   Rendered only when a POST fails validation, so the page in its
   normal state is visually unchanged. Uses the same #dc3545 error
   colour as the existing .btb-field-error / .is-invalid styles.
   ---------------------------------------------------------------- */
.btb-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.btb-form-summary {
  border: 1px solid rgba(220, 53, 69, .3);
  background: rgba(220, 53, 69, .05);
  border-radius: var(--r-md);
  padding: var(--sp2);
  margin-bottom: var(--sp3);
}

.btb-form-summary__title {
  font-size: 14px;
  font-weight: 500;
  color: #dc3545;
  margin: 0 0 var(--sp1);
}

.btb-form-summary ul {
  margin: 0;
  padding-left: var(--sp3);
  font-size: 13px;
}
