/* Resetting default browser styles */

:root {
  --wb-bg: #f6f9ff;
  --wb-surface: rgba(255, 255, 255, 0.78);
  --wb-surface-strong: #ffffff;
  --wb-text: #111827;
  --wb-muted: #64748b;
  --wb-blue: #1877f2;
  --wb-blue-hover: #0b5ed7;
  --wb-green: #16a34a;
  --wb-border: rgba(24, 119, 242, 0.18);
  --wb-blue-glow: rgba(24, 119, 242, 0.22);
  --wb-green-glow: rgba(22, 163, 74, 0.18);
  --wb-hero-title-size: clamp(44px, 5vw + 0.75rem, 62px);
  --wb-hero-title-line: 1.06;
}

/* Make box model predictable: include padding/border in width calculations */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Make images responsive by default */
img,
picture,
video,
svg {
  max-width: 100%;
  height: auto;
  /* display: block; */
}

/* Prevent accidental horizontal scrolling from animations and decorative layers. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Hide form */
form#_form_66F3333A5D9AA_ {
  display: none !important;
}

/* Setting up basic styles */
body {
  font-family: 'brother-1816', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--wb-text);
  background-color: var(--wb-bg);
  line-height: 1.6;
}

h1 {
  font-size: 40px;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 32px;
  margin-bottom: 0.5rem;
}

.title {
  font-size: 90px;
  font-weight: 800;
}

.sub-page-title {
  font-size: 68px;
  font-weight: 800;
  line-height: 100px;
}

.subtitle {
  font-size: 28px;
}

.subtext {
  font-size: 20px;
  line-height: 2rem;
}

.fw-600 {
  font-weight: 600;
}

.fw-900 {
  font-weight: 900;
}

p {
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.w-90 {
  width: 90% !important;
}

.w-xl-10 {
  width: 10% !important;
}

.pt-3-5 {
  padding-top: 1.5rem !important;
}

.pt-6 {
  padding-top: 6rem;
}

.pt-20 {
  padding-top: 20rem;
}

a.nav-link {
  border-bottom: 2px solid transparent !important;
  font-size: 13px;
}

a.nav-link:hover {
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
}

a.nav-link.active,
.navbar.bg-black .nav-link.active {
  border-bottom: 2px solid var(--wb-blue) !important;
  border-radius: 0 !important;
}

.navbar.bg-black .nav-link::after {
  content: '';
  position: absolute;
  right: auto;
  bottom: -2px;
  left: 50%;
  width: 4px;
  height: 2px;
  background: var(--wb-blue);
  border-radius: 999px;
  opacity: 0;
  transform: translateX(-50%);
  transition:
    opacity 0.2s ease,
    width 0.2s ease;
}

.navbar.bg-black .nav-link:hover::after {
  opacity: 1;
}

/* ---------------------------------------------------------------------- BOOTSTRAP OVERRIDES */
a.text-secondary a.text-secondary {
  color: #91989f !important;
  background-color: transparent !important;
}

a.text-secondary:focus,
a.text-secondary:hover {
  color: #91989f !important;
  background-color: transparent !important;
}

.btn-primary {
  background: var(--wb-blue);
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 18px var(--wb-blue-glow);
}

.btn {
  font-size: 18px;
}

.bg-danger {
  background: var(--wb-blue) !important;
}

.accordion-button {
  line-height: normal !important;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: #000000;
  border-color: #000000;
}

.text-success {
  color: var(--wb-green) !important;
  text-shadow: 0 0 14px var(--wb-green-glow);
}

.bg-success {
  background-color: var(--wb-green) !important;
}

.border-success {
  border-color: var(--wb-green) !important;
}

.btn-primary:hover {
  background: var(--wb-blue-hover) !important;
  box-shadow: 0 0 22px var(--wb-blue-glow);
}

.btn-outline-primary {
  color: var(--wb-blue) !important;
  font-weight: 600;
}

.btn-outline-primary:hover {
  color: white !important;
}

.bg-black {
  background: var(--wb-surface);
  color: var(--wb-text);
  border: 1px solid var(--wb-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar.bg-black {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(8, 17, 31, 0.96)), radial-gradient(circle at 16% 0%, rgba(24, 119, 242, 0.22), transparent 30%) !important;
  border: 0;
  border-bottom: 1px solid rgba(24, 119, 242, 0.22);
  box-shadow:
    0 10px 26px rgba(15, 23, 42, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar.bg-black .nav-link {
  color: rgba(255, 255, 255, 0.86) !important;
}

.navbar.bg-black .nav-link:hover,
.navbar.bg-black .nav-link.active {
  color: #ffffff !important;
}

#footer.bg-black {
  background: radial-gradient(circle at 18% 0%, rgba(24, 119, 242, 0.16), transparent 32%), linear-gradient(180deg, #08111f, #050b14 72%) !important;
  color: rgba(255, 255, 255, 0.86) !important;
  border: 0;
  border-top: 1px solid rgba(24, 119, 242, 0.18);
}

#footer.bg-black h6,
#footer.bg-black p {
  color: rgba(255, 255, 255, 0.84) !important;
}

#footer.bg-black a.text-secondary {
  color: rgba(255, 255, 255, 0.62) !important;
}

#footer.bg-black a.text-secondary:hover {
  color: #ffffff !important;
}

.btn-clear {
  height: fit-content;
  width: fit-content;
  background: transparent;
  border: 0;
  padding: 0;
}

.nav-link {
  font-size: 11px;
  position: relative;
  text-decoration: none;
}

.nav-link:hover {
  opacity: 0.8;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-13 {
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.btn-outline-primary {
  border-color: var(--wb-blue);
  color: var(--wb-blue);
}

.btn-outline-primary:hover {
  background-color: var(--wb-blue);
  border-color: var(--wb-blue);
}

a.text-secondary:focus,
a.text-secondary:hover {
  color: #91989f !important;
}

.btn-outline-dark:hover {
  background-color: var(--wb-blue);
  border-color: var(--wb-blue);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--wb-blue) !important;
}

.dropdown-item:hover {
  background-color: rgba(24, 119, 242, 0.12) !important;
  color: var(--wb-blue-hover) !important;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #ffffff !important;
}

/* ----------------------------------------------------------------------- HELPERS */
.bg-traspar-black {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--wb-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mt-neg-13 {
  margin-top: -13em;
}

.text-justify {
  text-align: justify;
}

.mb-neg-20 {
  margin-bottom: -20px;
}
.min-h-177 {
  min-height: 177px;
}
.h-80 {
  height: 80%;
}

.w-45 {
  width: 45px !important;
}

.end-38 {
  right: 38px;
}

.h-119 {
  height: 119px;
  width: auto;
}

.h-155 {
  height: 155px;
  width: 100%;
}
.z-index-999 {
  z-index: 999 !important;
}

.z-index-minus-999 {
  z-index: -999 !important;
}

.hover-glide-up {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform: translateY(0);
}
.hover-glide-up:hover {
  transform: translateY(-10px); /* Move up by 20px */
}

.hover-glide-right {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform: translateX(0);
}

.hover-glide-right:hover {
  transform: translateX(5px);
}

.glow-red:hover {
  box-shadow: 0 0 20px 0px var(--wb-blue-glow);
}

.col-12.text-center.neg-mt-70 {
  margin-top: -70px;
}

.hide {
  display: none !important;
}

.ch-lth-half {
  width: 12ch;
}

.bg-wb-red {
  background: var(--wb-blue) !important;
}

.bg-charcol {
  background-color: var(--wb-surface) !important;
  border: 1px solid var(--wb-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bg-transpar {
  background-color: transparent !important;
}

.fs-small {
  font-size: 13px;
}

.fs- .mt-ng-4 {
  margin-top: -4rem;
}

.text-wb-red {
  color: var(--wb-blue);
}

.text-bg-wb-red {
  background: var(--wb-blue);
  color: #ffffff;
}

.skew {
  transform: skew(-7deg, 0deg);
}

.bg-lt-grey {
  background: var(--wb-surface);
  border: 1px solid var(--wb-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.border-bbt-red {
  border-color: var(--wb-blue) !important;
}

.rounded-20 {
  border-radius: 20px !important;
}

.wb-different-cards {
  align-items: stretch;
}

.wb-different-cards > [class*='col-'] {
  display: flex;
}

.wb-different-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 440px;
  overflow: hidden;
  background: var(--wb-surface-strong) !important;
  border: 1px solid var(--wb-border) !important;
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.wb-different-card:hover {
  background: var(--wb-surface-strong) !important;
  border-color: rgba(24, 119, 242, 0.42) !important;
  box-shadow: 0 18px 48px var(--wb-blue-glow);
  transform: translateY(-6px);
}

.wb-different-card__image {
  height: 235px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: rgba(24, 119, 242, 0.08);
}

.wb-different-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.wb-different-card:hover .wb-different-card__image img {
  transform: scale(1.06);
}

.wb-different-card__body {
  flex: 1;
  padding: 24px 24px 30px;
  background: var(--wb-surface-strong);
}

.wb-different-card__body h4 {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  color: var(--wb-text);
}

.wb-different-card__body h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 32px;
  height: 3px;
  background: var(--wb-blue);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.wb-different-card:hover .wb-different-card__body h4::after {
  width: 44px;
}

#sandbox .wb-different-card__body p {
  margin-bottom: 0;
  color: var(--wb-muted);
  font-size: 16px;
  line-height: 1.78;
}

.chatroom-success .wb-different-card__body p {
  margin-bottom: 0;
  color: var(--wb-muted);
  font-size: 16px;
  line-height: 1.78;
}

.education-training-cards .wb-different-card__body p {
  margin-bottom: 0;
  color: var(--wb-muted);
  font-size: 16px;
  line-height: 1.78;
}

.technology-benefit-cards .wb-different-card__body p {
  margin-bottom: 0;
  color: var(--wb-muted);
  font-size: 16px;
  line-height: 1.78;
}

.psychology-benefit-cards .wb-different-card__body p {
  margin-bottom: 0;
  color: var(--wb-muted);
  font-size: 16px;
  line-height: 1.78;
}

.section-heading,
.section-feature-heading {
  max-width: 960px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading--left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-heading__eyebrow,
.section-feature-heading__eyebrow {
  margin-bottom: 14px;
  color: var(--wb-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading__title,
.section-feature-heading h2 {
  margin-bottom: 22px;
  color: var(--wb-text) !important;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.section-heading__title span,
.section-heading__title strong,
.section-feature-heading h2 span {
  color: var(--wb-blue);
  font-weight: 800;
}

.section-heading__text,
.section-feature-heading__text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--wb-muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading--left .section-heading__text {
  margin-left: 0;
}

@media (min-width: 1200px) {
  .section-heading--responsive-left {
    margin-left: 0;
    text-align: left;
  }

  .section-heading--responsive-left .section-heading__text {
    margin-left: 0;
  }
}

.chatroom-success .wb-different-card__body h4::after,
.education-training-cards .wb-different-card__body h4::after,
.technology-benefit-cards .wb-different-card__body h4::after,
.psychology-benefit-cards .wb-different-card__body h4::after {
  display: none;
}

.chatroom-success .wb-different-card__body h4,
.education-training-cards .wb-different-card__body h4,
.technology-benefit-cards .wb-different-card__body h4,
.psychology-benefit-cards .wb-different-card__body h4 {
  margin-bottom: 12px;
}

.chatroom-success-card__icon,
.education-training-card__icon,
.technology-benefit-card__icon,
.psychology-benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  color: var(--wb-blue);
  background: rgba(24, 119, 242, 0.08);
  border-radius: 14px;
  font-size: 24px;
}

.psychology-courses .bg-white.border.rounded-20.p-4 {
  padding: 26px !important;
  background: var(--wb-surface-strong) !important;
  border: 1px solid rgba(100, 116, 139, 0.18) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.psychology-courses .bg-white.border.rounded-20.p-4 > .row {
  margin-bottom: 0 !important;
}

.psychology-courses .bg-white.border.rounded-20.p-4 h4 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.25;
}

.psychology-courses .bg-white.border.rounded-20.p-4 h5 {
  margin-bottom: 10px;
  font-size: 17px;
}

.psychology-courses .bg-white.border.rounded-20.p-4 p {
  font-size: 15px;
  line-height: 1.65;
}

.psychology-courses .bg-white.border.rounded-20.p-4 .row.my-4 {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

.psychology-courses .bg-white.border.rounded-20.p-4 img.rounded-circle {
  width: 46px;
  height: 46px;
  object-fit: cover;
}

.psychology-courses .bg-white.border.rounded-20.p-4 .btn {
  padding: 10px 20px !important;
  font-size: 13px !important;
}

.psychology-courses .list-group {
  padding-left: 0;
  background: transparent !important;
}

.psychology-courses .list-group-numbered {
  list-style-position: inside;
}

.psychology-courses .list-group-item {
  padding: 9px 0 !important;
  color: var(--wb-text) !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(100, 116, 139, 0.22) !important;
  box-shadow: none !important;
}

.psychology-courses .list-group-item:hover {
  border-color: rgba(100, 116, 139, 0.22) !important;
  box-shadow: none !important;
}

.psychology-courses .list-group-item:first-child {
  border-top: 0 !important;
}

.psychology-courses .list-group-item:last-child {
  border-bottom: 0 !important;
}

#education-path .education-path-heading {
  margin-bottom: 44px;
}

.education-path-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.education-path-card {
  position: relative;
  overflow: hidden;
  background: var(--wb-surface-strong);
  border: 1px solid rgba(100, 116, 139, 0.18);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.education-path-card:hover {
  border-color: rgba(24, 119, 242, 0.42);
  box-shadow: 0 18px 48px var(--wb-blue-glow);
  transform: translateY(-5px);
}

.education-path-card__image {
  position: relative;
  height: 142px;
  overflow: hidden;
  background: rgba(24, 119, 242, 0.08);
}

.education-path-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
  transition: transform 0.4s ease;
}

.education-path-card:hover .education-path-card__image img {
  transform: scale(1.24);
}

.education-path-card__number {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--wb-blue);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 10px 22px var(--wb-blue-glow);
  font-size: 13px;
  font-weight: 800;
}

.education-path-card__body {
  min-height: 124px;
  padding: 18px 18px 20px;
}

.education-path-card__body h3 {
  margin-bottom: 8px;
  color: var(--wb-text) !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.education-path-card__body p {
  margin-bottom: 0;
  color: var(--wb-muted);
  font-size: 13px;
  line-height: 1.55;
}

.education-path-steps__arrow {
  display: inline-flex;
  justify-content: center;
  color: rgba(100, 116, 139, 0.32);
  font-size: 24px;
}

@media (max-width: 1199.98px) {
  .education-path-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .education-path-steps__arrow {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .wb-different-card__image {
    height: 220px;
  }

  .education-path-steps {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .section-feature-heading,
  .pricing-plans__header,
  .compare-memberships__header {
    margin-bottom: 34px;
  }

  .section-heading__title,
  .pricing-plans__header h2,
  .compare-memberships__header h2,
  .section-feature-heading h2 {
    font-size: 38px;
    max-width: none;
    line-height: 1.08;
  }

  .section-heading__text,
  .pricing-plans__header p,
  .compare-memberships__header p,
  .section-feature-heading__text {
    font-size: 15px;
  }
}

.rounded-start-20 {
  border-radius: 20px 0 0 20px;
}

.text-underline {
  text-decoration: underline !important;
}

.btn-pill {
  /* border-radius: 50px; */
  cursor: pointer;
}

section .btn-primary.btn-pill,
.home-hero__actions .btn-primary.btn-pill,
.family-section__button,
.final-cta__button {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 700;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 15px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-42 {
  font-size: 42px;
}

h2.fs-42 {
  max-width: none;
  color: var(--wb-text) !important;
  font-size: clamp(38px, 4vw, 54px) !important;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h2.fs-42 span,
h2.fs-42 strong {
  color: var(--wb-blue);
  font-weight: 800;
}

.box-title h2 {
  max-width: none;
  margin-bottom: 22px;
  color: var(--wb-text) !important;
  font-size: clamp(38px, 4vw, 54px) !important;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.box-title h2 span,
.box-title h2 strong {
  color: var(--wb-blue);
  font-weight: 800;
}

.fs-26 {
  font-size: 26px;
}

.fs-33 {
  font-size: 33px;
}

.fs-35 {
  font-size: 35px;
}

/* Pricing cards: force column layout so footers (buttons) align at the bottom */
.row.gx-3.container-inner > [class*='col-'] > .rounded-4 {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.row.gx-3.container-inner > [class*='col-'] > .rounded-4 .price-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0; /* allow proper flexing */
}

.row.gx-3.container-inner > [class*='col-'] > .rounded-4 .price-footer {
  margin-top: auto;
}

/* Normalize button padding so visual bottoms line up better */
.row.gx-3.container-inner .price-footer .btn {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* Disable forced flex on small screens to preserve stacked flow */
@media (max-width: 991px) {
  .row.gx-3.container-inner > [class*='col-'] > .rounded-4 {
    display: block;
    min-height: auto;
  }
  .row.gx-3.container-inner > [class*='col-'] > .rounded-4 .price-body {
    display: block;
    flex: none;
  }
  .row.gx-3.container-inner > [class*='col-'] > .rounded-4 .price-footer {
    margin-top: 0;
  }
}

/* Center footer globally (covers both <footer> elements and an element with id="footer") */
footer,
#footer {
  text-align: center;
}

/* Opt-out for pages generated by the website-builder under /work/:
   these files include a data-wf-domain attribute on <html> (and many
   include body.class="body"). Use those attributes to keep their
   footers left-aligned without editing every file. */
html[data-wf-domain] footer,
body.body footer {
  text-align: left !important;
}

/* Override Bootstrap utility classes that may re-align footer text at
   certain breakpoints (for example .text-lg-start). These rules are
   intentionally specific and use !important so the footer is visually
   centered on non-work pages regardless of utility classes. */
footer .text-lg-start,
#footer .text-lg-start,
footer .text-center,
#footer .text-center,
footer p.text-lg-start,
#footer p.text-lg-start {
  text-align: center !important;
}

/* Preserve left alignment for work pages (opt-out) including when
   utility classes like .text-lg-start are present. */
html[data-wf-domain] footer .text-lg-start,
html[data-wf-domain] #footer .text-lg-start,
body.body footer .text-lg-start {
  text-align: left !important;
}

/* Bootstrap provides utilities like .justify-content-lg-between which
   on large screens sets `justify-content: space-between !important;`.
   That makes the footer's inner row push its children to edges. Neutralize
   that ONLY inside the footer so footer content centers as intended. */
#footer .justify-content-lg-between,
footer .justify-content-lg-between {
  justify-content: center !important;
}

/* More specific selector when the footer row uses the rounded/p-4/bg-lt-black
   combination seen in markup. This ensures the rule wins over the utility. */
#footer .row.rounded.p-4.bg-lt-black.justify-content-lg-between {
  justify-content: center !important;
  background: radial-gradient(circle at 50% 0%, rgba(24, 119, 242, 0.28), transparent 34%), linear-gradient(135deg, #08111f, #0f172a 58%, #142542) !important;
  border: 1px solid transparent;
  /* box-shadow: 0 18px 44px rgba(24, 119, 242, 0.18); */
}

/* Also center the column inside the footer row so single-column layout
   looks centered instead of hugging the left edge. */
#footer .row.rounded.p-4.bg-lt-black > .col-xl-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* FINAL OVERRIDES: only center the copyright line in the dark grey bar.
   Do NOT center other footer columns or legal text. This narrowly
   targets the single paragraph that contains the © text. */
#footer .row.rounded.p-4.bg-lt-black > .col-xl-6 > p {
  color: rgba(255, 255, 255, 0.86) !important;
  text-align: center !important;
}

/* Ensure the main footer navigation columns and legal paragraphs remain left-aligned.
   This undoes earlier broad centering so lists, headings and secondary text keep their
   original left/start alignment. */
#footer .row.pt-4,
#footer .row.mb-4,
#footer .row.pt-4 .col-12,
#footer .row.mb-4 .col-6,
#footer .list-unstyled,
#footer h6,
#footer p.text-secondary {
  text-align: left !important;
}

.fs-45 {
  font-size: 45px;
}

.fs-60 {
  font-size: 60px;
}

.fs-65 {
  font-size: 65px;
}

.fs-75 {
  font-size: 75px;
}

.fs-115 {
  font-size: 102px;
}

.fs-100 {
  font-size: 75px;
}

.fs-200 {
  font-size: 138px;
}

@media (max-width: 992px) {
  .fs-75 {
    font-size: 43px;
  }
}

.mh-50 {
  max-height: 50px;
  height: 100%;
}

.fs-14 {
  font-size: 14px;
}

.fs-lrg {
  font-size: 3rem;
}

.small-title {
  font-size: 61px;
}

.ls-1 {
  letter-spacing: 0.05rem;
}

.gap-1 {
  grid-gap: 0.25rem !important;
}
.gap-2 {
  gap: 1rem !important;
}

.gap-10 {
  grid-gap: 10rem;
}

.bg-lt-black {
  background-color: var(--wb-surface);
  border: 1px solid var(--wb-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.text-lt-black {
  color: #303030;
}

.mb-6 {
  margin-bottom: 4rem;
}

.wrapper {
  max-width: 54vw !important;
  width: 100%;
  margin: 0 auto;
}

.cards-wrapper {
  display: flex;
}
.card {
  margin: 0 0em;
  width: calc(100% / 3);
}

@media (max-width: 576px) {
  .card {
    margin: 0 auto;
    width: calc(100% / 1);
  }
}

/* Maintain hover effect */
.cards-wrapper .card {
  opacity: 0.9;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transform: translateY(0);
  cursor: pointer;
}

.cards-wrapper .card:hover {
  opacity: 1;
  transform: translateY(-10px);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.container-inner {
  width: 100%;
  max-width: 78vw;
  margin: 0 auto;
}

.fs-icon-lrg {
  font-size: 51px !important;
}

.fs-icon-super-lg {
  font-size: 100px !important;
}

.thumbnail {
  cursor: pointer;
}

.fit-cover {
  object-fit: cover;
}

.fit-content {
  width: fit-content !important;
}

@media (min-width: 576px) {
  .fit-sm-content {
    width: fit-content !important;
  }
}

.mt-min-30 {
  margin-top: -30px;
}

.ms-min-18 {
  margin-left: -18px;
}

.rounded-4-top {
  border-radius: 1rem 1rem 0 0;
}

.cursor-pointer {
  cursor: pointer !important;
}

.position-center {
  object-position: center !important;
}

.img-square {
  width: 450px;
  height: 450px;
  object-fit: cover;
}

.fs-mini {
  font-size: 13px;
}

.h-800 {
  height: 800px;
}

.h-318 {
  height: 318px;
}

.g-6 {
  gap: 5rem;
}
.g-10 {
  gap: 10rem;
}

.fs-7 {
  font-size: 13px !important;
}

.fs-8 {
  font-size: 12px !important;
}

.grow {
  transition: all 0.2s ease-in-out;
}
.grow:hover {
  transform: scale(1.04);
}

.grow-sm {
  transition: all 0.2s ease-in-out;
}

.grow-sm:hover {
  transform: scale(1.01);
}

.shake {
  transition: transform 0.3s ease-in-out !important;
}

.shake:hover {
  animation: shake 0.3s ease-in-out !important;
}

.zoom {
  overflow: hidden;
}

.zoom:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease-in-out;
}

.shine-container {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.shine-container img {
  display: block;
  width: 100%;
  height: auto;
}

.shine-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: none;
}

.shine-container:hover:after {
  width: 120%;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.4s ease-in-out;
}

.mt-neg-5 {
  margin-top: -4rem;
}

.mt-neg-20 {
  margin-top: -20px !important;
}

.mt-neg-50 {
  margin-top: -50px;
}
.mb-neg-15 {
  margin-bottom: -15px !important;
}
.mb-neg-12 {
  margin-bottom: -12px;
}
.container-wide {
  max-width: 1500px !important;
}

.text-999 {
  color: #999;
}

.list-group li {
  color: var(--wb-text);
}
/* ----------------------------------------------------------------------- TOOLS */
img.img-fluid.mb-3.soft-tools-logos {
  height: 40px;
}

img.img-fluid.mb-3.soft-tools-logos--bookmap {
  height: 24px;
}
/* ----------------------------------------------------------------------- LAZY BACKGROUND */
.lazy-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  height: 100%;
}
.lazy-background.loaded {
  transition: background 0.5s ease-in-out;
}

/* ----------------------------------------------------------------------------- HEROS */
.hero.background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  height: 100%;
  transition: background 0.5s ease-in-out;
  background-image: url(../images/backgrounds/large_group_nyc_bearbulltraders_bw-overlay.webp);
}

.pricing-booking {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  height: 100%;
  transition: background 0.5s ease-in-out;
  background-image: url(../images/backgrounds/Pricing\ &\ Booking.png);
}

.final-cta {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  height: 100%;
  transition: background 0.5s ease-in-out;
  background-image: url(../images/thailand-retreat/Final\ CTA\ +\ Contact.png);
}

.event-hero-tedx.background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  height: 100%;
  transition: background 0.5s ease-in-out;
  background-image: url(../images/backgrounds/TEDX-ANDREW2.webp);
}

section.event-hero.background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  height: 100%;
  transition: background 0.5s ease-in-out;
  background-image: url(../images/convert/hero.png);
}

.audiobooks-hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  height: 100%;
  transition: background 0.5s ease-in-out;
  background-image: url(../images/backgrounds/Hero-edu.webp);
}

.gifts-hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  height: 100%;
  transition: background 0.5s ease-in-out;
  background-image: url(../images/backgrounds/group-background.webp);
}

.pivotbook-hero {
  margin-top: 50px !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  height: 100%;
  transition: background 0.5s ease-in-out;
  background-image: url(../images/backgrounds/thor-background_pivotbook-2.webp);
}

.hero-retreat-thailand {
  margin-top: 50px !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 80vh;
  transition: background 0.5s ease-in-out;
  background-image: url(../images/thailand-retreat/hero-thailand.png);
  justify-content: space-between;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.workshop-hero {
  background-image: url(../images/backgrounds/workhop-hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

#event-price {
  background-image: url(../images/backgrounds/x.png);

  background-repeat: no-repeat;
  background-attachment: scroll;
}

#tradebook-hero {
  background-image: url(../images/backgrounds/tradebook-hero-bkg.png);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: center;
}

/* ------------------------------------------------------------------------------- BACKGROUNDS */
.bg-black-cta {
  background-image: url(../images/backgrounds/tradebook-hero-bkg.png);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: top;
}
/*---------------------------------------------------------------------------- CAROUSELS */
button.carousel-control-next,
button.carousel-control-prev {
  border: none;
  background: transparent;
}

.carousel-inner {
  border-radius: 20px;
}

.carousel-caption {
  left: 0;
  padding-top: 1rem;
  padding-bottom: 2.25rem;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  right: 0;
  bottom: 0;
  border-radius: 0 0 20px 20px;
}

.carousel-testimonial-controls {
  position: absolute;
  width: 250px;
  display: flex;
  bottom: 0;
  right: 0;
  gap: 10px;
  justify-content: flex-end;
}

/*------------------------------------------------------------------------------- COUNT DOWN TIMER */
.countdown-item {
  background-color: transparent;
  color: var(--wb-text);
}

.countdown-value {
  font-size: 2em;
}

.countdown-label {
  font-size: 12px;
  color: var(--wb-muted);
  text-transform: uppercase;
}

.countdown-warpper {
  max-width: 425px;
}

/* ----------------------------------------------------------------------------- MENTORS */
section.mentors {
  background-image: url(../images/backgrounds/group-background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* ------------------------------------------------------------------------------- WORKSHOP */

.mod-workshop-position {
  left: 36px;
  right: 36px;
  bottom: 5px;
}

/* -------------------------------------------------------------- TABS & WORKSHOP SCHEDULE*/
.bbt-seminar-schedule-menu-container.workshop-schedule {
  grid-gap: 20px;
  display: grid;
  grid-template-columns: 27% 70%;
  align-items: flex-start;
}

.bbt-seminar-schedule-menu-container table td {
  padding: 11px;
  vertical-align: baseline;
}

.bbt-seminar-schedule-menu-container table.sem-schedule-table {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem 0.5rem 0.5rem 0.5rem;
}

.btn-stacked-side {
  display: flex;
  font-size: 18px;
  flex-direction: column;
  text-transform: uppercase;
  color: #666;
}

button.seminar-schedule-menu-btn {
  text-align: left;
  font-size: 64px;
  border: none;
  font-family: 'brother-1816', sans-serif;
  cursor: pointer;
  position: relative;
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  grid-gap: 20px;
}

button.seminar-schedule-menu-btn:hover:after,
button.seminar-schedule-menu-btn:focus:after,
button.seminar-schedule-menu-btn:active:after {
  position: absolute;
  background: var(--wb-blue);
  height: 100%;
  content: '';
  bottom: -4px;
  left: -10px;
  width: 3px;
}

button.seminar-schedule-menu-btn.tablink:hover,
button.seminar-schedule-menu-btn.tablink:active,
button.seminar-schedule-menu-btn.tablink:focus {
  color: var(--wb-blue);
}

.bbt-seminar-schedule-menu {
  display: flex;
  grid-gap: 3rem;
  flex-direction: column;
}

.bbt-seminar-schedule-menu-container td.bbt-sem-sched-title {
  text-transform: capitalize;
  font-size: 16.64px;
  margin-bottom: 1rem;
  text-align: left;
  line-height: 1.8rem;
  font-weight: 500;
}

li.sem-schedule-title {
  list-style: none;
  font-size: 18px;
  text-align: left;
  font-weight: 800;
}

/* .bbt-seminar-schedule-menu-container tr {
  border-bottom: 1px solid grey;
} */

.bbt-seminar-schedule-menu-container td.bbt-sem-schedu-time {
  text-align: left;
  color: grey;
  letter-spacing: 0;
  font-weight: 200;
}

span.bbt-table-strategy {
  color: var(--wb-blue);
  font-weight: 700;
}

.webinars-page .webinar-card-title img[src*='./images/icons/'],
.webinars-page .webinar-card-title img[src*='/images/icons/'] {
  filter: brightness(0) saturate(100%) invert(39%) sepia(90%) saturate(2644%) hue-rotate(202deg) brightness(97%) contrast(95%);
  vertical-align: -0.18em;
}

.webinars-page div.bg-white.border.rounded-20.p-4 {
  position: relative;
  overflow: hidden;
  background: var(--wb-surface-strong) !important;
  border: 1px solid rgba(100, 116, 139, 0.18) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.webinars-page div.bg-white.border.rounded-20.p-4:hover {
  border-color: rgba(24, 119, 242, 0.42) !important;
  box-shadow: 0 18px 48px var(--wb-blue-glow);
  transform: translateY(-4px);
}

.webinars-page div.bg-white.border.rounded-20.p-4 > .row:first-child {
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px !important;
}

.webinars-page div.bg-white.border.rounded-20.p-4 > .row:first-child h5 {
  margin-bottom: 0;
  color: rgba(15, 23, 42, 0.66) !important;
  font-size: 11px;
  font-weight: 800 !important;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.webinars-page div.bg-white.border.rounded-20.p-4 > .row:first-child p.text-secondary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: auto;
  margin-bottom: 0;
  padding: 6px 10px;
  color: var(--wb-blue) !important;
  background: rgba(24, 119, 242, 0.08);
  border-radius: 999px;
  font-size: 11px !important;
  font-weight: 800;
  line-height: 1.2;
}

.webinars-page div.bg-white.border.rounded-20.p-4 > .row:first-child p.text-secondary img {
  width: 17px !important;
  height: 17px;
  object-fit: contain;
}

.webinars-page div.bg-white.border.rounded-20.p-4 > .row:first-child p.text-secondary .ms-2 {
  margin-left: 4px !important;
}

.webinars-page div.bg-white.border.rounded-20.p-4 > .row:nth-child(2) {
  align-items: center;
  margin-bottom: 20px !important;
}

.webinars-page div.bg-white.border.rounded-20.p-4 > .row:nth-child(2) img.rounded-circle {
  width: 34px !important;
  height: 34px;
  object-fit: cover;
  border: 2px solid rgba(24, 119, 242, 0.14);
}

.webinars-page div.bg-white.border.rounded-20.p-4 > .row:nth-child(2) p {
  margin-bottom: 0;
  color: var(--wb-text);
  font-size: 13px !important;
}

.webinars-page div.bg-white.border.rounded-20.p-4 .bi-clock {
  color: var(--wb-blue);
}

.webinars-page div.bg-white.border.rounded-20.p-4 > .row:last-child h5 {
  margin-bottom: 12px !important;
  color: var(--wb-text) !important;
  font-size: 20px;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.webinars-page div.bg-white.border.rounded-20.p-4 > .row:last-child p {
  margin-bottom: 0;
  color: var(--wb-muted);
  font-size: 15px;
  line-height: 1.7;
}

.w3-red {
  color: var(--wb-blue);
}

/* ------------------------------------------------------------------------------- PRICE CHART */
.bi-check-lg::before,
.bi-x::before {
  font-weight: 800 !important;
}

.off-sticker {
  z-index: 99999999999;
  right: -26px;
  top: -66px;
  width: 76px;
  background: var(--wb-blue) !important;
  color: #ffffff !important;
}

/* ------------------------------------------------------ COMPARE CHART */
img.bbt-th-badge.diamond.mt-0 {
  margin-top: 0 !important;
}

.bbt-badges-table-align {
  width: 100%;
  display: grid;
  justify-items: center;
  grid-template-columns: 33% 21.5% 23.5% 21.5%;
  margin: 0 auto 32px !important;
}

tr.bbt-intro-tbody-tr.view:hover {
  opacity: 0.8;
}

table,
table.bbt-intro-course {
  width: 100%;
}

table.fold-table tbody tr.view td,
table.fold-table tbody tr.view th {
  cursor: pointer;
}

table.fold-table tbody tr.view td:first-child,
table.fold-table tbody tr.view th:first-child {
  position: relative;
  padding-left: 4px;
}

table.fold-table tbody tr.view td:first-child:before,
table.fold-table tbody tr.view th:first-child:before {
  content: '';
}

table.fold-table tbody tr.view td:first-child:before {
  transform: rotate(-180deg);
  display: inline-block;
  color: #333;
  top: 17px;
}

table.fold-table tbody tr.fold {
  display: none;
}

table.fold-table tbody tr.fold.open {
  display: table-row;
}

table.bbt-intro-course {
  width: 100%;
  border-collapse: collapse !important;
  margin: 0 auto;
}

img.bbt-th-badge {
  margin: 11px 0 0 0 !important;
}

th.bbt-intro-course-th h3 {
  position: relative;
}

th.badge {
  position: absolute;
  top: 0;
}

.bbt-table-course-title {
  font-weight: 500;
  font-size: 16px;
  position: relative;
  margin-left: 35px;
  color: var(--wb-text);
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
th.bbt-intro-course-th h3 {
  color: var(--wb-text);
  font-size: 1rem;
  letter-spacing: 0;
}

td.bbt-td-no-background {
  border: none !important;
  padding-top: 40px !important;
  padding-bottom: 20px !important;
  background-color: transparent;
}

table.bbt-intro-course td {
  background: transparent;
  border-radius: 0;
  padding: 11px;
  border-bottom: 1px solid #ddd;
}

.bbt-seminar-schedule-menu-container table {
  width: 100%;
  border-collapse: collapse;
}

.bbt-seminar-schedule-menu-container .details {
  display: none;
}
.bbt-seminar-schedule-menu-container .details.expanded {
  display: table-row;
}
.bbt-seminar-schedule-menu-container .expand-btn {
  cursor: pointer;
}

tr.border-bottom.view td:first-child,
tr.border-bottom.view th:first-child {
  position: relative;
  padding-left: 20px;
}

tr.border-bottom.view td:first-child:before,
tr.border-bottom.view th:first-child:before {
  content: '';
}

/* Inline SVG arrow styles */
.bbt-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  color: #999;
}
.bbt-arrow-icon {
  display: block;
  width: 16px;
  height: 16px;
}
/* Arrow always up now; keep color change on open if desired */
tr.view.open .bbt-arrow {
  color: #333;
}

/* Removed custom inline arrow styles (now using bootstrap-icons via pseudo-element) */

/* ---------------------------------------------------------------------------------------- ACCORDION */
.accordion-button:not(.collapsed) {
  background-color: #cfe2ff00;
}

.accordion-button:focus {
  box-shadow: none;
}

/* --------------------------------------------------------------------------------------- CHATROOM SCHEDULE */

table.bbt-chat-schedule-table {
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
}

table.bbt-chat-schedule-table td {
  padding: 32px 0 !important;
  text-align: left;
  font-size: 16px;
}

table.bbt-chat-schedule-table tr {
  border-bottom: 1px solid;
}

td.bbt-chat-scheudle-table-name {
  padding: 30px 0 !important;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

td.bbt-chat-schedule-table-time {
  font-weight: 400 !important;
  color: #666;
  letter-spacing: 0;
  text-transform: uppercase;
}

span.bbt-chat-sched-red {
  color: var(--wb-blue);
  display: block;
  font-style: italic;
}

.bbt-chat-check-schedule th {
  font-size: 13px;
}

/* --------------------------------------------CHATROOM SCHEDULE CHECKS */
table.bbt-chat-check-schedule tr {
  border-bottom: none;
}

table.bbt-chat-check-schedule tr td {
  padding: 0 !important;
}

/* ------------------------------------------------------------------------- BIG SIDE IMAGES */
.community-setup-right-img {
  background-image: url(../images/photos/image-31-1.webp);
  background-size: cover;
  padding: 15rem 0;
  height: 100%;
  background-position: center;
}

.brian-newsletter-img {
  background-image: url(../images/photos/Right-1.webp);
  background-size: cover;
  padding: 15rem 0;
  height: 100%;
  background-position: center;
}

/* -------------------------------------------------------------------------------------- EDUCATION PG */
hr.dotted-path-line {
  border: none;
  border-top: 3px dashed #999;
  position: absolute;
  width: 100%;
  z-index: -9;
  top: 31px;
  right: 151px;
  max-width: 1226px;
}

.brian-newsletter-padding {
  padding-left: 16.8rem !important;
}

/* -------------------------------------------------------------------------------------  HOME PAGE */
.home-section-title {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  color: var(--wb-text) !important;
  font-size: clamp(38px, 4vw, 54px) !important;
  font-weight: 800;
  line-height: 1.03 !important;
  letter-spacing: -0.045em;
}

.home-section-title strong {
  color: var(--wb-blue);
  font-weight: 800;
}

.home-section-subtext {
  max-width: 760px;
  margin: 0 auto 46px;
  color: var(--wb-muted);
  font-size: 17px !important;
  line-height: 1.75;
  text-align: center;
}

.home-hero {
  background: radial-gradient(circle at 8% 18%, rgba(24, 119, 242, 0.08), transparent 28%), linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.88));
  max-width: 100%;
  overflow: visible;
}

.home-hero > .container {
  max-width: min(1320px, 100%);
  overflow: visible;
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
}

.home-hero__panel {
  max-width: 100%;
  overflow: visible;
  padding: 54px 0;
  /* background: rgba(255, 255, 255, 0.78); */
  /* border: 1px solid var(--wb-border); */
  border-radius: 28px;
  /* box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08); */
  /* backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); */
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  max-width: 100%;
  overflow: visible;
}

.home-hero__content {
  max-width: 560px;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 10px 14px;
  color: #41577a;
  background: var(--wb-surface-strong);
  border: 1px solid rgba(65, 87, 122, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  font-size: 11px;
  line-height: 1.2;
}

.home-hero__badge i {
  color: #f7b500;
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 1px 0 #111827;
}

.home-hero__text {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--wb-muted);
  font-size: 17px;
  line-height: 1.8;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 38px;
}

.home-hero__actions .btn {
  min-width: 158px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.home-hero__actions .btn-primary {
  background: var(--wb-blue) !important;
  border: 1px solid var(--wb-blue) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px var(--wb-blue-glow);
}

.home-hero__actions .btn-primary:hover {
  background: var(--wb-blue-hover) !important;
  border-color: var(--wb-blue-hover) !important;
  box-shadow: 0 20px 44px var(--wb-blue-glow);
  transform: translateY(-1px);
}

.home-hero__actions .btn-outline-dark {
  background: var(--wb-surface-strong) !important;
  border: 1px solid rgba(100, 116, 139, 0.32) !important;
  color: var(--wb-text) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.home-hero__actions .btn-outline-dark:hover {
  background: var(--wb-surface-strong) !important;
  border-color: var(--wb-blue) !important;
  color: var(--wb-text) !important;
  box-shadow: 0 18px 40px var(--wb-blue-glow);
  transform: translateY(-1px);
}

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-hero__stat {
  padding: 24px 20px;
  text-align: center;
  background: var(--wb-surface-strong);
  border: 1px solid var(--wb-border);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  font-family: 'Montserrat', sans-serif;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.home-hero__stat:hover {
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.14);
  transform: scale(1.035);
}

.home-hero__stat h3 {
  margin-bottom: 8px;
  color: var(--wb-blue) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.home-hero__stat p {
  margin-bottom: 0;
  color: var(--wb-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.home-hero__media {
  position: relative;
  max-width: 100%;
  overflow: visible;
  min-height: 405px;
}

.home-hero__media::after {
  display: none;
}

.home-hero__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 405px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.chatroom-hero {
  background: radial-gradient(circle at 12% 12%, rgba(24, 119, 242, 0.08), transparent 30%), linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.9));
}

.chatroom-hero > .container {
  max-width: min(1320px, 100%);
  padding-top: 3.25rem;
  padding-right: 24px;
  padding-bottom: 2.75rem;
  padding-left: 24px;
}

.chatroom-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 58px;
}

.chatroom-hero__content {
  max-width: 610px;
}

.chatroom-hero__eyebrow {
  margin-bottom: 14px;
  color: var(--wb-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero__title,
.chatroom-hero__title,
.subpage-hero__title {
  margin-bottom: 20px;
  color: var(--wb-text) !important;
  font-family: 'brother-1816', sans-serif;
  font-size: var(--wb-hero-title-size);
  font-weight: 800;
  line-height: var(--wb-hero-title-line);
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.home-hero__title strong,
.chatroom-hero__title strong,
.subpage-hero__title strong {
  color: var(--wb-blue);
  font-weight: 800;
}

.hero-title__line {
  display: block;
}

.chatroom-hero__text {
  max-width: 560px;
  margin-bottom: 22px;
  color: var(--wb-muted);
  font-size: 17px;
  line-height: 1.75;
}

.chatroom-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chatroom-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  color: var(--wb-text);
  background: var(--wb-surface-strong);
  border: 1px solid var(--wb-border);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-size: 12px;
  font-weight: 700;
}

.chatroom-hero__meta i {
  color: var(--wb-blue);
  font-size: 13px;
}

.chatroom-hero__actions .btn-primary {
  box-shadow: 0 16px 38px var(--wb-blue-glow);
  font-weight: 700;
}

.chatroom-hero__actions .btn-primary:hover {
  box-shadow: 0 24px 56px var(--wb-blue-glow);
  transform: translateY(-2px);
}

.chatroom-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.chatroom-hero__actions .btn {
  width: auto;
  max-width: 100%;
}

.chatroom-hero__media {
  position: relative;
}

.chatroom-hero__media::before {
  content: '';
  position: absolute;
  inset: 18% 7% 2%;
  z-index: 0;
  background: var(--wb-blue-glow);
  border-radius: 999px;
  filter: blur(34px);
}

.chatroom-hero__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  filter: drop-shadow(0 24px 34px rgba(15, 23, 42, 0.16));
}

.chatroom-hero #partner-logo-strip {
  max-width: 100%;
}

.chatroom-hero #partner-logo-strip img {
  max-height: 42px;
  filter: grayscale(1);
  opacity: 0.48 !important;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.chatroom-hero #partner-logo-strip img:hover {
  filter: grayscale(0);
  opacity: 0.86 !important;
  transform: translateY(-2px);
}

.chatroom-edge {
  width: 100%;
  padding-right: 20px;
}

.chatroom-edge-row {
  align-items: stretch;
}

.chatroom-edge-content-col {
  display: flex;
  align-items: center;
}

.chatroom-edge__eyebrow {
  margin-bottom: 12px;
  color: var(--wb-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chatroom-edge__title {
  margin-bottom: 26px;
  color: var(--wb-text) !important;
  font-size: clamp(42px, 4.3vw, 58px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.chatroom-edge__title span {
  color: var(--wb-blue);
}

.chatroom-edge__cards {
  display: grid;
  gap: 14px;
}

.chatroom-edge__card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--wb-surface-strong);
  border: 1px solid rgba(100, 116, 139, 0.18);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.chatroom-edge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.chatroom-edge__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.chatroom-edge__card h3 {
  margin-bottom: 4px;
  color: var(--wb-text) !important;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
}

.chatroom-edge__card p {
  margin-bottom: 0;
  color: var(--wb-muted);
  font-size: 13px;
  line-height: 1.55;
}

.chatroom-edge-visual-col {
  display: flex;
  align-items: center;
}

.chatroom-edge-visual {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100% - 144px);
  overflow: hidden;
  background: var(--wb-surface-strong);
  border: 1px solid rgba(100, 116, 139, 0.18);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.chatroom-edge-visual__image {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.chatroom-edge-visual__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.chatroom-edge-visual:hover .chatroom-edge-visual__image img {
  transform: scale(1.045);
}

.chatroom-edge-visual__content {
  flex: 0 0 auto;
  padding: 20px 22px;
}

.chatroom-edge-visual__content h3 {
  margin-bottom: 10px;
  color: var(--wb-text) !important;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.chatroom-edge-visual__content p {
  margin-bottom: 0;
  color: var(--wb-text);
  font-size: 14px;
  line-height: 1.55;
}

.subpage-hero {
  background: radial-gradient(circle at 12% 12%, rgba(24, 119, 242, 0.08), transparent 30%), linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.9));
  max-width: 100%;
  overflow: visible;
}

.subpage-content-shell {
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.subpage-hero > .container {
  max-width: min(1320px, 100%);
  padding-top: 3.25rem;
  padding-right: 24px;
  padding-bottom: 2.75rem;
  padding-left: 24px;
}

.subpage-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 58px;
}

.subpage-hero__content {
  max-width: 610px;
}

.subpage-hero__eyebrow {
  margin-bottom: 14px;
  color: var(--wb-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subpage-hero__text {
  max-width: 575px;
  margin-bottom: 22px;
  color: var(--wb-muted);
  font-size: 17px;
  line-height: 1.75;
}

.subpage-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.subpage-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  color: var(--wb-text);
  background: var(--wb-surface-strong);
  border: 1px solid var(--wb-border);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-size: 12px;
  font-weight: 700;
}

.subpage-hero__meta i {
  color: var(--wb-blue);
  font-size: 13px;
  line-height: 1;
}

.subpage-hero .btn-primary {
  box-shadow: 0 16px 38px var(--wb-blue-glow);
  font-weight: 700;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.subpage-hero .btn-primary:hover {
  box-shadow: 0 24px 56px var(--wb-blue-glow);
  transform: translateY(-2px);
}

.subpage-hero__content > .btn-primary {
  width: auto;
  max-width: 100%;
}

#aboutPg > .container-fluid.pt-5 {
  padding-top: 5rem !important;
}

#aboutPg > .container-fluid > .container.py-6 {
  padding-top: 2.75rem;
  padding-bottom: 2.5rem;
}

#aboutPg .container.py-6 > section .title {
  font-size: var(--wb-hero-title-size) !important;
  font-weight: 800;
  line-height: var(--wb-hero-title-line);
  overflow-wrap: break-word;
}

.container-fluid.pt-5:has(> .chatroom-hero),
.container-fluid.pt-5:has(> .subpage-content-shell) {
  padding-top: 5rem !important;
}

.subpage-hero__media {
  position: relative;
  height: clamp(390px, 42vw, 520px);
  overflow: visible;
}

.subpage-hero__media::before {
  content: '';
  position: absolute;
  inset: 18% 8% 2%;
  z-index: 0;
  background: var(--wb-blue-glow);
  border-radius: 999px;
  filter: blur(34px);
}

.subpage-hero__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(100, 116, 139, 0.18);
  border-radius: 28px;
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.17);
}

.subpage-hero--education .subpage-hero__media img {
  object-position: center 58%;
}

.subpage-hero--psychology .subpage-hero__media img {
  object-position: center 38%;
}

.subpage-hero--technology .subpage-hero__media img,
.subpage-hero--webinars .subpage-hero__media img {
  object-position: center;
}

.technology-hero-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 44px;
  margin-top: 42px;
}

.technology-hero-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.technology-hero-proof__stat {
  padding: 16px 14px;
  text-align: center;
  background: var(--wb-surface-strong);
  border: 1px solid rgba(100, 116, 139, 0.16);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.technology-hero-proof__stat:hover {
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.13);
  transform: translateY(-3px);
}

.technology-hero-proof__stat h3 {
  margin-bottom: 6px;
  color: var(--wb-blue) !important;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.technology-hero-proof__stat p {
  margin-bottom: 0;
  color: var(--wb-muted);
  font-size: 10px;
  font-weight: 700;
}

.technology-hero-proof__quote {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 0;
  padding: 24px 28px;
  color: #ffffff;
  background: #0f1b31;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.technology-hero-proof__avatar {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--wb-blue), #0a3d8f);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 24px;
}

.technology-hero-proof__quote blockquote {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.technology-hero-proof__quote em {
  color: var(--wb-blue);
  font-style: italic;
}

.technology-hero-proof__quote figcaption {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

#techBroker .tech-broker__layout {
  align-items: stretch;
}

#techBroker .tech-broker__image-col {
  position: relative;
  overflow: hidden;
}

#techBroker .tech-broker__image {
  position: absolute;
  inset: 0 calc(var(--bs-gutter-x, 1.5rem) * 0.5);
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.subpage-hero #partner-logo-strip {
  max-width: 100%;
}

.subpage-hero #partner-logo-strip img {
  max-height: 42px;
  filter: grayscale(1);
  opacity: 0.48 !important;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.subpage-hero #partner-logo-strip img:hover {
  filter: grayscale(0);
  opacity: 0.86 !important;
  transform: translateY(-2px);
}

.pricing-plans {
  background: radial-gradient(circle at 50% 0%, rgba(24, 119, 242, 0.08), transparent 32%), var(--wb-bg);
}

.pricing-plans > .container,
.compare-memberships > .container {
  max-width: min(1320px, 100%);
  padding-right: 24px;
  padding-left: 24px;
}

.pricing-plans__header {
  max-width: 960px;
  margin: 0 auto 46px;
}

.pricing-plans__eyebrow {
  margin-bottom: 14px;
  color: var(--wb-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-plans__header h2 {
  margin-bottom: 22px;
  color: var(--wb-text) !important;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.pricing-plans__header p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--wb-muted);
  font-size: 17px;
  line-height: 1.75;
}

.pricing-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
  max-width: 100%;
  margin: 0 auto;
}

.pricing-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 32px 32px 28px;
  overflow: hidden;
  background: var(--wb-surface-strong);
  border: 1px solid rgba(24, 119, 242, 0.16);
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.pricing-plan-card:hover {
  border-color: rgba(24, 119, 242, 0.42);
  box-shadow: 0 26px 70px var(--wb-blue-glow);
  transform: translateY(-8px);
}

.pricing-plan-card--featured {
  border-color: rgba(24, 119, 242, 0.52);
  box-shadow: 0 24px 70px var(--wb-blue-glow);
}

.pricing-plan-card--elite {
  border-color: rgba(22, 163, 74, 0.36);
}

.pricing-plan-card__badge {
  position: absolute;
  top: 24px;
  right: 28px;
  padding: 8px 13px;
  color: var(--wb-blue);
  background: rgba(24, 119, 242, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-plan-card__ribbon {
  position: absolute;
  top: 22px;
  right: -46px;
  width: 165px;
  padding: 8px 0;
  color: #ffffff;
  background: var(--wb-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(42deg);
}

.pricing-plan-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 18px;
  font-size: 26px;
}

.pricing-plan-card__icon--intro {
  color: var(--wb-blue);
  background: rgba(24, 119, 242, 0.1);
}

.pricing-plan-card__icon--basic {
  color: #ffffff;
  background: var(--wb-blue);
  box-shadow: 0 14px 34px var(--wb-blue-glow);
}

.pricing-plan-card__icon--elite {
  color: #ffffff;
  background: var(--wb-green);
  box-shadow: 0 14px 34px var(--wb-green-glow);
}

.pricing-plan-card__head h3 {
  margin-bottom: 8px;
  color: var(--wb-text) !important;
  font-size: 28px;
  font-weight: 800;
}

.pricing-plan-card__head p {
  margin-bottom: 26px;
  color: var(--wb-muted);
  font-size: 15px;
}

.pricing-plan-card__price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--wb-text);
}

.pricing-plan-card__price span {
  margin-bottom: 11px;
  font-size: 24px;
  font-weight: 800;
}

.pricing-plan-card__price strong {
  color: var(--wb-text);
  font-size: clamp(46px, 5vw, 58px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.pricing-plan-card__price small {
  margin-bottom: 10px;
  color: var(--wb-muted);
  font-size: 12px;
}

.pricing-plan-card__divider {
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.26), transparent);
}

.pricing-plan-card__included {
  margin-bottom: 18px;
  color: var(--wb-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.pricing-plan-card__features {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.pricing-plan-card__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--wb-text);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-plan-card__features i {
  flex: 0 0 auto;
  color: var(--wb-green);
  font-size: 15px;
  line-height: 1.55;
}

.pricing-plan-card--featured .pricing-plan-card__features i {
  color: var(--wb-blue);
}

.pricing-plan-card--elite .pricing-plan-card__included,
.pricing-plan-card--elite .pricing-plan-card__features i {
  color: var(--wb-green);
}

.pricing-plan-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  margin-top: auto;
  color: var(--wb-text) !important;
  background: var(--wb-surface-strong);
  border: 1px solid rgba(100, 116, 139, 0.28);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.pricing-plan-card__button:hover {
  color: var(--wb-text) !important;
  border-color: var(--wb-blue);
  box-shadow: 0 18px 40px var(--wb-blue-glow);
  transform: translateY(-2px);
}

.pricing-plan-card__button--primary {
  color: #ffffff !important;
  background: var(--wb-blue) !important;
  border-color: var(--wb-blue) !important;
  box-shadow: 0 14px 34px var(--wb-blue-glow);
}

.pricing-plan-card__button--primary:hover {
  color: #ffffff !important;
  background: var(--wb-blue-hover) !important;
  border-color: var(--wb-blue-hover) !important;
}

.guarantee__link {
  color: var(--wb-blue) !important;
  font-weight: 700;
  text-decoration-color: rgba(24, 119, 242, 0.38);
  text-underline-offset: 3px;
}

.guarantee__link:hover {
  color: var(--wb-blue-hover) !important;
  text-decoration-color: currentColor;
}

.family-section__title-accent {
  color: var(--wb-blue);
}

.family-section__dark-accent {
  color: var(--wb-text);
  font-weight: 800;
}

.family-section__muted-accent {
  color: var(--wb-muted);
  font-weight: 600;
}

.family-section__signature {
  color: var(--wb-blue);
  font-weight: 800;
}

.family-section__signature::before {
  content: '- ';
  color: var(--wb-blue);
}

.family-section__button {
  margin-top: 22px;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 16px 34px var(--wb-blue-glow);
  font-weight: 800;
}

.family-section__button:hover {
  box-shadow: 0 22px 48px var(--wb-blue-glow);
  transform: translateY(-2px);
}

.final-cta > .container {
  max-width: min(1320px, 100%);
  padding-right: 24px;
  padding-left: 24px;
}

.final-cta .row {
  padding: 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(24, 119, 242, 0.28), transparent 28%), radial-gradient(circle at 8% 90%, rgba(22, 163, 74, 0.14), transparent 26%),
    linear-gradient(135deg, #08111f, #0f172a 54%, #152848);
  border: 1px solid rgba(24, 119, 242, 0.22);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}

.final-cta img {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.final-cta h1 {
  color: #ffffff !important;
}

.final-cta h1 strong {
  color: var(--wb-blue);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta p strong {
  color: #ffffff;
}

.final-cta__button {
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 16px 38px var(--wb-blue-glow);
  font-weight: 700;
}

.final-cta__button:hover {
  box-shadow: 0 24px 56px var(--wb-blue-glow);
  transform: translateY(-2px);
}

.compare-memberships {
  background: radial-gradient(circle at 8% 12%, rgba(24, 119, 242, 0.08), transparent 28%), var(--wb-bg);
}

.compare-memberships__header {
  max-width: 960px;
  margin: 0 auto 46px;
}

.compare-memberships__eyebrow {
  margin-bottom: 14px;
  color: var(--wb-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compare-memberships__header h2 {
  margin-bottom: 22px;
  color: var(--wb-text) !important;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.compare-memberships__header p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--wb-muted);
  font-size: 17px;
  line-height: 1.75;
}

.compare-memberships__table-wrap {
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  background: var(--wb-surface-strong);
  border: 1px solid var(--wb-border);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.compare-memberships .bbt-seminar-schedule-menu-container {
  min-width: 820px;
}

.compare-memberships__table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.compare-memberships__table thead {
  color: #ffffff;
  background: radial-gradient(circle at 74% 15%, rgba(24, 119, 242, 0.16), transparent 28%), linear-gradient(135deg, #0f172a, #111827);
}

.compare-memberships__table thead th {
  padding: 28px 22px;
  vertical-align: middle;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-memberships__table thead th:last-child {
  border-right: 0;
}

.compare-memberships__features-title {
  display: inline-flex;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.compare-memberships__plan {
  position: relative;
  display: flex;
  min-height: 118px;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.compare-memberships__plan i {
  color: var(--wb-blue);
  font-size: 19px;
  line-height: 1;
}

.compare-memberships__plan h5 {
  margin: 0;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 800;
}

.compare-memberships__plan strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.compare-memberships__plan span {
  position: absolute;
  top: 9px;
  padding: 5px 10px;
  color: #ffffff;
  background: var(--wb-blue);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-memberships__plan--featured {
  background: rgba(24, 119, 242, 0.08);
  box-shadow: inset 0 0 0 1px rgba(24, 119, 242, 0.24);
}

.compare-memberships__plan--elite {
  background: rgba(22, 163, 74, 0.08);
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.22);
}

.compare-memberships__plan--elite i {
  color: var(--wb-green);
}

.compare-memberships__table tbody tr.view {
  background: #ffffff;
  border-bottom: 1px solid rgba(100, 116, 139, 0.14) !important;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.compare-memberships__table tbody tr.view:hover,
.compare-memberships__table tbody tr.view.open {
  background: rgba(24, 119, 242, 0.035);
}

.compare-memberships__table tbody tr.view td {
  padding: 20px 22px;
  vertical-align: middle;
}

.compare-memberships__table .bbt-table-course-title {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--wb-text);
  font-size: 15px;
  font-weight: 800;
}

.compare-memberships__table .bbt-arrow {
  color: var(--wb-muted);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
  transform: rotate(180deg);
}

.compare-memberships__table .bbt-arrow-icon {
  transition: transform 0.25s ease;
}

.compare-memberships__table tr.view.open .bbt-arrow {
  color: var(--wb-blue);
  transform: rotate(0deg) translateY(-1px);
}

.compare-memberships__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--wb-blue);
  background: transparent;
  border-radius: 0;
  font-size: 22px;
}

.compare-memberships__table tr.view.open .compare-memberships__feature-icon {
  color: var(--wb-blue);
  background: transparent;
}

.compare-memberships__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
}

.compare-memberships__mark i {
  display: block;
  line-height: 1;
}

.compare-memberships__mark--check {
  color: #ffffff;
  background: var(--wb-green);
  box-shadow: 0 10px 22px var(--wb-green-glow);
}

.compare-memberships__mark--x {
  color: var(--wb-muted);
  background: rgba(100, 116, 139, 0.12);
}

.compare-memberships__table tr.fold > td {
  padding: 0;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.07), rgba(246, 249, 255, 0.9));
  border-bottom: 1px solid rgba(24, 119, 242, 0.14);
}

.compare-memberships__detail {
  position: relative;
  padding: 30px 34px 34px 42px;
  color: var(--wb-text);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.06), rgba(255, 255, 255, 0.86));
  border-left: 4px solid var(--wb-blue);
}

.compare-memberships__detail-content {
  max-width: 920px;
}

.compare-memberships__detail-content h4 {
  margin-bottom: 12px;
  color: var(--wb-text) !important;
  font-size: 18px;
  font-weight: 800;
}

.compare-memberships__detail-content p {
  margin-bottom: 18px;
  color: var(--wb-text);
  font-size: 15px;
  line-height: 1.75;
}

.compare-memberships__detail-content ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-memberships__detail-content li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--wb-text);
  font-size: 14px;
  line-height: 1.55;
}

.compare-memberships__detail-content li i {
  flex: 0 0 auto;
  color: var(--wb-blue);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1199.98px) {
  .pricing-plans__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .pricing-plans__grid {
    grid-template-columns: 1fr;
  }

  .pricing-plan-card {
    min-height: auto;
    padding: 30px 24px 26px;
  }
}

@media (max-width: 1199.98px) {
  .home-hero__panel {
    padding: 42px 0;
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .chatroom-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
    min-width: 0;
  }

  .chatroom-hero__grid > * {
    min-width: 0;
  }

  .chatroom-hero__grid > div:has(.chatroom-hero__media) {
    display: none !important;
  }

  .subpage-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
    min-width: 0;
  }

  .subpage-hero__grid > * {
    min-width: 0;
  }

  .technology-hero-proof {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  #techBroker .tech-broker__image {
    position: static;
    height: auto;
  }

  .chatroom-hero__content {
    max-width: none;
    text-align: center;
  }

  .subpage-hero__content {
    max-width: none;
    text-align: center;
  }

  .chatroom-hero__text {
    margin-right: auto;
    margin-left: auto;
  }

  .subpage-hero__text {
    margin-right: auto;
    margin-left: auto;
  }

  .chatroom-hero__meta {
    justify-content: center;
  }

  .subpage-hero__meta {
    justify-content: center;
  }

  .subpage-hero__content > .btn-primary {
    display: inline-flex;
    width: auto !important;
    max-width: 100%;
  }

  .home-hero__content {
    max-width: none;
    text-align: center;
  }

  .home-hero__badge {
    margin-right: auto;
    margin-left: auto;
  }

  .home-hero__text {
    margin-right: auto;
    margin-left: auto;
  }

  .home-hero__actions {
    justify-content: center;
  }

  .chatroom-edge {
    padding-right: 0;
    margin-bottom: 36px;
  }

  .chatroom-edge-content-col {
    display: block;
  }

  .chatroom-edge-visual {
    height: auto;
  }

  .home-hero__media,
  .chatroom-hero__media,
  .subpage-hero__media,
  .chatroom-edge-visual-col,
  .hide-mobile {
    display: none !important;
  }

  .final-cta .row {
    padding: 32px 28px;
    justify-content: center;
  }

  .final-cta .col-xl-5 {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .home-hero__panel {
    padding: 32px 0;
    border-radius: 22px;
  }

  .chatroom-hero > .container,
  .subpage-hero > .container {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .container-fluid.pt-5:has(> .chatroom-hero),
  .container-fluid.pt-5:has(> .subpage-content-shell),
  #aboutPg > .container-fluid.pt-5 {
    padding-top: 4.5rem !important;
  }

  #aboutPg > .container-fluid > .container.py-6 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .home-hero__badge {
    gap: 7px;
    padding: 7px 14px;
    font-size: 11px;
  }

  .home-hero__stats {
    grid-template-columns: 1fr;
  }

  .chatroom-hero__meta span {
    font-size: 11px;
  }

  .chatroom-edge__title {
    font-size: 42px;
  }

  .chatroom-edge__card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .chatroom-edge__card h3 {
    font-size: 18px;
  }

  .chatroom-edge__card p {
    font-size: 14px;
  }

  .chatroom-edge-visual__image {
    flex: none;
    height: 220px;
  }

  .chatroom-edge-visual__content {
    padding: 20px;
  }

  .chatroom-edge-visual__content h3 {
    font-size: 22px;
  }

  .chatroom-edge-visual__content p {
    font-size: 15px;
  }

  .subpage-hero__meta span {
    font-size: 11px;
  }

  .technology-hero-proof__stats {
    grid-template-columns: 1fr;
  }

  .technology-hero-proof__quote {
    align-items: flex-start;
    padding: 22px;
  }
}

.row.member-stats-container {
  background: var(--wb-blue);
  border-radius: 20px;
  box-shadow: 0 0 20px var(--wb-blue-glow);
  position: absolute;
  bottom: -26px;
  left: 111px;
}
@media (max-width: 1200px) {
  .row.member-stats-container {
    bottom: 0px;
    left: 0px;
    width: fit-content;
    position: relative;
    margin-top: 25px;
    justify-content: center;
  }
}

/* -----------------------------------------------------------------------------------TEDX EVENT PAGE */
.location-card {
  width: 559px;
  max-width: 523px;
  bottom: -28px;
  right: 38px;
  position: absolute;
}

@media (max-width: 1200px) {
  .location-card {
    max-width: fit-content;
    position: relative;
    margin: 0 auto;
    display: block;
    right: 0;
  }
}

/* -------------------------------------------------------------------------------------- GDPR POP */

.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 20px;
  width: 400px;
  background-color: rgb(255 255 255);
  color: rgb(0, 0, 0);
  padding: 30px 30px;
  display: none;
  z-index: 1000;
  box-shadow: #00000052 0 0 11px;
}

/* ----------------------------------------------------------------------------------------- BACK TO TOP */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background: transparent;
  color: rgba(147, 147, 147, 0.639);
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
}

#backToTopBtn:hover {
  opacity: 0.6;
}

/* ----------------------------------------------------------------------------------------- SHAKE */
@keyframes shake {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-2px);
  }

  40% {
    transform: translateX(2px);
  }

  60% {
    transform: translateX(-2px);
  }

  80% {
    transform: translateX(2px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake:hover {
  animation: shake 0.3s ease-in-out;
  animation-iteration-count: 1;
}

.shake {
  transition: transform 0.3s ease-in-out;
}

/* --------------------------------------------------------------------------------------- FORMS */

label._form-label {
  display: none !important;
}

._button-wrapper {
  margin: 0px 12.5px 0 10px !important;
}

._submit {
  margin-top: 0 !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

._form_element {
  margin-bottom: 0 !important;
}

._inline-style input[type='text'] {
  width: 529px !important;
  padding: 13px 12px !important;
}

#_form_47_ ._form-thank-you {
  background: var(--wb-surface) !important;
  color: var(--wb-text) !important;
  border: 1px solid var(--wb-border);
  padding: 20px;
  border-radius: 5px;
  margin-top: 8px;
}

._form-content {
  display: flex !important;
  align-items: center !important;
  justify-content: center;
}

button#_form_61_submit:hover {
  background-color: var(--wb-blue-hover) !important;
}

button#_form_11_submit:hover {
  background-color: var(--wb-blue-hover) !important;
}

button#_form_47_submit:hover {
  background-color: var(--wb-blue-hover) !important;
}

._form_11 {
  margin: 0 !important;
  padding: 0 !important;
  margin-left: -56px !important;
}

._form_11 #fullname {
  width: 250px !important;
  border-radius: 5px !important;
  margin: 0 !important;
}

._form_11 input#email {
  width: 250px !important;
  padding: 12px !important;
}

button#_form_61_submit {
  text-transform: uppercase !important;
  font-weight: 500 !important;
  letter-spacing: 0.09rem !important;
  padding: 14px 24px !important;
  margin: 0 !important;
}

/* -------------------------------------------------------------------------------------- WEBINARS */

.presenter-imgs img {
  border: 2px solid white;
}

.second-presenter img {
  margin-left: -23px;
}

span.read-less-toggle,
span.read-more-toggle {
  color: var(--wb-blue);
  cursor: pointer;
  font-style: italic;
}

/* --------------------------------------------------------------------------------------  HIDE */
.audiobooks-pg .box-title {
  display: none;
}

/* -------------------------------------------------------------------------------------- LANDING PAGE */
.bg-landing-gifts {
  width: 100%;
  bottom: -7px;
  height: 128px !important;
}

/* --------------------------------------------------------------------------------------- TRADING TERMINAL */
.tt-bg-red {
  background: var(--wb-blue) !important;
}
/* ---------------------------------------------------------------------------------------  MEDIA QUERIES */

@media (min-width: 2300px) {
  .container-inner {
    max-width: 60vw;
  }
}

@media (max-width: 1700px) {
  .container-inner {
    max-width: 98vw;
  }

  .wrapper {
    max-width: 75vw !important;
  }
}

@media (max-width: 1500px) {
  hr.dotted-path-line {
    display: none;
  }
  ._form-content {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  input#email {
    width: 100%;
    /* max-width: 200px; */
  }
  ._form {
    padding: 0 0 18px 0 !important;
  }
  .mt-neg-13 {
    margin-top: 1rem;
  }
}

@media (min-width: 1200px) {
  .w-xl-50 {
    width: 50% !important;
  }

  .w-xl-75 {
    width: 70% !important;
  }
}

@media (max-width: 1228px) {
  .mentor-images img {
    width: 111px;
  }
}

@media (max-width: 1200px) {
  .wrapper {
    max-width: 100vw !important;
  }
  .mt-min-30 {
    margin-top: 10px;
  }
  .sub-page-title {
    font-size: 34px;
    line-height: 53px;
  }
  .h-800 {
    height: fit-content;
  }
}

@media (min-width: 992px) {
  .mt-lg-neg-5 {
    margin-top: -70px !important;
  }

  .g-lg-6 {
    gap: 6rem;
  }
}

@media (max-width: 992px) {
  .cube {
    background: #f7f7f7;
    border-radius: 20px;
    padding: 1rem;
    min-width: 250px !important;
  }
  .neg-mt-70 {
    margin-top: 1rem;
  }
  .carousel-testimonial-controls {
    height: 41px;
    bottom: 0 !important;
    position: inherit;
    left: 0;
    top: 397px;
  }

  ._form-content {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  ._inline-style input[type='text'] {
    width: 100% !important;
    max-width: 529px !important;
  }
  ._submit {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  iframe {
    max-width: fit-content;
  }
  .py-13 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  #backToTopBtn {
    right: 0px;
  }
  ._form_11 {
    margin-left: 0px !important;
  }
  .py-6 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .d-grid.footer-button {
    display: block !important;
  }
  .hero-retreat-thailand {
    height: 100%;
  }
}
@media (max-width: 576px) {
  .carousel-testimonial-controls {
    display: none;
  }
  .img-square {
    width: 250px;
    height: 250px;
    object-fit: cover;
  }
  .mentor-images img {
    width: 61px;
  }

  .container-inner {
    max-width: 100vw;
  }

  .title {
    font-size: 51px !important;
  }

  h2 {
    font-size: 23px;
    line-height: 2.1rem;
    max-width: 22ch;
    margin: 0 auto;
  }
  .fs-42 {
    font-size: 30px;
    line-height: normal;
  }
}

@media (min-width: 576px) {
  .w-sm-100 {
    width: fit-content !important;
  }
  .px-sm-6 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
}

/* Custom dark theme overrides */
.bg-white {
  background-color: #0c0c0c !important;
}

.text-black,
.text-dark {
  color: white !important;
}

.text-lt-black {
  color: #cccccc !important;
}

/* Update borders for dark theme */
.border {
  border-color: #333333 !important;
}

/* Ensure all headings are white */
h1,
h2,
h3,
h4 {
  color: white !important;
}

/* Update link colors for better visibility */
a:not(.btn) {
  color: #ffffff;
}

a:not(.btn):hover {
  color: #cccccc;
}

/* Card backgrounds */
.card {
  background-color: #0c0c0c !important;
  color: white !important;
}

/* Bootstrap Modal overrides */
.modal-content {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 20px !important;
}

.modal-header,
.modal-footer {
  border-color: #dee2e6 !important;
}

/* .modal-header {
  background-color: #ffffff !important;
} */

.modal-body {
  /* background-color: #ffffff !important; */
  padding: 2rem !important;
}

.modal-title {
  color: #000000 !important;
}

/* Form inputs in modal */
.modal input:not([type='submit']):not([type='button']),
.modal textarea,
.modal select {
  background-color: #f8f9fa !important;
  color: #000000 !important;
  border: 1px solid #ced4da !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
}

.modal input:not([type='submit']):not([type='button']):focus,
.modal textarea:focus,
.modal select:focus {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: var(--wb-blue) !important;
  box-shadow: 0 0 0 0.2rem var(--wb-blue-glow) !important;
}

.modal ::placeholder {
  color: #6c757d !important;
  opacity: 1;
}

/* Close button in modal */
.modal .btn-close {
  filter: invert(0);
}

/* Form inputs - Dark theme for main pages */
input:not([type='submit']):not([type='button']):not(.modal input),
textarea:not(.modal textarea),
select:not(.modal select) {
  /* background-color: #2a2a2a !important; */
  color: white !important;
  border-color: #444444 !important;
}

input:not([type='submit']):not([type='button']):not(.modal input):focus,
textarea:not(.modal textarea):focus,
select:not(.modal select):focus {
  background-color: #333333 !important;
  color: white !important;
  border-color: var(--wb-blue) !important;
}

/* Placeholder text */
::placeholder {
  color: #888888 !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #888888 !important;
}

:-ms-input-placeholder {
  color: #888888 !important;
}

/* Price Chart Styles - Make cards readable */
.rounded-4 {
  background-color: #1a1a1a !important;
  color: white !important;
}

.text-lt-black {
  color: white !important;
}

.text-body-tertiary {
  color: #888888 !important;
}

/* Button outline styles - red border in normal state */
.btn-outline-dark {
  color: white !important;
  background-color: transparent !important;
  border: 1px solid var(--wb-blue) !important;
}

.btn-outline-dark:hover {
  background-color: var(--wb-blue) !important;
  border-color: var(--wb-blue) !important;
  color: white !important;
}

/* Price cards hover effect */
.hover-glide-up:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

/* Fix white backgrounds in price cards */
.list-group-item {
  background-color: #1a1a1a !important;
  color: white !important;
}

.list-group {
  background-color: transparent !important;
}

/* Fix text colors in lists */
.fs-small {
  color: white !important;
}

.text-body-tertiary .fs-small,
.text-body-tertiary.fs-small {
  color: #888888 !important;
}

/* Accordion Dark Theme Styles */
.accordion-item {
  background-color: #1a1a1a !important;
  border: 1px solid #333333 !important;
  color: white !important;
}

.accordion-button {
  background-color: #1a1a1a !important;
  color: white !important;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: #1a1a1a !important;
  color: white !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  background-color: #1a1a1a !important;
  color: white !important;
}

.accordion-button:hover {
  background-color: #252525 !important;
}

.accordion-body {
  background-color: #1a1a1a !important;
  color: #cccccc !important;
  border-top: 1px solid #333333 !important;
}

.accordion-button::after {
  filter: invert(1) brightness(2);
}

/* Custom light glass theme overrides */
.bg-white {
  background-color: var(--wb-surface-strong) !important;
}

.text-black,
.text-dark {
  color: var(--wb-text) !important;
}

.text-lt-black,
.text-body-tertiary {
  color: var(--wb-muted) !important;
}

.border {
  border-color: var(--wb-border) !important;
}

h1,
h2,
h3,
h4 {
  color: var(--wb-text) !important;
}

a:not(.btn) {
  color: var(--wb-blue);
}

a:not(.btn):hover {
  color: var(--wb-blue-hover);
}

.card,
.rounded-4,
.modal-content,
.accordion-item,
.list-group-item {
  background-color: var(--wb-surface) !important;
  color: var(--wb-text) !important;
  border: 1px solid var(--wb-border) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.card:hover,
.rounded-4:hover,
.accordion-item:hover,
.list-group-item:hover {
  border-color: rgba(24, 119, 242, 0.34) !important;
  box-shadow: 0 0 18px var(--wb-blue-glow);
}

.modal-content {
  border-radius: 20px !important;
}

.modal-header,
.modal-footer {
  border-color: var(--wb-border) !important;
}

.modal-body {
  padding: 2rem !important;
}

.modal-title {
  color: var(--wb-text) !important;
}

.modal input:not([type='submit']):not([type='button']),
.modal textarea,
.modal select,
input:not([type='submit']):not([type='button']):not(.modal input),
textarea:not(.modal textarea),
select:not(.modal select) {
  background-color: rgba(255, 255, 255, 0.86) !important;
  color: var(--wb-text) !important;
  border: 1px solid rgba(100, 116, 139, 0.28) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
}

.modal input:not([type='submit']):not([type='button']):focus,
.modal textarea:focus,
.modal select:focus,
input:not([type='submit']):not([type='button']):not(.modal input):focus,
textarea:not(.modal textarea):focus,
select:not(.modal select):focus {
  background-color: #ffffff !important;
  color: var(--wb-text) !important;
  border-color: var(--wb-blue) !important;
  box-shadow: 0 0 0 0.2rem var(--wb-blue-glow) !important;
}

.modal ::placeholder,
::placeholder {
  color: var(--wb-muted) !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--wb-muted) !important;
}

:-ms-input-placeholder {
  color: var(--wb-muted) !important;
}

.modal .btn-close {
  filter: none;
}

.btn-outline-dark {
  color: var(--wb-blue) !important;
  background-color: rgba(255, 255, 255, 0.42) !important;
  border: 1px solid var(--wb-blue) !important;
}

.btn-outline-dark:hover {
  background-color: var(--wb-blue) !important;
  border-color: var(--wb-blue) !important;
  color: #ffffff !important;
  box-shadow: 0 0 18px var(--wb-blue-glow);
}

.hover-glide-up:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.list-group {
  background-color: transparent !important;
}

.fs-small {
  color: var(--wb-text) !important;
}

.text-body-tertiary .fs-small,
.text-body-tertiary.fs-small {
  color: var(--wb-muted) !important;
}

.accordion-button {
  background-color: transparent !important;
  color: var(--wb-text) !important;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(24, 119, 242, 0.08) !important;
  color: var(--wb-blue-hover) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem var(--wb-blue-glow) !important;
  background-color: rgba(24, 119, 242, 0.08) !important;
  color: var(--wb-blue-hover) !important;
}

.accordion-button:hover {
  background-color: rgba(24, 119, 242, 0.08) !important;
}

.accordion-body {
  background-color: rgba(255, 255, 255, 0.58) !important;
  color: var(--wb-muted) !important;
  border-top: 1px solid var(--wb-border) !important;
}

.accordion-button::after {
  filter: none;
}

/* intl-tel-input dropdown tweaks: keep it above modals and constrained in height */
.iti__country-list {
  z-index: 21000 !important;
  /* overflow-y: auto !important; */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
}

.iti__country-list .iti__country {
  white-space: nowrap;
}
.iti__search,
.iti__search-input,
.iti__country-list .iti__search {
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}
