/* =============================================================
   bigdot-wizard-v2.css
   BigDot Onboarding Chatbot Widget
   Mobile-first · Bootstrap 5.3 compatible
   Class convention: bdWiz[Component][Element][Modifier] â€” camelCase, no BEM separators
   ============================================================= */

/* 1. Project CSS Variables */

/* :root {
  --site-primary-font: "Plus Jakarta Sans", sans-serif;
  --site-secondary-font: "Cormorant Garamond", Georgia, serif;
  --site-tertiary-font: "Bricolage Grotesque", sans-serif;
  --site-primary-color: #1c2d64;
  --site-secondary-color: #f2f4ff;
  --site-tertiary-color: #2255e8;
  --site-quaternary-color: #f15a25;
  --site-text-color: #1c1a16;
  --site-text-muted-color: #808080;
} */

/* 2. Base Page */
.bdWizPage {
  font-family: var(--site-primary-font);
  background-color: #ffffff;
  color: var(--site-text-color);
  min-height: 100vh;
}

/* 3. Demo Hero */
.bdWizDemoHero {
  min-height: 100vh;
  background: linear-gradient(
    150deg,
    var(--site-secondary-color) 0%,
    #dce4ff 60%,
    #f0ecff 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 6rem;
}

.bdWizDemoHeroEyebrow {
  font-family: var(--site-primary-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--site-tertiary-color);
  margin-bottom: 1rem;
}

.bdWizDemoHeroTitle {
  font-family: var(--site-secondary-font);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--site-primary-color);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.bdWizDemoHeroSubtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: var(--site-text-muted-color);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.bdWizDemoHeroTagline {
  font-size: 13px;
  color: var(--site-text-muted-color);
  margin-top: 1rem;
}

.bdWizDemoHeroStat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.bdWizDemoHeroStatNum {
  font-family: var(--site-tertiary-font);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--site-primary-color);
  line-height: 1.1;
}

.bdWizDemoHeroStatLabel {
  font-size: 11px;
  color: var(--site-text-muted-color);
  letter-spacing: 0.5px;
}

.bdWizDemoHeroDivider {
  width: 1px;
  height: 40px;
  background: rgba(28, 45, 100, 0.15);
}

/* 4. Floating Trigger Button */
.bdWizTriggerWrap {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 1050;
}

.bdWizTriggerBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--site-quaternary-color);
  color: #ffffff;
  border: none;
  border-radius: 60px;
  padding: 11px 18px 11px 12px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(241, 90, 37, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-family: var(--site-primary-font);
  text-align: left;
  position: relative;
}

.bdWizTriggerBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(241, 90, 37, 0.55);
}

.bdWizTriggerBtn:active {
  transform: scale(0.97);
}

.bdWizTriggerBtnIcon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.bdWizTriggerBtnLabel {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.bdWizTriggerBtnLabelMain {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.bdWizTriggerBtnLabelSub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.88;
  white-space: nowrap;
}

.bdWizTriggerBadge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 13px;
  height: 13px;
  background: #2ecc71;
  border-radius: 50%;
  border: 2px solid #ffffff;
  animation: bdWizBadgePulse 2s infinite;
}

@keyframes bdWizBadgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(46, 204, 113, 0);
  }
}

/* Compact on very small screens */
@media (max-width: 380px) {
  .bdWizTriggerBtnLabel {
    display: none;
  }

  .bdWizTriggerBtn {
    padding: 12px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    justify-content: center;
  }

  .bdWizTriggerBtnIcon {
    width: 30px;
    height: 30px;
    background: none;
    font-size: 22px;
  }
}

/* 5. Chat Widget Container */
/* Mobile-first: full screen slide-up */
.bdWizWidget {
  position: fixed;
  max-height: calc(100vh - 104px);
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  z-index: 1049;
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  transform-origin: bottom center;
  overflow: hidden;
}

.bdWizWidgetHidden {
  transform: translateY(100%);
  opacity: 0.5;
  pointer-events: none;
}

/* Tablet and up: floating chat window */
@media (min-width: 576px) {
  .bdWizWidget {
    inset: auto;
    bottom: 28px;
    right: 20px;
    width: 420px;
    height: 580px;
    border-radius: 20px;
    box-shadow:
      0 24px 64px rgba(28, 45, 100, 0.2),
      0 4px 16px rgba(28, 45, 100, 0.1);
    transform-origin: bottom right;
  }

  .bdWizWidgetHidden {
    transform: scale(0.88) translateY(16px);
    opacity: 0;
    pointer-events: none;
  }

  .bdWizTriggerWrap {
    bottom: 24px;
    right: 24px;
  }
}

@media (max-width: 767px) {
  .bdWizWidget {
    max-height: calc(100vh - 40px) !important;
  }
}

@media (min-width: 768px) {
  .bdWizWidget {
    width: 460px;
    height: 620px;
    right: 28px;
    bottom: 28px;
  }

  .bdWizField .bdWizFormGroup {
    margin-bottom: 0px;
  }

  .bdWizTriggerWrap {
    bottom: 28px;
    right: 28px;
  }

  /* .bdWizTriggerWrap {
    bottom: 120px !important;
  } */
}

@media (min-width: 1200px) {
  .bdWizWidget {
    width: 500px;
    height: 640px;
  }
}

/* 6. Widget Header */
.bdWizHeader {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  background: var(--site-primary-color);
  flex-shrink: 0;
  border-radius: 0;
}

@media (min-width: 576px) {
  .bdWizHeader {
    border-radius: 20px 20px 0 0;
  }
}

.bdWizHeaderAvatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  position: relative;
}

.bdWizHeaderAvatarStatus {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background: #2ecc71;
  border-radius: 50%;
  border: 2px solid var(--site-primary-color);
}

.bdWizHeaderInfo {
  flex: 1;
  min-width: 0;
}

.bdWizHeaderName {
  font-family: var(--site-primary-font);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.bdWizHeaderStatus {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.4;
}

.bdWizHeaderOnlineDot {
  color: #2ecc71;
}

.bdWizProgress {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.bdWizProgressBar {
  width: 72px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.bdWizProgressFill {
  height: 100%;
  background: linear-gradient(90deg, #a8c0ff, #ffffff);
  border-radius: 10px;
  transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.bdWizProgressLabel {
  font-family: var(--site-primary-font);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.bdWizHeaderCloseBtn {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.2s;
}

.bdWizHeaderCloseBtn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.bdWizHeaderResetBtn {
  width: auto;
  height: 30px;
  border-radius: 100px;
  padding: 0 10px;
  gap: 6px;
  font-family: var(--site-primary-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

/* 7. Chat Area */
.bdWizChatArea {
  flex: 1;
  overflow-y: auto;
  padding: 18px 14px;
  scroll-behavior: smooth;
  background: #fafbff;
}

.bdWizChatArea::-webkit-scrollbar {
  width: 4px;
}

.bdWizChatArea::-webkit-scrollbar-thumb {
  background: var(--site-primary-color);
  border-radius: 10px;
}

.bdWizDateSep {
  text-align: center;
  font-size: 11px;
  color: var(--site-text-muted-color);
  margin: 6px 0 16px;
  letter-spacing: 0.4px;
  font-family: var(--site-primary-font);
}

/* 8. Message Rows & Bubbles */
.bdWizMsgRow {
  display: flex;
  margin-bottom: 8px;
  animation: bdWizFadeUp 0.32s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.bdWizMsgRowBot {
  align-items: flex-end;
}

.bdWizMsgRowUser {
  flex-direction: row-reverse;
}

.bdWizMsgAvatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--site-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-right: 8px;
  margin-bottom: 2px;
}

.bdWizBubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.58;
  font-family: var(--site-primary-font);
}

.bdWizBubbleBot {
  background: #ffffff;
  color: var(--site-text-color);
  border-bottom-left-radius: 5px;
  border: 1px solid rgba(28, 45, 100, 0.1);
  box-shadow: 0 1px 5px rgba(28, 45, 100, 0.06);
}

.bdWizBubbleUser {
  background: var(--site-primary-color);
  color: #ffffff;
  font-weight: 500;
  border-bottom-right-radius: 5px;
}

.bdWizTextMuted {
  color: var(--site-text-muted-color);
  font-size: 0.85em;
}

/* 9. Typing Indicator */
.bdWizTypingWrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}

.bdWizTypingBubble {
  background: #ffffff;
  border: 1px solid rgba(28, 45, 100, 0.1);
  box-shadow: 0 1px 5px rgba(28, 45, 100, 0.06);
  padding: 11px 14px;
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  display: flex;
  gap: 5px;
  align-items: center;
  animation: bdWizFadeUp 0.3s ease both;
}

.bdWizDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c0c8df;
  animation: bdWizBounce 1.2s infinite ease-in-out;
}

.bdWizDot:nth-child(2) {
  animation-delay: 0.2s;
}

.bdWizDot:nth-child(3) {
  animation-delay: 0.4s;
}

/* 10. Input Dock */
.bdWizDock {
  padding: 11px 13px 14px;
  background: #ffffff;
  border-top: 1px solid rgba(28, 45, 100, 0.08);
  flex-shrink: 0;
}

@media (min-width: 576px) {
  .bdWizDock {
    border-radius: 0 0 20px 20px;
  }
}

.bdWizInputRow {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

/* 11. Text Input */
.bdWizInputBox {
  flex: 1;
  min-width: 0;
  background: var(--site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.14);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: var(--site-primary-font);
  color: var(--site-text-color);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  resize: none;
  min-height: 44px;
  line-height: 1.45;
}

.bdWizInputBox::placeholder {
  color: var(--site-text-muted-color);
}

.bdWizInputBox:focus {
  border-color: var(--site-tertiary-color);
  background: #ffffff;
}

.bdWizInputBoxError {
  border-color: #d93025;
}

.bdWizInputBoxReadonly {
  opacity: 0.6;
  cursor: default;
  background: #eef0f8;
}

/* 12. Send Button */
.bdWizSendBtn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--site-tertiary-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.15s,
    background 0.2s;
}

.bdWizSendBtn:hover {
  background: var(--site-primary-color);
  transform: scale(1.07);
}

.bdWizSendBtn:active {
  transform: scale(0.94);
}

.bdWizSendBtn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.bdWizSendBtn svg {
  fill: #ffffff;
}

/* 13. Hint / Error Text */
.bdWizHint {
  font-size: 11.5px;
  color: #d93025;
  margin-top: 5px;
  padding-left: 2px;
  min-height: 16px;
  font-family: var(--site-primary-font);
  transition: opacity 0.2s;
}

.bdWizHintOk {
  color: #1a8a4a;
}

/* 14. Autocomplete Dropdown */
.bdWizAutocompleteWrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

/* .bdWizDropdown.bdWizFullDropdown {
    bottom: calc(100% + -250px);
} */

.bdWizAutocompleteWrap .bdWizInputBox {
  width: 100%;
}

.bdWizDropdown {
  position: absolute;
  bottom: calc(100% + 0px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid rgba(28, 45, 100, 0.12);
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 200;
  box-shadow: 0 8px 28px rgba(28, 45, 100, 0.14);
  animation: bdWizFadeUp 0.2s ease both;
}

.bdWizDropdown::-webkit-scrollbar {
  width: 4px;
}

.bdWizDropdown::-webkit-scrollbar-thumb {
  background: var(--site-primary-color);
  border-radius: 10px;
}

.bdWizDropdownItem {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--site-primary-font);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(28, 45, 100, 0.06);
  transition: background 0.15s;
  color: var(--site-text-color);
}

.bdWizDropdownItem:last-child {
  border: none;
}

.bdWizDropdownItem:hover,
.bdWizDropdownItemActive {
  background: var(--site-secondary-color);
}

.bdWizDropdownItemFlag {
  font-size: 18px;
  flex-shrink: 0;
}

.bdWizDropdownItemMeta {
  font-size: 11px;
  color: var(--site-text-muted-color);
  margin-top: 1px;
}

/* 15. Selection Chips */
.bdWizChipsWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 2px 0 6px;
  max-height: 148px;
  overflow-y: auto;
}

.bdWizChipsWrap::-webkit-scrollbar {
  width: 3px;
}

.bdWizChipsWrap::-webkit-scrollbar-thumb {
  background: #dde2f0;
  border-radius: 10px;
}

.bdWizChip {
  padding: 6px 13px;
  border-radius: 100px;
  background: var(--site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.15);
  font-size: 12.5px;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
  white-space: nowrap;
  user-select: none;
}

.bdWizChip:hover {
  border-color: var(--site-tertiary-color);
  color: var(--site-primary-color);
  background: rgba(34, 85, 232, 0.06);
}

.bdWizChipSelected {
  background: rgba(34, 85, 232, 0.08);
  border-color: var(--site-tertiary-color);
  color: var(--site-tertiary-color);
  font-weight: 600;
}

/* 16. OTP Inputs */
.bdWizOtpWrap {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 4px 0;
}

.bdWizOtpDigit {
  width: 44px;
  height: 52px;
  background: var(--site-secondary-color);
  border: 2px solid rgba(28, 45, 100, 0.15);
  border-radius: 10px;
  text-align: center;
  font-size: 22px;
  font-family: var(--site-primary-font);
  font-weight: 700;
  color: var(--site-primary-color);
  outline: none;
  transition:
    border-color 0.2s,
    transform 0.15s,
    background 0.2s;
  caret-color: var(--site-tertiary-color);
}

.bdWizOtpDigit:focus {
  border-color: var(--site-tertiary-color);
  background: #ffffff;
  transform: scale(1.06);
}

.bdWizOtpDigitFilled {
  border-color: var(--site-primary-color);
  background: rgba(28, 45, 100, 0.05);
}

.bdWizOtpDigitError {
  border-color: #d93025;
  animation: bdWizShake 0.35s ease;
}

/* 17. Resend Row */
.bdWizResendRow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
}

.bdWizResendBtn {
  background: none;
  border: none;
  color: var(--site-tertiary-color);
  cursor: pointer;
  font-size: 12px;
  font-family: var(--site-primary-font);
  font-weight: 600;
  padding: 0;
  transition: color 0.2s;
}

.bdWizResendBtn:hover {
  color: var(--site-primary-color);
}

.bdWizResendBtn:disabled {
  color: var(--site-text-muted-color);
  cursor: default;
}

/* 18. Address Fields */
.bdWizAddrFields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bdWizAddrRow {
  display: flex;
  gap: 8px;
}

.bdWizAddrRow .bdWizInputBox {
  flex: 1;
  min-width: 0;
}

.bdWizFieldLabel {
  font-size: 10px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  margin-bottom: 3px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: var(--site-primary-font);
}

/* 19. Phone Flag Box */
.bdWizFlagBox {
  background: var(--site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.14);
  border-radius: 12px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--site-text-color);
  font-size: 13px;
  white-space: nowrap;
  cursor: default;
  font-family: var(--site-primary-font);
  flex-shrink: 0;
  height: 44px;
}

/* 20. Map Preview */
.bdWizMapPreview {
  width: 100%;
  height: 112px;
  background: var(--site-secondary-color);
  border-radius: 12px;
  border: 1px solid rgba(28, 45, 100, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.bdWizMapGrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 45, 100, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 45, 100, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}

.bdWizMapRoads {
  position: absolute;
  inset: 0;
}

.bdWizMapPin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 26px;
  filter: drop-shadow(0 3px 6px rgba(28, 45, 100, 0.3));
}

.bdWizMapCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(34, 85, 232, 0.08);
  border: 1.5px solid rgba(34, 85, 232, 0.35);
  animation: bdWizRipple 2s infinite;
}

/* 21. Success Screen */
.bdWizSuccess {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 20px;
  text-align: center;
  animation: bdWizFadeUp 0.5s ease both;
}

.bdWizSuccessIcon {
  width: 72px;
  height: 72px;
  background: rgba(34, 85, 232, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 14px;
  border: 2px solid rgba(34, 85, 232, 0.25);
  animation: bdWizSuccessPulse 2.5s infinite;
}

.bdWizSuccessTitle {
  font-family: var(--site-primary-font);
  font-size: 19px;
  font-weight: 700;
  color: var(--site-primary-color);
  margin-bottom: 6px;
}

.bdWizSuccessSubtitle {
  color: var(--site-text-muted-color);
  font-size: 13px;
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto 18px;
}

/* 22. Summary Card */
.bdWizSummaryCard {
  background: var(--site-secondary-color);
  border: 1px solid rgba(28, 45, 100, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  width: 100%;
  text-align: left;
}

.bdWizSummaryRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(28, 45, 100, 0.07);
  font-size: 12.5px;
  font-family: var(--site-primary-font);
  gap: 8px;
}

.bdWizSummaryRow:last-child {
  border: none;
}

.bdWizSummaryRowKey {
  color: var(--site-text-muted-color);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.bdWizSummaryRowVal {
  color: var(--site-primary-color);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
  min-width: 0;
}

/* 23. Demo OTP Badge */
.bdWizDemoBadge {
  display: inline-block;
  background: rgba(34, 85, 232, 0.07);
  border: 1px solid rgba(34, 85, 232, 0.2);
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 12px;
  color: var(--site-tertiary-color);
  font-family: var(--site-primary-font);
  margin-top: 6px;
}

/* 24. Utility */
.bdWizHidden {
  display: none !important;
}

#bdWizScrollAnchor {
  height: 1px;
}

/* 25. Keyframe Animations */
@keyframes bdWizFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes bdWizBounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

@keyframes bdWizShake {
  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-5px);
  }

  40%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes bdWizPinDrop {
  from {
    transform: translate(-50%, -120%);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -60%);
    opacity: 1;
  }
}

@keyframes bdWizRipple {
  0% {
    width: 36px;
    height: 36px;
    opacity: 1;
  }

  100% {
    width: 84px;
    height: 84px;
    opacity: 0;
  }
}

@keyframes bdWizSuccessPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 85, 232, 0.2);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(34, 85, 232, 0);
  }
}

/* =============================================================
   PUBLISH MY ECOMMERCE STORE WIZARD
   Prefix: bdWizPub Â· Mobile-first · Bootstrap 5.3
   ============================================================= */

/* Pub Base Page */
.bdWizPubPage {
  background: #f7f9ff;
  min-height: 100vh;
}

/* Header */
.bdWizPubHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid rgba(28, 45, 100, 0.1);
  box-shadow: 0 1px 8px rgba(28, 45, 100, 0.07);
}

.bdWizPubHeaderInner {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  gap: 12px;
}

.bdWizPubLogo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  flex-shrink: 0;
}

.bdWizPubLogoBullet {
  color: var(--site-quaternary-color);
  font-size: 9px;
}

.bdWizPubLogoText {
  font-family: var(--site-tertiary-font);
  font-weight: 700;
  font-size: 17px;
  color: var(--site-primary-color);
}

.bdWizPubHeaderCenter {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.bdWizPubHeaderTitle {
  font-family: var(--site-primary-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdWizPubHeaderRight {
  flex-shrink: 0;
}

.bdWizPubStepPill {
  font-size: 11px;
  font-family: var(--site-primary-font);
  font-weight: 700;
  color: var(--site-tertiary-color);
  background: rgba(34, 85, 232, 0.09);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.bdWizPubTopBar {
  height: 3px;
  background: rgba(28, 45, 100, 0.08);
}

.bdWizPubTopBarFill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--site-tertiary-color),
    var(--site-quaternary-color)
  );
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

@media (max-width: 479px) {
  .bdWizPubHeaderTitle {
    display: none;
  }
}

/* Layout */
.bdWizPubLayout {
  display: flex;
  min-height: 100vh;
  padding-top: 56px;
  padding-bottom: 72px;
}

/* Sidebar */
.bdWizPubSidebar {
  display: none;
}

@media (min-width: 992px) {
  .bdWizPubSidebar {
    display: block;
    width: 256px;
    flex-shrink: 0;
    padding: 28px 0 28px 20px;
    position: sticky;
    top: 56px;
    height: calc(100vh - 56px);
    overflow-y: auto;
    border-right: 1px solid rgba(28, 45, 100, 0.07);
    background: #fff;
  }
}

.bdWizPubSidebarLabel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin-bottom: 12px;
  padding-left: 12px;
  font-family: var(--site-primary-font);
}

.bdWizPubStepNav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.bdWizPubStepItem {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.bdWizPubStepItem:hover {
  background: rgba(28, 45, 100, 0.04);
}

.bdWizPubStepItemActive {
  background: rgba(34, 85, 232, 0.07);
}

.bdWizPubStepNum {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(28, 45, 100, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--site-text-muted-color);
  flex-shrink: 0;
  font-family: var(--site-primary-font);
  transition:
    background 0.2s,
    color 0.2s;
}

.bdWizPubStepItemActive .bdWizPubStepNum {
  background: var(--site-tertiary-color);
  color: #fff;
}

.bdWizPubStepItemDone .bdWizPubStepNum {
  background: #1a8a4a;
  color: #fff;
  font-size: 13px;
}

.bdWizPubStepInfo {
  flex: 1;
  min-width: 0;
}

.bdWizPubStepTitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
  line-height: 1.3;
}

.bdWizPubStepItemActive .bdWizPubStepTitle {
  color: var(--site-primary-color);
}

.bdWizPubStepItemDone .bdWizPubStepTitle {
  color: #1a8a4a;
}

.bdWizPubStepDesc {
  font-size: 11px;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
  margin-top: 1px;
}

/* Main Content */
.bdWizPubMain {
  flex: 1;
  min-width: 0;
  padding: 28px 16px 16px;
  max-width: 780px;
}

@media (min-width: 768px) {
  .bdWizPubMain {
    padding: 36px 36px 24px;
  }
}

/* Panels */
.bdWizPubPanel {
  display: none;
  animation: bdWizFadeUp 0.3s ease both;
}

.bdWizPubPanelActive {
  display: block;
}

/* Welcome Screen */
.bdWizPubWelcome {
  text-align: center;
  padding: 8px 0 24px;
}

.bdWizPubWelcomeIcon {
  font-size: 52px;
  margin-bottom: 14px;
  display: block;
}

.bdWizPubEyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--site-tertiary-color);
  margin-bottom: 10px;
  font-family: var(--site-primary-font);
}

.bdWizPubWelcomeTitle {
  font-family: var(--site-secondary-font);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--site-primary-color);
  line-height: 1.2;
  margin-bottom: 14px;
}

.bdWizPubWelcomeSubtitle {
  font-size: 15px;
  color: var(--site-text-muted-color);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-family: var(--site-primary-font);
}

.bdWizPubOverviewGrid {
  max-width: 560px;
  margin: 0 auto 20px;
}

.bdWizPubOverviewCard {
  background: #fff;
  border: 1.5px solid rgba(28, 45, 100, 0.1);
  border-radius: 14px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  height: 100%;
}

.bdWizPubOverviewCard:hover {
  border-color: var(--site-tertiary-color);
  box-shadow: 0 4px 16px rgba(34, 85, 232, 0.1);
}

.bdWizPubOverviewIcon {
  font-size: 26px;
}

.bdWizPubOverviewLabel {
  font-size: 12px;
  font-weight: 600;
  color: var(--site-primary-color);
  font-family: var(--site-primary-font);
  text-align: center;
  line-height: 1.3;
}

.bdWizPubWelcomeNote {
  font-size: 13px;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
  margin-top: 4px;
}

/* Panel Header */
.bdWizPubPanelHd {
  margin-bottom: 22px;
}

.bdWizPubPanelIconWrap {
  font-size: 34px;
  margin-bottom: 10px;
  display: block;
}

.bdWizPubPanelTitle {
  font-family: var(--site-secondary-font);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--site-primary-color);
  margin-bottom: 5px;
  line-height: 1.2;
}

.bdWizPubPanelSubtitle {
  font-size: 14px;
  color: var(--site-text-muted-color);
  margin: 0;
  font-family: var(--site-primary-font);
  line-height: 1.6;
}

/* Cards */
.bdWizPubCard {
  background: #fff;
  border: 1.5px solid rgba(28, 45, 100, 0.1);
  border-radius: 16px;
  padding: 20px;
}

.bdWizPubCardTitle {
  font-family: var(--site-primary-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--site-primary-color);
  margin-bottom: 6px;
}

.bdWizPubCardSubtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  margin-bottom: 12px;
  font-family: var(--site-primary-font);
}

.bdWizPubCardDesc {
  font-size: 13px;
  color: var(--site-text-muted-color);
  margin-bottom: 14px;
  line-height: 1.6;
  font-family: var(--site-primary-font);
}

/* Form Controls */
.bdWizPubFormLabel {
  font-size: 12px;
  font-weight: 600;
  color: var(--site-text-color);
  margin-bottom: 5px;
  display: block;
  font-family: var(--site-primary-font);
}

.bdWizPubRequired {
  color: #d93025;
  margin-left: 2px;
}

.bdWizPubOptional {
  font-size: 10px;
  font-weight: 400;
  color: var(--site-text-muted-color);
  background: rgba(28, 45, 100, 0.06);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.bdWizPubFormInput.form-control,
.bdWizPubFormTextarea.form-control,
.bdWizPubFormSelect.form-select {
  background-color: var(--site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.14);
  border-radius: 10px;
  font-family: var(--site-primary-font);
  font-size: 14px;
  color: var(--site-text-color);
  padding: 10px 13px;
}

.bdWizPubFormInput.form-control:focus,
.bdWizPubFormTextarea.form-control:focus,
.bdWizPubFormSelect.form-select:focus {
  border-color: var(--site-tertiary-color);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(34, 85, 232, 0.1);
}

.bdWizPubFormTextarea.form-control {
  resize: vertical;
  min-height: 70px;
}

/* Upload Zone */
.bdWizPubUploadZone {
  border: 2px dashed rgba(28, 45, 100, 0.2);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  background: var(--site-secondary-color);
  position: relative;
  overflow: hidden;
}

.bdWizPubUploadZone:hover {
  border-color: var(--site-tertiary-color);
  background: rgba(34, 85, 232, 0.04);
}

.bdWizPubUploadZoneSm {
  padding: 16px 20px;
}

.bdWizPubUploadIcon {
  font-size: 26px;
  display: block;
  margin-bottom: 7px;
}

.bdWizPubUploadTitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--site-primary-color);
  margin: 0 0 4px;
  font-family: var(--site-primary-font);
}

.bdWizPubUploadHint {
  font-size: 12px;
  color: var(--site-text-muted-color);
  margin: 0;
  font-family: var(--site-primary-font);
}

.bdWizPubUploadInput {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* Operating Hours */
.bdWizPubHoursGrid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bdWizPubHoursRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(28, 45, 100, 0.06);
}

.bdWizPubHoursRow:last-child {
  border-bottom: none;
}

.bdWizPubHoursDay {
  font-size: 12px;
  font-weight: 700;
  color: var(--site-text-color);
  width: 34px;
  flex-shrink: 0;
  font-family: var(--site-primary-font);
}

.bdWizPubHoursTimes {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.bdWizPubHoursSep {
  font-size: 12px;
  color: var(--site-text-muted-color);
  flex-shrink: 0;
}

.bdWizPubHoursInput {
  background: var(--site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.14);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 13px;
  font-family: var(--site-primary-font);
  color: var(--site-text-color);
  flex: 1;
  min-width: 0;
  outline: none;
}

.bdWizPubHoursInput:focus {
  border-color: var(--site-tertiary-color);
  background: #fff;
}

.bdWizPubHoursClosedLabel {
  font-size: 12px;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
  font-style: italic;
}

/* Toggle Switch */
.bdWizPubSwitch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.bdWizPubSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.bdWizPubSwitchTrack {
  position: absolute;
  inset: 0;
  background: rgba(28, 45, 100, 0.15);
  border-radius: 100px;
  transition: background 0.2s;
}

.bdWizPubSwitchTrack::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.bdWizPubSwitch input:checked + .bdWizPubSwitchTrack {
  background: var(--site-tertiary-color);
}

.bdWizPubSwitch input:checked + .bdWizPubSwitchTrack::after {
  transform: translateX(18px);
}

/* Toggle Row */
.bdWizPubToggleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bdWizPubToggleLabel {
  font-size: 14px;
  font-weight: 600;
  color: var(--site-text-color);
  margin: 0 0 2px;
  font-family: var(--site-primary-font);
}

.bdWizPubToggleDesc {
  font-size: 12px;
  color: var(--site-text-muted-color);
  margin: 0;
  font-family: var(--site-primary-font);
}

/* Payment / Delivery Check Cards */
.bdWizPubCheckCard {
  display: block;
  cursor: pointer;
  margin: 0;
}

.bdWizPubCheckCard input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bdWizPubCheckCardInner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid rgba(28, 45, 100, 0.12);
  background: var(--site-secondary-color);
  transition: all 0.18s;
  height: 100%;
}

.bdWizPubCheckCard input:checked + .bdWizPubCheckCardInner {
  border-color: var(--site-tertiary-color);
  background: rgba(34, 85, 232, 0.06);
  box-shadow: 0 0 0 2px rgba(34, 85, 232, 0.12);
}

.bdWizPubCheckCardIcon {
  font-size: 18px;
  flex-shrink: 0;
}

.bdWizPubCheckCardLabel {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--site-text-color);
  font-family: var(--site-primary-font);
  line-height: 1.3;
}

/* Outlet Cards */
.bdWizPubOutletCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.1);
  border-radius: 12px;
  margin-bottom: 8px;
  gap: 12px;
}

.bdWizPubOutletCardLeft {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.bdWizPubOutletIcon {
  font-size: 22px;
  flex-shrink: 0;
}

.bdWizPubOutletName {
  font-size: 14px;
  font-weight: 600;
  color: var(--site-primary-color);
  margin: 0;
  font-family: var(--site-primary-font);
}

.bdWizPubOutletAddr {
  font-size: 12px;
  color: var(--site-text-muted-color);
  margin: 2px 0 0;
  font-family: var(--site-primary-font);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdWizPubOutletBadge {
  font-size: 10px;
  font-weight: 700;
  background: var(--site-primary-color);
  color: #fff;
  padding: 3px 9px;
  border-radius: 100px;
  flex-shrink: 0;
  font-family: var(--site-primary-font);
  letter-spacing: 0.5px;
}

.bdWizPubOutletCount {
  font-size: 12px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  background: rgba(28, 45, 100, 0.07);
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--site-primary-font);
}

/* Category Tags */
.bdWizPubCategoryList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 36px;
}

.bdWizPubTagChip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(34, 85, 232, 0.07);
  border: 1.5px solid rgba(34, 85, 232, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--site-primary-color);
  font-family: var(--site-primary-font);
}

.bdWizPubTagRemove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--site-text-muted-color);
  font-size: 15px;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

.bdWizPubTagRemove:hover {
  color: #d93025;
}

/* Item List */
.bdWizPubItemList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bdWizPubItemRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--site-secondary-color);
  border-radius: 10px;
  border: 1px solid rgba(28, 45, 100, 0.08);
}

.bdWizPubItemRowLeft {
  flex: 1;
  min-width: 0;
}

.bdWizPubItemRowName {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--site-text-color);
  margin: 0;
  font-family: var(--site-primary-font);
}

.bdWizPubItemRowMeta {
  font-size: 12px;
  color: var(--site-text-muted-color);
  margin: 2px 0 0;
  font-family: var(--site-primary-font);
}

.bdWizPubItemRowPrice {
  font-size: 14px;
  font-weight: 700;
  color: var(--site-primary-color);
  font-family: var(--site-primary-font);
  flex-shrink: 0;
}

.bdWizPubItemRemoveBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--site-text-muted-color);
  font-size: 16px;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s;
}

.bdWizPubItemRemoveBtn:hover {
  color: #d93025;
}

.bdWizPubEmptyNote {
  font-size: 13px;
  color: var(--site-text-muted-color);
  text-align: center;
  padding: 20px 0;
  font-family: var(--site-primary-font);
  margin: 0;
}

/* Add / Action Buttons */
.bdWizPubBtnAddItem,
.bdWizPubBtnAddOutlet {
  background: rgba(34, 85, 232, 0.07);
  border: 1.5px solid rgba(34, 85, 232, 0.22);
  border-radius: 10px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--site-tertiary-color);
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--site-primary-font);
}

.bdWizPubBtnAddItem:hover,
.bdWizPubBtnAddOutlet:hover {
  background: rgba(34, 85, 232, 0.13);
  border-color: var(--site-tertiary-color);
}

/* Add Outlet Form */
.bdWizPubAddOutletForm {
  padding-top: 16px;
  border-top: 1px dashed rgba(28, 45, 100, 0.12);
}

.bdWizPubSkipNote {
  font-size: 12px;
  color: var(--site-text-muted-color);
  text-align: center;
  margin-top: 12px;
  font-family: var(--site-primary-font);
}

/* Review Grid */
.bdWizPubReviewGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .bdWizPubReviewGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.bdWizPubReviewCard {
  background: #fff;
  border: 1.5px solid rgba(28, 45, 100, 0.1);
  border-radius: 14px;
  padding: 16px;
}

.bdWizPubReviewCardHd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.bdWizPubReviewCardIcon {
  font-size: 17px;
}

.bdWizPubReviewCardTitle {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
}

.bdWizPubReviewCardEdit {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  color: var(--site-tertiary-color);
  font-family: var(--site-primary-font);
  font-weight: 600;
  padding: 0;
}

.bdWizPubReviewItem {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(28, 45, 100, 0.06);
  font-family: var(--site-primary-font);
}

.bdWizPubReviewItem:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bdWizPubReviewKey {
  font-size: 12px;
  color: var(--site-text-muted-color);
  flex-shrink: 0;
}

.bdWizPubReviewVal {
  font-size: 12px;
  font-weight: 600;
  color: var(--site-primary-color);
  text-align: right;
  word-break: break-word;
}

/* Go Live Banner */
.bdWizPubGoLiveBanner {
  background: linear-gradient(135deg, var(--site-primary-color), #2a4db0);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.bdWizPubGoLiveIcon {
  font-size: 36px;
  flex-shrink: 0;
}

.bdWizPubGoLiveTitle {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  font-family: var(--site-primary-font);
}

.bdWizPubGoLiveSubtitle {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
  font-family: var(--site-primary-font);
  line-height: 1.5;
}

/* Footer CTA Bar */
.bdWizPubFooter {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid rgba(28, 45, 100, 0.1);
  box-shadow: 0 -4px 16px rgba(28, 45, 100, 0.08);
}

.bdWizPubFooterInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 10px;
}

@media (min-width: 768px) {
  .bdWizPubFooterInner {
    padding: 14px 36px;
  }
}

.bdWizPubBtnBack {
  background: none;
  border: 1.5px solid rgba(28, 45, 100, 0.18);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--site-primary-font);
  white-space: nowrap;
}

.bdWizPubBtnBack:hover {
  border-color: var(--site-primary-color);
  color: var(--site-primary-color);
}

.bdWizPubBtnBack:disabled {
  opacity: 0.3;
  cursor: default;
}

.bdWizPubFooterRight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bdWizPubBtnSkip {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  cursor: pointer;
  font-family: var(--site-primary-font);
  padding: 10px 6px;
  transition: color 0.18s;
  white-space: nowrap;
}

.bdWizPubBtnSkip:hover {
  color: var(--site-primary-color);
}

.bdWizPubBtnPrimary {
  background: var(--site-tertiary-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--site-primary-font);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(34, 85, 232, 0.28);
}

.bdWizPubBtnPrimary:hover {
  background: var(--site-primary-color);
  box-shadow: 0 6px 20px rgba(28, 45, 100, 0.32);
  transform: translateY(-1px);
}

.bdWizPubBtnPrimary:active {
  transform: translateY(0);
}

.bdWizPubBtnPublish {
  background: linear-gradient(135deg, #1a8a4a, #22c55e);
  box-shadow: 0 4px 14px rgba(26, 138, 74, 0.32);
}

.bdWizPubBtnPublish:hover {
  background: linear-gradient(135deg, #166b3a, #16a34a);
  box-shadow: 0 6px 20px rgba(26, 138, 74, 0.42);
}

/* Publish Success Screen */
.bdWizPubSuccessScreen {
  text-align: center;
  padding: 40px 20px;
}

.bdWizPubSuccessAnim {
  width: 80px;
  height: 80px;
  background: rgba(26, 138, 74, 0.09);
  border: 2px solid rgba(26, 138, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 18px;
  animation: bdWizSuccessPulse 2.5s infinite;
}

.bdWizPubSuccessTitle {
  font-family: var(--site-secondary-font);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--site-primary-color);
  margin-bottom: 10px;
}

.bdWizPubSuccessSubtitle {
  font-size: 15px;
  color: var(--site-text-muted-color);
  max-width: 400px;
  margin: 0 auto 24px;
  font-family: var(--site-primary-font);
  line-height: 1.7;
}

.bdWizPubSuccessBtnGroup {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Tools Selection Section (Success Screen) */
.bdWizToolsSection {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(28, 45, 100, 0.08);
}

.bdWizToolsPill {
  display: inline-block;
  background: #e8ecff;
  color: var(--site-primary-color);
  font-family: var(--site-primary-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.bdWizToolsHeading {
  font-family: var(--site-primary-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--site-primary-color);
  line-height: 1.4;
  margin: 0 0 4px;
}

.bdWizToolsSubtitle {
  font-family: var(--site-primary-font);
  font-size: 12px;
  color: var(--site-text-muted-color);
  font-style: italic;
  margin: 0 0 14px;
}

.bdWizToolsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.bdWizToolCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 14px;
  padding: 16px 10px;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    outline 0.1s;
  text-align: center;
  outline: 2px solid transparent;
}

.bdWizToolCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.bdWizToolCard:active {
  transform: translateY(0);
}

.bdWizToolCardSelected {
  outline: 2.5px solid var(--site-primary-color);
  box-shadow: 0 4px 16px rgba(28, 45, 100, 0.18);
}

.bdWizToolCardBlue {
  background: #e6eaff;
}

.bdWizToolCardPurple {
  background: #ece8ff;
}

.bdWizToolCardOrange {
  background: #ffe8d6;
}

.bdWizToolCardGreen {
  background: #d8f5e8;
}

.bdWizToolCardIcon {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.bdWizToolCardTitle {
  font-family: var(--site-primary-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--site-primary-color);
}

.bdWizToolCardDesc {
  font-family: var(--site-primary-font);
  font-size: 11px;
  color: var(--site-text-muted-color);
  line-height: 1.3;
}

.bdWizToolsNote {
  font-family: var(--site-primary-font);
  font-size: 11px;
  font-style: italic;
  color: var(--site-text-muted-color);
  text-align: center;
  margin: 0 0 14px;
}

.bdWizToolsProceedBtn {
  width: 100%;
  background: var(--site-primary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  font-family: var(--site-primary-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}

.bdWizToolsProceedBtn:hover {
  background: #162354;
  transform: translateY(-1px);
}

.bdWizToolsDone {
  text-align: center;
  padding: 16px;
  background: #f0f4ff;
  border-radius: 12px;
  font-family: var(--site-primary-font);
  font-size: 13px;
  color: var(--site-primary-color);
  line-height: 1.5;
}

/* Type Picker */
.bdWizTypeGrid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0;
}

.bdWizTypeCard {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--site-primary-font);
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    transform 0.15s;
  width: 100%;
}

.bdWizTypeCard:hover {
  border-color: var(--site-tertiary-color);
  box-shadow: 0 4px 16px rgba(34, 85, 232, 0.12);
  transform: translateY(-1px);
}

.bdWizTypeIcon {
  font-size: 22px;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(28, 45, 100, 0.08);
}

.bdWizTypeTitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--site-primary-color);
  margin-bottom: 2px;
}

.bdWizTypeDesc {
  font-size: 12px;
  color: var(--site-text-muted-color);
}

/* Skip Button (shared style for all optional skips) */
.bdWizSkipBtn {
  background: none;
  border: 1.5px solid rgb(28 45 100);
  border-radius: 50px;
  padding: 3px 40px;
  font-family: var(--site-primary-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1c2d64;
  cursor: pointer;
  white-space: nowrap;
  transition:
    border-color 0.15s,
    color 0.15s;
  display: inline-block;
  margin-top: 6px;
}

.bdWizSkipBtn:hover {
  border-color: var(--site-primary-color);
  color: var(--site-primary-color);
}

/* Bio Input */
.bdWizTextarea {
  width: 100%;
  resize: none;
  min-height: 72px;
  line-height: 1.5;
}

.bdWizBioWrap {
  display: flex;
  flex-direction: column;
}

.bdWizBioFooter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.bdWizCharCount {
  font-family: var(--site-primary-font);
  font-size: 11px;
  color: var(--site-text-muted-color);
  flex-grow: 1;
}

/* Social Handles */
.bdWizSocialsWrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bdWizSocialRow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bdWizSocialIcon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--site-primary-font);
  background: var(--site-secondary-color);
  color: var(--site-primary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.1);
}

.bdWizSocialLi {
  background: #e7f0ff;
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.2);
}

.bdWizSocialX {
  background: #f0f0f0;
  color: #000;
  border-color: rgba(0, 0, 0, 0.12);
}

.bdWizSocialIg {
  background: #fff0f5;
  color: #c2185b;
  border-color: rgba(194, 24, 91, 0.2);
}

.bdWizSocialGh {
  background: #f0f0f0;
  color: #333;
  border-color: rgba(0, 0, 0, 0.12);
}

.bdWizSocialTg {
  background: #e8f4ff;
  color: #2196f3;
  border-color: rgba(33, 150, 243, 0.2);
}

.bdWizSocialOther {
  background: #f5f0ff;
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.2);
}

.bdWizSocialsFooter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid rgba(28, 45, 100, 0.07);
}

.bdWizSkipSocialsBtn {
  background: none;
  border: 1.5px solid rgba(28, 45, 100, 0.15);
  border-radius: 8px;
  padding: 7px 14px;
  font-family: var(--site-primary-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--site-text-muted-color);
  cursor: pointer;
  white-space: nowrap;
  transition:
    border-color 0.15s,
    color 0.15s;
  flex-shrink: 0;
  margin-top: 0;
}

.bdWizSkipSocialsBtn:hover {
  border-color: var(--site-primary-color);
  color: var(--site-primary-color);
}

.bdWizSocialsNote {
  font-family: var(--site-primary-font);
  font-size: 11px;
  color: var(--site-text-muted-color);
  flex-grow: 1;
}

/* Individual Success Screen */
.bdWizIndivSuccessHeader {
  font-family: var(--site-secondary-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--site-primary-color);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.bdWizIndivSuccessHint {
  font-family: var(--site-primary-font);
  font-size: 12px;
  color: var(--site-text-muted-color);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 14px;
}

.bdWizIndivBtnGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  width: 100%;
  align-self: stretch;
}

.bdWizIndivBtnPrimary {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--site-primary-color) 0%,
    #2a4db0 100%
  );
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 15px 20px;
  font-family: var(--site-primary-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(28, 45, 100, 0.3);
  letter-spacing: 0.01em;
}

.bdWizIndivBtnPrimary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(28, 45, 100, 0.38);
}

.bdWizIndivBtnPrimary:active {
  transform: translateY(0);
}

.bdWizIndivBtnSecondary {
  width: 100%;
  background: rgba(28, 45, 100, 0.04);
  color: var(--site-primary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.18);
  border-radius: 14px;
  padding: 14px 20px;
  font-family: var(--site-primary-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  letter-spacing: 0.01em;
}

/* =============================================================
   PORTAL LEAD FORM
   Prefix: bdPort · Bootstrap 5.3 · Warm ember palette
   ============================================================= */

/* Portal CSS Tokens */
:root {
  --bd-ember: #c4520a;
  --bd-ember-light: #e06020;
  --bd-ember-dim: rgba(196, 82, 10, 0.08);
  --bd-forest-dim: rgba(43, 90, 60, 0.08);
  --bd-warm-bg: #f7f4ef;
  --bd-warm-surface2: #f2ede6;
  --bd-warm-border: #ddd6c8;
  --bd-warm-border2: #ccc3b0;
  --bd-warm-ink: #1c1510;
  --bd-warm-ink2: #6b5c4e;
  --bd-warm-ink3: #a0907e;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-mono: 'DM Mono', monospace;
}

/* Base */
.bdPortPage {
  background: var(--bd-warm-bg);
  color: var(--bd-warm-ink);
  font-size: 15px;
  line-height: 1.6;
}

/* Nav */
.bdPortNav {
  background: #fff;
  border-bottom: 1px solid var(--bd-warm-border);
  height: 56px;
  z-index: 100;
}

.bdPortNavLogoMark {
  width: 28px;
  height: 28px;
  background: var(--bd-ember);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bdPortNavLogoMark svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.bdPortNavLogoName {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--bd-warm-ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.bdPortNavLogoName span {
  color: var(--bd-ember);
}

.bdPortBreadcrumb {
  font-size: 12px;
  color: var(--bd-warm-ink3);
}

.bdPortBreadcrumb a {
  color: var(--bd-warm-ink3);
  text-decoration: none;
  transition: color 0.2s;
}

.bdPortBreadcrumb a:hover {
  color: var(--bd-warm-ink);
}

/* Layout */
.bdPortLayout {
  min-height: calc(100vh - 56px);
}

/* Form Side */
.bdPortFormSide {
  flex: 1;
  padding: 48px 56px;
  /* max-width: 680px; */
}

@media (max-width: 991px) {
  .bdPortFormSide {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .bdPortFormSide {
    padding: 28px 20px;
  }
}

/* Service Header */
.bdPortSvcHeader {
  border-bottom: 1px solid var(--bd-warm-border);
}

.bdPortSvcIconBig {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  border: 1px solid var(--bd-warm-border2);
}

.bdPortSvcEyebrow {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bd-ember);
}

.bdPortSvcH1 {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--bd-warm-ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.bdPortSvcTagline {
  font-size: 13px;
  color: var(--bd-warm-ink2);
}

/* Steps Bar */
.bdPortStepsBar {
  display: flex;
}

.bdPortStepItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bdPortStepItem:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% + 14px);
  right: calc(-50% + 14px);
  height: 1px;
  background: var(--bd-warm-border2);
}

.bdPortStepDot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.bdPortStepDotDone {
  background: var(--bd-ember);
  color: #fff;
}

.bdPortStepDotActive {
  background: var(--bd-warm-ink);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(28, 21, 16, 0.12);
}

.bdPortStepDotPending {
  background: #fff;
  border: 1.5px solid var(--bd-warm-border2);
  color: var(--bd-warm-ink3);
}

.bdPortStepLabel {
  font-size: 10px;
  font-weight: 500;
  color: var(--bd-warm-ink3);
  text-align: center;
  letter-spacing: 0.03em;
}

.bdPortStepLabelActive {
  color: var(--bd-warm-ink);
  font-weight: 600;
}

.bdPortStepLabelDone {
  color: var(--bd-ember);
}

/* Form Sections */
.bdPortFormSection {
  display: none;
}

.bdPortFormSectionActive {
  display: block;
  animation: bdPortSlideIn 0.3s ease;
}

@keyframes bdPortSlideIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: none; }
}

.bdPortSectionTitle {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--bd-warm-ink);
}

/* Form Controls */
.bdPortFormLabel {
  font-size: 11px;
  font-weight: 600;
  color: var(--bd-warm-ink3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.bdPortFormLabel .req {
  color: var(--bd-ember);
}

.bdPortFormInput,
.bdPortFormSelect,
.bdPortFormTextarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--bd-warm-border);
  color: var(--bd-warm-ink);
  padding: 11px 14px;
  border-radius: 9px;
  font-family: var(--site-primary-font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.bdPortFormInput:focus,
.bdPortFormSelect:focus,
.bdPortFormTextarea:focus {
  border-color: var(--bd-ember);
  box-shadow: 0 0 0 3px var(--bd-ember-dim);
}

.bdPortFormInputError {
  border-color: var(--bd-ember) !important;
}

.bdPortFormTextarea {
  resize: none;
  height: 90px;
  line-height: 1.6;
}

/* Radio Option Cards */
.bdPortRadioGroup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.bdPortRadioGroupCols3 {
  grid-template-columns: repeat(3, 1fr);
}

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

  .bdPortRadioGroupCols3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bdPortRadioOpt {
  position: relative;
  cursor: pointer;
}

.bdPortRadioOpt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bdPortRadioLabel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 10px;
  border-radius: 9px;
  border: 1.5px solid var(--bd-warm-border);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  height: 100%;
}

.bdPortRadioOpt input:checked + .bdPortRadioLabel {
  border-color: var(--bd-ember);
  background: var(--bd-ember-dim);
}

.bdPortRadioLabelIcon {
  font-size: 20px;
}

.bdPortRadioLabelText {
  font-size: 12px;
  font-weight: 500;
  color: var(--bd-warm-ink2);
  line-height: 1.4;
}

.bdPortRadioOpt input:checked + .bdPortRadioLabel .bdPortRadioLabelText {
  color: var(--bd-ember);
  font-weight: 600;
}

.bdPortTimeHint {
  font-size: 10px;
  color: var(--bd-warm-ink3);
  display: block;
}

.bdPortTimeHintEmber {
  font-size: 10px;
  color: var(--bd-ember);
  display: block;
}

/* Checkbox Options */
.bdPortCheckOpt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  border: 1.5px solid var(--bd-warm-border);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}

.bdPortCheckOpt:hover {
  border-color: var(--bd-warm-border2);
}

.bdPortCheckOpt input {
  width: 16px;
  height: 16px;
  accent-color: var(--bd-ember);
  cursor: pointer;
  flex-shrink: 0;
}

.bdPortCheckOptText {
  font-size: 13px;
  color: var(--bd-warm-ink2);
}

/* Form Nav Bar */
.bdPortFormNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--bd-warm-border);
}

.bdPortProgress {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--bd-warm-ink3);
}

.bdPortBtnBack {
  background: transparent;
  border: 1.5px solid var(--bd-warm-border2);
  color: var(--bd-warm-ink2);
  padding: 11px 24px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--site-primary-font);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.bdPortBtnBack:hover {
  border-color: var(--bd-warm-ink);
  color: var(--bd-warm-ink);
}

.bdPortBtnNext {
  background: var(--bd-warm-ink);
  color: #fff;
  padding: 12px 32px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--site-primary-font);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.bdPortBtnNext:hover {
  background: #2a2018;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.bdPortBtnSubmit {
  background: var(--bd-ember);
  color: #fff;
  padding: 13px 36px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--site-primary-font);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  letter-spacing: 0.01em;
}

.bdPortBtnSubmit:hover {
  background: var(--bd-ember-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196, 82, 10, 0.35);
}

/* Consent Box */
.bdPortConsentBox {
  background: var(--bd-warm-surface2);
  border: 1px solid var(--bd-warm-border);
  border-radius: 10px;
}

.bdPortConsentCheck {
  width: 16px;
  height: 16px;
  accent-color: var(--bd-ember);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.bdPortConsentLabel {
  font-size: 12px;
  color: var(--bd-warm-ink2);
  cursor: pointer;
  line-height: 1.6;
  margin: 0;
}

.bdPortConsentLabel a {
  color: var(--bd-ember);
  text-decoration: none;
}

/* Success Screen */
.bdPortSuccessScreen {
  display: none;
  text-align: center;
  padding: 60px 0;
}

.bdPortSuccessScreenShow {
  display: block;
  animation: bdWizFadeUp 0.5s ease both;
}

.bdPortSuccessIcon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bd-forest-dim);
  border: 2px solid rgba(43, 90, 60, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}

.bdPortSuccessH {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--bd-warm-ink);
}

.bdPortSuccessSub {
  font-size: 15px;
  color: var(--bd-warm-ink2);
  max-width: 400px;
  line-height: 1.7;
}

.bdPortSuccessRef {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--bd-warm-ink3);
  background: var(--bd-warm-surface2);
  border: 1px solid var(--bd-warm-border);
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
}

.bdPortBtnHome {
  background: var(--bd-warm-ink);
  color: #fff;
  padding: 12px 28px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.bdPortBtnHome:hover {
  background: #2a2018;
  color: #fff;
}

/* Aside Panel */
.bdPortAside {
  width: 420px;
  flex-shrink: 0;
  background: #fff;
  border-left: 1px solid var(--bd-warm-border);
  padding: 40px 32px;
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  overflow-y: auto;
}

.bdPortAside::-webkit-scrollbar {
  width: 4px;
}

.bdPortAside::-webkit-scrollbar-thumb {
  background: var(--bd-warm-border2);
  border-radius: 10px;
}

.bdPortAsideIcon {
  font-size: 40px;
}

.bdPortAsideSvcName {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--bd-warm-ink);
}

.bdPortAsideDesc {
  font-size: 13px;
  color: var(--bd-warm-ink2);
  line-height: 1.7;
}

.bdPortAsideSep {
  border-color: var(--bd-warm-border);
  opacity: 1;
}

.bdPortAsideTitle {
  font-size: 11px;
  font-weight: 600;
  color: var(--bd-warm-ink3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdPortTrustIcon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.bdPortTrustIconEmber { background: var(--bd-ember-dim); }
.bdPortTrustIconForest { background: var(--bd-forest-dim); }
.bdPortTrustIconAmber { background: rgba(240, 165, 0, 0.1); }

.bdPortTrustItemTitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--bd-warm-ink);
  margin-bottom: 2px;
}

.bdPortTrustItemDesc {
  font-size: 11px;
  color: var(--bd-warm-ink3);
  line-height: 1.5;
}

.bdPortStepNumBadge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bd-ember);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.bdPortStepNumText {
  font-size: 12px;
  color: var(--bd-warm-ink2);
  line-height: 1.5;
}

.bdPortOtherChip {
  background: var(--bd-warm-surface2);
  border: 1px solid var(--bd-warm-border);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  color: var(--bd-warm-ink2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.bdPortOtherChip:hover {
  border-color: var(--bd-ember);
  color: var(--bd-ember);
}

.bdWizIndivBtnSecondary:hover {
  border-color: var(--site-primary-color);
  background: rgba(28, 45, 100, 0.08);
  transform: translateY(-1px);
}

.bdWizIndivBtnSecondary:active {
  transform: translateY(0);
}

.bdWizApiLoader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 1003;
  animation: fadeIn 0.2s ease-out;
}

.bdWizApiLoader span {
  font-size: 14px;
  font-weight: 600;
  color: var(--site-primary-color);
}

.bdWizSpinnerGlobal {
  width: 32px;
  height: 32px;
  border: 4px solid rgba(0, 132, 255, 0.1);
  border-top-color: var(--site-primary-color);
  border-radius: 50%;
  animation: bdWizSpin 0.8s linear infinite;
}

.bdWizVisualCategoryGrid.businessCategory {
  display: grid;
}

.bdWizVisualCategoryGrid {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
}

.bdWizDropdown.bdWizFullDropdown.SelectCategoryDropdown {
  bottom: calc(100% + -250px);
}

.bdWizVisualChip {
  height: 80px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.bdWizVisualChip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bdWizVisualChipOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.bdWizVisualChipLabel {
  position: relative;
  z-index: 1;
  color: white;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 0 8px;
}

.bdWizSeparator {
  text-align: center;
  margin: 16px 0;
  font-size: 24px;
  font-weight: 400;
  color: var(--bd-text);
  position: relative;
}

.bdWizFieldLabel {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--bd-text);
  margin-bottom: 12px;
}

.bdWizSearchIcon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-52%);
  color: #94a3b8;
  pointer-events: none;
}

/* .bdWizInputRow .bdWizInputBox {
  padding-left: 40px;
} */

.bdWizInputPrefix {
  position: relative;
  color: var(--site-text-muted-color);
  font-weight: 600;
  font-size: 14px;
  pointer-events: none;
  border-right: 1px solid #d1d5db;
  padding-right: 10px;
  margin-left: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.bdWizAddressForm {
  background: white;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slideUp 0.3s ease-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* margin-top: 10px; */
  overflow-y: auto;
  height: auto;
  max-height: 250px;
}

.bdWizField {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.bdWizField .bdWizFieldLabel {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.bdWizFormRow {
  display: flex;
  gap: 12px;
  width: 100%;
}

.bdWizAddressForm .bdWizInputBox {
  width: 100%;
}

.bdWizAddressForm .bdWizInputBox:focus {
  background: white;
  border-color: var(--site-primary-color);
  box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.1);
}

.bdWizConfirmBtn {
  width: 100%;
  padding: 14px;
  background: var(--site-primary-color);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer !important;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 132, 255, 0.2);
  pointer-events: auto !important;
}

.bdWizConfirmBtn:hover:not(:disabled) {
  background: #0073e6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 132, 255, 0.3);
}

.bdWizConfirmBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(1);
}

.bdWizErrorMsg {
  font-size: 11px;
  color: #e74c3c;
  margin: 4px 0 8px 4px;
  font-weight: 600;
  animation: fadeIn 0.2s ease-out;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bdWizMapCard {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #edf2f7;
  margin: 12px 0;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 100%;
}

.bdWizMapCardHeader {
  padding: 14px 18px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #edf2f7;
}

.bdWizMapCardPin {
  font-size: 18px;
}

.bdWizMapCardTitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--bd-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdWizMapContainer {
  height: 300px;
  width: 100%;
  position: relative;
  background: #f1f5f9;
}

.bdWizMapContainer agm-map {
  height: 100%;
  width: 100%;
  display: block;
}

.bdWizMapLoading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 10;
}

.bdWizMapCardFooter {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
}

/* Premium Design for Onboarding Chatbot */
:host {
  display: block;
}

/* Selection Cards */
.bdWizSelectionGrid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* padding: 8px 12px; */
}

.bdWizSelectionCard {
  background: #ffffff;
  border: 1.5px solid rgba(28, 45, 100, 0.1);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.bdWizSelectionCard:hover {
  transform: translateY(-2px);
  border-color: #0d6efd;
  box-shadow: 0 10px 15px -3px rgba(13, 110, 253, 0.08);
}

.bdWizSelectionCard.active {
  background: #f0f7ff;
  border-color: #0d6efd;
}

.bdWizSelectionIcon {
  font-size: 26px;
  background: #f8fafc;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.bdWizSelectionIconUser {
  background: #f5f3ff;
  color: #6366f1;
}

.bdWizSelectionIconBiz {
  background: #eff6ff;
  color: #3b82f6;
}

.bdWizSelectionCard:hover .bdWizSelectionIcon {
  transform: scale(1.05);
}

.bdWizSelectionText {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bdWizSelectionTitle {
  font-weight: 700;
  color: #0f172a;
  font-size: 16px;
}

.bdWizSelectionDesc {
  color: #64748b;
  font-size: 13px;
  font-weight: 400;
}

/* My Self Form Consolidated */
.bdWizMyselfForm {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  max-height: 450px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.bdWizFormScroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f8fafc;
}

.bdWizFormScroll::-webkit-scrollbar {
  width: 6px;
}

.bdWizFormScroll::-webkit-scrollbar-track {
  background: #f8fafc;
}

.bdWizFormScroll::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
}

/* Image Picker */
.bdWizImagePickerWrap {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.bdWizImageCircle {
  width: 100px;
  height: 100px;
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  overflow: hidden;
}

.bdWizImageCircle:hover {
  border-color: #0d6efd;
  background: #f0f7ff;
}

.bdWizProfilePreview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bdWizImagePlaceholder {
  text-align: center;
  color: #94a3b8;
}

.bdWizImagePlaceholder span {
  font-size: 24px;
}

.bdWizImagePlaceholder p {
  font-size: 11px;
  margin: 4px 0 0;
  font-weight: 500;
}

.bdWizImageEditBadge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #0d6efd;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Dynamic Lists */
.bdWizDynamicList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.bdWizDynamicItem {
  display: flex;
  gap: 8px;
  align-items: center;
}

.bdWizRemoveBtn {
  background: #fee2e2;
  color: #ef4444;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.bdWizRemoveBtn:hover {
  background: #fecaca;
}

.bdWizLinkBtn {
  background: transparent;
  color: #0d6efd;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.bdWizLinkBtn:hover {
  text-decoration: underline;
}

/* Info Box */
.bdWizInfoBox {
  background: #f0f7ff;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.bdWizInfoIcon {
  font-size: 18px;
  flex-shrink: 0;
}

.bdWizInfoText {
  font-size: 12px;
  color: #0369a1;
  line-height: 1.5;
}

.bdWizInfoText strong {
  color: #0c4a6e;
}

.bdWizBioWrap {
  position: relative;
}

.bdWizAiBtn {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  color: #0369a1;
  border-radius: 50px;
  padding: 0 15px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  margin-bottom: 20px;
  justify-content: center;
  margin: 0 auto 10px;
}

.bdWizAiBtn:hover {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.bdWizAiBtn .btn-text {
  font-size: 13px;
  font-weight: 600;
}

.bdWizAiBtn .ai-sparkle {
  font-size: 16px;
}

.bdWizFormGroup {
  margin-bottom: 10px;
}

.bdWizFormGroup label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

/* Success Summary */
.bdWizSummary {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 10px 0;
}

.bdWizSummaryHeader {
  background: linear-gradient(to right, #0d6efd, #00d2ff);
  padding: 15px;
  color: white;
  text-align: center;
}

.bdWizSummaryList {
  padding: 10px;
}

.bdWizSummaryItem {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.bdWizSummaryKey {
  font-size: 13px;
  color: #64748b;
}

.bdWizSummaryVal {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

/* Conversational Multi-Choice Buttons */
.bdWizVisualCategoryGrid button.bdWizConfirmBtn {
  width: 100%;
}

/* My Self Photo Step */
.bdWizPhotoThumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

/* Conversational Info Box in Dock */
.bdWizChipsContainer .bdWizInfoBox {
  margin-top: 5px;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 10px;
}

/* Image Message Bubbles */
.bdWizBubbleImage {
  padding: 8px !important;
  max-width: 200px !important;
  background: white !important;
  border: 1px solid #e2e8f0 !important;
}

.bdWizMsgImage {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* AI Bio Form in Modal */
.bdWizModalSub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.bdWizAiForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.bdWizAiForm .bdWizFormGroup {
  margin-bottom: 0;
}

.bdWizAiForm label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.bdWizAiForm textarea.bdWizInputBox {
  resize: none;
  font-family: inherit;
}

.bdWizTextareaRow {
  flex-direction: row;
  align-items: flex-end;
}

.bdWizTextareaBox {
  min-height: 80px;
  max-height: 150px;
  resize: none;
  padding: 12px 16px;
  line-height: 1.5;
  border-radius: 12px;
}

/* Input Dock (Floating at bottom of chat) */
.bdWizDock {
  background: #ffffff;
  padding: 16px 20px 24px;
  border-top: 1px solid #f1f5f9;
  z-index: 10;
  box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.05);
}

.bdWizInputRow {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.bdWizInputWithPrefix {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.bdWizInputGroup {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 0 16px;
  transition: all 0.2s ease;
  flex: 1;
}

.bdWizInputGroup:focus-within {
  border-color: #0d6efd;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.bdWizInputGroupError {
  border-color: #ef4444 !important;
  background: #fffafa !important;
}

.bdWizInputPrefix {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  padding-right: 12px;
  border-right: 1px solid #e2e8f0;
  margin-right: 12px;
  white-space: nowrap;
}

.bdWizInputBox {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1e293b;
  transition: all 0.2s ease;
  outline: none;
}

.bdWizInputRow input#cb-input-search-chips {
  padding-left: 40px;
}

.bdWizInputBoxInner {
  border: none !important;
  background: transparent !important;
  padding: 12px 0 !important;
  box-shadow: none !important;
}

.bdWizInputBox:focus {
  border-color: #0d6efd;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.bdWizInputBoxError {
  border-color: #ef4444 !important;
  background: #fffafa !important;
}

.bdWizErrorMsg {
  color: #ef4444;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  margin-left: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bdWizSendBtn {
  width: 48px;
  height: 48px;
  background: #0d6efd;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(13, 110, 253, 0.3);
  flex-shrink: 0;
}

.bdWizSendBtn:hover:not(:disabled) {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(13, 110, 253, 0.4);
}

.bdWizSendBtn:active:not(:disabled) {
  transform: scale(0.95);
}

.bdWizSendBtn:disabled {
  background: #e2e8f0;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

.bdWizConfirmBtn:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}

.bdWizSendBtnArea {
  margin-bottom: 8px;
}

/* Card Actions (Individual Flow) */
.bdWizCardActions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 24px;
  margin-top: 15px;
  border: 1px solid #f1f5f9;
  width: 100%;
}

.bdWizPrimaryBtn {
  background: var(--SitePrimaryColor);
  color: #fff;
  border: none;
  padding: 15px 24px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 4px 6px -2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bdWizPrimaryBtn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bdWizPrimaryBtn:active {
  transform: translateY(0);
}

.bdWizSecondaryBtn {
  background: transparent;
  color: #1c2d64;
  border: 2px solid #1c2d64;
  padding: 15px 24px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.bdWizSecondaryBtn:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.bdWizSecondaryBtn:active {
  background: #e2e8f0;
}
/* ══ WIZARD PAGES SHARED (Light Theme) ══ */

/* ── Page Base ── */
.bdWizLightPage {
  font-family: var(--site-primary-font);
  background: #f7f9ff;
  color: var(--site-primary-color);
  min-height: 100vh;
}

/* ── Navbar ── */
.bdWizNavbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(28, 45, 100, 0.06);
}

.bdWizNavLogo {
  font-family: var(--site-tertiary-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--site-primary-color);
}

.bdWizNavBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 100px;
  padding: 0.28rem 0.85rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--site-tertiary-color);
}

.bdWizKycNavBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 100px;
  padding: 0.28rem 0.85rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: #e11d48;
}

/* ── Eyebrow ── */
.bdWizEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--site-tertiary-color);
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
}

.bdWizKycEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e11d48;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
}

.bdWizEyebrowDot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--site-tertiary-color);
  animation: bdWizDotPulse 2s ease-in-out infinite;
}

@keyframes bdWizDotPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

/* ── Page Title / Sub ── */
.bdWizPageTitle {
  font-family: var(--site-secondary-font);
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--site-primary-color);
  line-height: 1.15;
}

.bdWizPageTitle em {
  font-style: italic;
  color: var(--site-tertiary-color);
}

.bdWizPageSubtitleText {
  font-size: 0.92rem;
  color: var(--site-text-muted-color);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

.bdWizHandleChip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.42rem 1rem;
  font-size: 0.8rem;
  color: var(--site-text-muted-color);
}

.bdWizHandleChip strong {
  color: var(--site-tertiary-color);
  font-family: var(--site-tertiary-font);
  font-weight: 700;
}

/* ── Stepper ── */
.bdWizStepperWrap {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem 1.75rem 1rem;
  box-shadow: 0 1px 4px rgba(28, 45, 100, 0.06);
}

.bdWizStepRow {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 0.75rem;
}

.bdWizStepTrack {
  position: absolute;
  top: 17px;
  left: 17px;
  right: 17px;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}

.bdWizStepFill {
  position: absolute;
  top: 17px;
  left: 17px;
  height: 2px;
  background: linear-gradient(90deg, var(--site-tertiary-color), #60a5fa);
  z-index: 1;
  transition: width 0.4s ease;
  width: 0%;
}

.bdWizStepFillKyc {
  position: absolute;
  top: 17px;
  left: 17px;
  height: 2px;
  background: linear-gradient(90deg, #e11d48, #fb923c);
  z-index: 1;
  transition: width 0.4s ease;
  width: 0%;
}

.bdWizStepNode {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.bdWizStepBall {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--site-tertiary-font);
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid #cbd5e1;
  background: #f7f9ff;
  color: #94a3b8;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.bdWizStepBall.done {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}

.bdWizStepBall.done span {
  display: none;
}
.bdWizStepBall.done::after {
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
  color: #fff;
}

.bdWizStepBall.active {
  background: var(--site-tertiary-color);
  border-color: var(--site-tertiary-color);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(34, 85, 232, 0.15);
}

.bdWizStepBall.activeKyc {
  background: #e11d48;
  border-color: #e11d48;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.15);
}

.bdWizStepLabel {
  font-size: 0.62rem;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
  line-height: 1.25;
  max-width: 56px;
}

.bdWizStepLabel.active {
  color: var(--site-tertiary-color);
}
.bdWizStepLabel.activeKyc {
  color: #e11d48;
}
.bdWizStepLabel.done {
  color: #22c55e;
}

.bdWizStepPct {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 100px;
  padding: 0.18rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--site-tertiary-color);
}

/* ── Step Card ── */
.bdWizStepCard {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(28, 45, 100, 0.07);
}

.bdWizStepCardHeader {
  padding: 1.5rem 2rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
}

.bdWizStepEyebrow {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--site-tertiary-color);
  margin-bottom: 0.3rem;
}

.bdWizStepTitle {
  font-family: var(--site-secondary-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--site-primary-color);
  margin-bottom: 0.2rem;
}

.bdWizStepHint {
  font-size: 0.83rem;
  color: var(--site-text-muted-color);
  line-height: 1.55;
}

.bdWizStepBody {
  padding: 1.75rem 2rem 2rem;
}

/* ── Step Navigation ── */
.bdWizStepNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2rem;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
}

.bdWizBtnBack {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-family: var(--site-primary-font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  background: transparent;
  border: 1.5px solid #cbd5e1;
  color: #64748b;
}

.bdWizBtnBack:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: var(--site-primary-color);
}

.bdWizBtnNext {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-family: var(--site-primary-font);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  background: var(--site-tertiary-color);
  border: none;
  color: #fff;
}

.bdWizBtnNext:hover {
  background: #1a44cc;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 85, 232, 0.28);
}

.bdWizBtnSubmit {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.75rem;
  border-radius: 8px;
  font-family: var(--site-primary-font);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  background: linear-gradient(
    135deg,
    var(--site-primary-color),
    var(--site-tertiary-color)
  );
  border: none;
  color: #fff;
}

.bdWizBtnSubmit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(28, 45, 100, 0.25);
}

.bdWizNavMeta {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ── Form Controls ── */
.bdWizFormLabel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  margin-bottom: 0.4rem;
}

.bdWizFormLabelOpt {
  font-size: 0.67rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #94a3b8;
  margin-left: auto;
}

.bdWizFormRequired {
  color: #e11d48;
  margin-left: 0.15rem;
}

.bdWizFormControl {
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  color: var(--site-primary-color);
  font-family: var(--site-primary-font);
  font-size: 0.9rem;
  padding: 0.68rem 1rem;
  outline: none;
  transition: all 0.18s;
  appearance: none;
  -webkit-appearance: none;
}

.bdWizFormControl:focus {
  border-color: var(--site-tertiary-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34, 85, 232, 0.12);
}

.bdWizFormControl::placeholder {
  color: #b0bec5;
}

.bdWizFormControl.ok {
  border-color: #22c55e;
  background: #f0fdf4;
}

.bdWizFormControl.bad {
  border-color: #e11d48;
  background: #fff1f2;
}

/* ── Select / Input wrappers ── */
.bdWizSelectWrap {
  position: relative;
}

.bdWizSelectWrap::after {
  content: "▾";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  font-size: 0.85rem;
}

.bdWizSelectWrap select {
  padding-right: 2.2rem;
}

.bdWizInputWrap {
  position: relative;
}

.bdWizInputPrefix {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: #94a3b8;
  pointer-events: none;
}

.bdWizInputPrefix ~ .bdWizFormControl {
  padding-left: 2.35rem;
}

/* ── Char counter ── */
.bdWizCharCount {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 0.28rem;
  transition: color 0.15s;
}

.bdWizCharCount.warn {
  color: #f59e0b;
}
.bdWizCharCount.over {
  color: #e11d48;
}

/* ── Field Messages ── */
.bdWizFieldMsg {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  font-size: 0.75rem;
  margin-top: 0.32rem;
  min-height: 0.9rem;
  line-height: 1.4;
}

.bdWizFieldMsg.err {
  color: #e11d48;
}
.bdWizFieldMsg.ok2 {
  color: #22c55e;
}
.bdWizFieldMsg.info {
  color: #0284c7;
}
.bdWizFieldMsg.warn {
  color: #f59e0b;
}

/* ── Info Boxes ── */
.bdWizInfoBox {
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.bdWizInfoBoxBlue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.bdWizInfoBoxBlue .bdWizInfoBoxText {
  color: #1d4ed8;
}
.bdWizInfoBoxBlue .bdWizInfoBoxText strong {
  color: #1e40af;
}

.bdWizInfoBoxAmber {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.bdWizInfoBoxAmber .bdWizInfoBoxText {
  color: #92400e;
}
.bdWizInfoBoxAmber .bdWizInfoBoxText strong {
  color: #78350f;
}

.bdWizInfoBoxRed {
  background: #fff1f2;
  border: 1px solid #fecdd3;
}

.bdWizInfoBoxRed .bdWizInfoBoxText {
  color: #be123c;
}
.bdWizInfoBoxRed .bdWizInfoBoxText strong {
  color: #9f1239;
}

.bdWizInfoBoxTeal {
  background: #f0fdfa;
  border: 1px solid #99f6e4;
}

.bdWizInfoBoxTeal .bdWizInfoBoxText {
  color: #0f766e;
}
.bdWizInfoBoxTeal .bdWizInfoBoxText strong {
  color: #0d5e56;
}

.bdWizInfoBoxIndigo {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
}

.bdWizInfoBoxIndigo .bdWizInfoBoxText {
  color: #4338ca;
}
.bdWizInfoBoxIndigo .bdWizInfoBoxText strong {
  color: #3730a3;
}

.bdWizInfoBoxOrange {
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.bdWizInfoBoxOrange .bdWizInfoBoxText {
  color: #c2410c;
}
.bdWizInfoBoxOrange .bdWizInfoBoxText strong {
  color: #9a3412;
}

.bdWizInfoBoxIcon {
  font-size: 0.95rem;
  flex-shrink: 0;
  padding-top: 0.05rem;
}

.bdWizInfoBoxText {
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ── Gender Cards ── */
.bdWizGenderCards {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.bdWizGenderCard {
  flex: 1;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.8rem 0.4rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.17s;
  user-select: none;
}

.bdWizGenderCard:hover {
  border-color: #c7d2fe;
  background: #eef2ff;
}

.bdWizGenderCard.selected {
  border-color: var(--site-tertiary-color);
  background: #eef2ff;
  box-shadow: 0 0 0 2px rgba(34, 85, 232, 0.12);
}

.bdWizGenderCardIcon {
  font-size: 1.4rem;
}

.bdWizGenderCardLabel {
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

.bdWizGenderCard.selected .bdWizGenderCardLabel {
  color: var(--site-tertiary-color);
}

/* ── OTP Strip ── */
.bdWizOtpStrip {
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.bdWizOtpStatusDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
  flex-shrink: 0;
}

.bdWizOtpStatusDot.sent {
  background: #f59e0b;
  animation: bdWizDotPulse 1.5s infinite;
}

.bdWizOtpStatusDot.verified {
  background: #22c55e;
}

.bdWizOtpLabel {
  font-size: 0.8rem;
  color: #475569;
}

.bdWizOtpLabel strong {
  color: var(--site-primary-color);
}

.bdWizOtpSendBtn {
  background: #0d9488;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.35rem 0.85rem;
  font-family: var(--site-primary-font);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
}

.bdWizOtpSendBtn:hover {
  background: #0f766e;
}
.bdWizOtpSendBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ── OTP Boxes ── */
.bdWizOtpBox {
  width: 44px;
  height: 48px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  color: var(--site-primary-color);
  font-family: var(--site-tertiary-font);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: all 0.18s;
}

.bdWizOtpBox:focus {
  border-color: var(--site-tertiary-color);
  box-shadow: 0 0 0 3px rgba(34, 85, 232, 0.12);
  background: #fff;
}

.bdWizOtpBox.filled {
  border-color: #22c55e;
  background: #f0fdf4;
}

/* ── City Toggle ── */
.bdWizCityToggleBtn {
  flex: 1;
  padding: 0.42rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  color: #64748b;
  text-align: center;
}

.bdWizCityToggleBtn.active {
  background: #eef2ff;
  border-color: var(--site-tertiary-color);
  color: var(--site-tertiary-color);
}

.bdWizCityPanel {
  display: none;
}
.bdWizCityPanel.visible {
  display: block;
}

/* ── Review Cards ── */
.bdWizReviewCard {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(28, 45, 100, 0.05);
}

.bdWizReviewCardHeader {
  padding: 0.7rem 1.1rem;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bdWizReviewCardTitle {
  font-family: var(--site-tertiary-font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--site-primary-color);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.bdWizEditBtn {
  font-size: 0.73rem;
  color: var(--site-tertiary-color);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bdWizReviewRow {
  display: flex;
  align-items: flex-start;
  padding: 0.58rem 1.1rem;
  border-bottom: 1px solid #f8fafc;
}

.bdWizReviewRow:last-child {
  border-bottom: none;
}

.bdWizReviewKey {
  font-size: 0.74rem;
  color: #64748b;
  width: 145px;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.bdWizReviewVal {
  font-size: 0.84rem;
  color: var(--site-primary-color);
  font-weight: 500;
  flex: 1;
  line-height: 1.5;
}

.bdWizReviewVal.empty {
  color: #94a3b8;
  font-style: italic;
  font-weight: 400;
}

/* ── Badges ── */
.bdWizBadgeGreen {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.71rem;
  font-weight: 600;
  padding: 0.14rem 0.5rem;
  border-radius: 4px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.bdWizBadgeAmber {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.71rem;
  font-weight: 600;
  padding: 0.14rem 0.5rem;
  border-radius: 4px;
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

.bdWizBadgeRed {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.71rem;
  font-weight: 600;
  padding: 0.14rem 0.5rem;
  border-radius: 4px;
  background: #fff1f2;
  color: #e11d48;
  border: 1px solid #fecdd3;
}

/* ── Declaration ── */
.bdWizDeclBox {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.bdWizDeclRow {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  user-select: none;
}

.bdWizDeclRow + .bdWizDeclRow {
  margin-top: 0.75rem;
}

.bdWizCheckbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  margin-top: 0.1rem;
}

.bdWizCheckbox.on {
  background: var(--site-tertiary-color);
  border-color: var(--site-tertiary-color);
}

.bdWizCheckbox.on::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.bdWizDeclText {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.55;
}

.bdWizDeclText a {
  color: var(--site-tertiary-color);
}

/* ── Success Screen ── */
.bdWizSuccessScreen {
  text-align: center;
  padding: 3rem 2rem;
}

.bdWizSuccessRing {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  animation: bdWizPopIn 0.4s ease;
}

@keyframes bdWizPopIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.bdWizSuccessTitle {
  font-family: var(--site-secondary-font);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--site-primary-color);
  margin-bottom: 0.5rem;
}

.bdWizSuccessSubtitle {
  font-size: 0.9rem;
  color: var(--site-text-muted-color);
  max-width: 380px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.bdWizAppIdBox {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.bdWizAppIdLabel {
  font-size: 0.73rem;
  color: #64748b;
}

.bdWizAppIdValue {
  font-family: var(--site-tertiary-font);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--site-tertiary-color);
}

.bdWizNextSteps {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}

.bdWizNextStepItem {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.82rem;
  color: #64748b;
}

.bdWizNextStepItem:last-child {
  border-bottom: none;
}

.bdWizNextStepNum {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--site-tertiary-color);
}

/* ── Mobile Footer ── */
.bdWizMobFooter {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid #e2e8f0;
  padding: 0.85rem 1.25rem;
  gap: 0.55rem;
  box-shadow: 0 -2px 12px rgba(28, 45, 100, 0.08);
}

@media (max-width: 640px) {
  .bdWizMobFooter {
    display: flex;
  }
  .bdWizShellPb {
    padding-bottom: 5.5rem;
  }
  .bdWizStepBody {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .bdWizStepCardHeader {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .bdWizStepNav {
    display: none;
  }
  .bdWizGenderCards .bdWizGenderCard {
    min-width: calc(50% - 0.35rem);
  }
}

/* ── Upload Area ── */
.bdWizUploadArea {
  border: 2px dashed #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s;
  background: #f8fafc;
  position: relative;
}

.bdWizUploadArea:hover {
  border-color: #c7d2fe;
  background: #eef2ff;
}

.bdWizUploadArea.hasVal {
  border-color: #bbf7d0;
  border-style: solid;
  background: #f0fdf4;
}

.bdWizUploadIcon {
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
}

.bdWizUploadTitle {
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
}

.bdWizUploadSub {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 0.2rem;
}

.bdWizUploadInput {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.bdWizUploadPreview {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.bdWizUploadPreview.show {
  display: flex;
}

.bdWizPreviewName {
  font-size: 0.78rem;
  color: #16a34a;
  font-weight: 600;
}

.bdWizPreviewRemove {
  font-size: 0.7rem;
  color: #e11d48;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── KYC Banner ── */
.bdWizKycBanner {
  background: linear-gradient(135deg, #fff1f2, #fffbeb);
  border: 1px solid #fecdd3;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.bdWizKycBanner h3 {
  font-family: var(--site-tertiary-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: #be123c;
  margin-bottom: 0.25rem;
}

.bdWizKycBanner p {
  font-size: 0.8rem;
  color: #9f1239;
  opacity: 0.9;
  line-height: 1.6;
}

/* ── Biometric Grid ── */
.bdWizBioGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
  .bdWizBioGrid {
    grid-template-columns: 1fr;
  }
}

.bdWizBioCard {
  background: #f8fafc;
  border: 2px dashed #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.bdWizBioCard:hover {
  border-color: #c7d2fe;
  background: #eef2ff;
}

.bdWizBioCard.captured {
  border-style: solid;
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.bdWizBioCard.requiredMissing {
  border-color: #fecdd3;
  border-style: solid;
  background: #fff1f2;
}

.bdWizBioCardInput {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.bdWizBioIcon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.bdWizBioType {
  font-family: var(--site-tertiary-font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--site-primary-color);
  margin-bottom: 0.2rem;
}

.bdWizBioSub {
  font-size: 0.7rem;
  color: #64748b;
  line-height: 1.4;
}

.bdWizBioTag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-top: 0.4rem;
}

.bdWizBioTagRequired {
  background: #fff1f2;
  color: #e11d48;
  border: 1px solid #fecdd3;
}

.bdWizBioTagOptional {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

.bdWizBioTagDone {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.bdWizBioFilename {
  font-size: 0.72rem;
  color: #16a34a;
  margin-top: 0.35rem;
  font-weight: 600;
  display: none;
}

.bdWizBioCard.captured .bdWizBioFilename {
  display: block;
}

.bdWizBioRemoveBtn {
  display: none;
  font-size: 0.68rem;
  color: #e11d48;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 0.2rem;
}

.bdWizBioCard.captured .bdWizBioRemoveBtn {
  display: block;
}

/* ── Add Row / Del Buttons ── */
.bdWizAddRowBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #eef2ff;
  border: 1.5px dashed #c7d2fe;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--site-tertiary-color);
  width: 100%;
  transition: all 0.17s;
  margin-top: 0.5rem;
}

.bdWizAddRowBtn:hover {
  background: #e0e7ff;
}

.bdWizDelBtn {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #e11d48;
  border-radius: 6px;
  padding: 0.38rem 0.6rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.15s;
  align-self: flex-start;
  margin-top: 1.6rem;
  flex-shrink: 0;
}

.bdWizDelBtn:hover {
  background: #ffe4e6;
}

/* ── Row Table ── */
.bdWizRowTable {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.bdWizRowTableHeader {
  display: grid;
  padding: 0.55rem 1rem;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.bdWizTableRow {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}

.bdWizTableRow:last-child {
  border-bottom: none;
}
.bdWizTableRow:hover {
  background: #f8fafc;
}

/* ── Upload Mini ── */
.bdWizUploadMini {
  border: 1.5px dashed #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  font-size: 0.76rem;
  color: #64748b;
  transition: all 0.18s;
  position: relative;
  background: #f8fafc;
}

.bdWizUploadMini:hover {
  border-color: #c7d2fe;
  color: var(--site-tertiary-color);
}

.bdWizUploadMini.uploaded {
  border-color: #bbf7d0;
  border-style: solid;
  color: #16a34a;
  background: #f0fdf4;
}

.bdWizUploadMiniInput {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* ── Vehicle Type Chips ── */
.bdWizVehType {
  padding: 0.5rem 0.9rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.17s;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.bdWizVehType:hover {
  border-color: #c7d2fe;
}

.bdWizVehType.sel {
  background: #eef2ff;
  border-color: var(--site-tertiary-color);
  color: var(--site-tertiary-color);
}

/* ── Same Address ── */
.bdWizSameAddrRow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0.9rem;
}

.bdWizSameAddrLabel {
  font-size: 0.82rem;
  color: #475569;
}

/* ── Proficiency Pills ── */
.bdWizProfPill {
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  border: 1.5px solid #e2e8f0;
  background: transparent;
  font-size: 0.73rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  color: #64748b;
}

.bdWizProfPill:hover {
  border-color: #c7d2fe;
  color: var(--site-tertiary-color);
}

.bdWizProfPill.sel1 {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #16a34a;
}
.bdWizProfPill.sel2 {
  border-color: #c7d2fe;
  background: #eef2ff;
  color: var(--site-tertiary-color);
}
.bdWizProfPill.sel3 {
  border-color: #c7d2fe;
  background: #eef2ff;
  color: #4338ca;
}
.bdWizProfPill.sel4 {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

/* ── Skill / Language Tags ── */
.bdWizSkillTag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.22rem 0.6rem;
  font-size: 0.75rem;
  color: #475569;
  margin: 0.15rem;
}

.bdWizLangTag {
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  color: #0f766e;
}

/* ── Progress Chips ── */
.bdWizProgressChips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.bdWizProgressChip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.bdWizChipDone {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}
.bdWizChipPending {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}
.bdWizChipMissing {
  background: #fff1f2;
  color: #e11d48;
  border: 1px solid #fecdd3;
}

/* ── Verification Stars ── */
.bdWizVerifStar {
  font-size: 1rem;
  cursor: pointer;
  color: #cbd5e1;
  transition: color 0.12s;
}

.bdWizVerifStar.lit {
  color: #f59e0b;
}

/* ── Section Divider ── */
.bdWizSectionDiv {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0 1.1rem;
}

.bdWizSectionDivLine {
  flex: 1;
  height: 1px;
  background: #f1f5f9;
}

.bdWizSectionDivLabel {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  white-space: nowrap;
}

/* ── No Vehicle Row ── */
.bdWizNoVehRow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
  padding: 0.65rem 0;
  margin-bottom: 1rem;
}

/* ── Mini Bar ── */
.bdWizMiniBar {
  height: 3px;
  background: #f1f5f9;
  border-radius: 100px;
  overflow: hidden;
}

.bdWizMiniFill {
  height: 100%;
  background: linear-gradient(90deg, var(--site-tertiary-color), #60a5fa);
  border-radius: 100px;
  transition: width 0.35s;
}

/* ── Row card for doc/peer/rel/veh rows ── */
.bdWizDynRow {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.bdWizDynRowInner {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  align-items: start;
}

/* ══════════════════════════════════════════
   INLINE-STYLE REPLACEMENTS — Light Wizards
══════════════════════════════════════════ */

/* ── Navigation ── */
.bdWizNavLink {
  color: var(--site-tertiary-color);
}
.bdWizNavLink:hover {
  text-decoration: underline;
}

.bdWizNavDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  flex-shrink: 0;
  animation: bdWizDotPulse 2s infinite;
}

.bdWizNavEmoji {
  font-size: 0.85rem;
  animation: bdWizDotPulse 2s ease-in-out infinite;
}

/* ── Container width caps ── */
.bdWizContainerSm {
  max-width: 780px;
}
.bdWizContainerMd {
  max-width: 820px;
}
.bdWizContainerLg {
  max-width: 860px;
}

/* ── Stepper helpers ── */
.bdWizStepTitleText {
  color: var(--site-primary-color);
}

/* ── OTP & Field messages ── */
.bdWizOtpEntryPanel {
  margin-top: 0.75rem;
}
.bdWizFieldMsgMt {
  margin-top: 0.4rem;
}
.bdWizResendLink {
  color: var(--site-tertiary-color);
  cursor: pointer;
}
.bdWizVerifiedText {
  color: #16a34a;
}

/* ── Form inputs ── */
.bdWizFormControlReadonly {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: default;
}

.bdWizTextarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.bdWizTextareaBasic {
  resize: vertical;
  line-height: 1.6;
}

.bdWizInputPl {
  padding-left: 2.35rem;
}
.bdWizInputCenter {
  text-align: center;
}

/* ── Success / next-steps ── */
.bdWizClipboardIcon {
  font-size: 1.5rem;
}
.bdWizWarningIcon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.bdWizNextStepsHeading {
  font-family: var(--site-tertiary-font);
  color: var(--site-primary-color);
}

/* ── Mobile footer ── */
.bdWizMobNextFlex {
  flex: 2;
}

/* ── Review row column layout ── */
.bdWizReviewRowCol {
  flex-direction: column;
  gap: 0.5rem;
}

/* ══ KYC ACCENT CLASSES ══ */
.bdWizKycAccentText {
  color: #e11d48;
}

.bdWizKycStepPct {
  background: #fff1f2;
  border-color: #fecdd3 !important;
  color: #e11d48;
}

.bdWizKycMiniFill {
  height: 100%;
  background: linear-gradient(90deg, #e11d48, #fb923c);
  border-radius: 100px;
  transition: width 0.35s;
}

.bdWizBtnNextKyc {
  background: #e11d48 !important;
}
.bdWizBtnSubmitKyc {
  background: linear-gradient(135deg, #e11d48, #fb923c) !important;
}

.bdWizKycAppIdVal {
  color: #e11d48;
}

.bdWizMobNextKyc {
  flex: 2;
  background: #e11d48 !important;
}

/* ══ JS-GENERATED ROW GRIDS ══ */

/* Language rows (1fr 1fr auto) */
.bdWizLangRowGrid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  align-items: start;
}

/* Skill rows (1.4fr 1fr 80px auto) */
.bdWizSkillRowGrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 80px auto;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  align-items: start;
}

/* Document rows (1.1fr 1fr 1fr auto) */
.bdWizDocRowGrid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: 0.9rem;
  padding: 1rem;
  align-items: start;
}

/* Document expiry extra row (1fr 1fr 1fr) */
.bdWizDocExtraGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.9rem;
  padding: 0 1rem 0.9rem;
}

/* Peer rows (1.4fr 1.1fr 1fr auto) */
.bdWizPeerRowGrid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr auto;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  align-items: start;
}

/* Relative rows (1.2fr 1fr 1fr auto) */
.bdWizRelRowGrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 0.9rem;
  padding: 1rem;
  align-items: start;
}

/* Shared row footer (comments / address strip) */
.bdWizRowFooter {
  padding: 0.3rem 1rem 0.9rem;
  border-top: 1px solid #f1f5f9;
}

/* Column helpers inside row grids */
.bdWizRowInnerCol {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.bdWizRowInnerColGap5 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

/* Compact form label inside row grids */
.bdWizFormLabelInline {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
}

/* Delete button vertical alignment in row grids */
.bdWizDelBtnMt {
  margin-top: 1.6rem;
}

/* Star-rating hint */
.bdWizVlHint {
  min-height: 1rem;
  font-size: 0.7rem;
}

/* Vehicle section */
.bdWizVehPadding {
  padding: 1rem;
}
.bdWizVehTitle {
  font-family: var(--site-tertiary-font);
  color: var(--site-primary-color);
}

/* Static table header grid columns */
.bdWizLangTableHeader {
  grid-template-columns: 1fr 1fr auto;
}
.bdWizSkillTableHeader {
  display: grid;
  grid-template-columns: 1.4fr 1fr 80px auto;
}

/* Star rating in review panels */
.bdWizStarRating {
  color: #f59e0b;
  font-size: 0.8rem;
}

/* =============================================================
   DESIGN SYSTEM COLOR INTEGRATION
   Applies primary · secondary · CTA · quaternary palette
   to all bdWizLight* wizard pages.
   ============================================================= */

/* Page background — use design system secondary */
.bdWizLightPage {
  background: var(--site-secondary-color);
}

/* Navbar — primary bottom accent */
.bdWizNavbar {
  border-bottom: 2px solid var(--site-primary-color);
}

/* Nav badge — primary tint */
.bdWizNavBadge {
  background: rgba(21, 40, 93, 0.07);
  border-color: rgba(21, 40, 93, 0.18);
  color: var(--site-primary-color);
}

/* Nav link */
.bdWizNavLink {
  color: var(--site-cta-color);
}

/* Page eyebrow — CTA orange tint */
.bdWizEyebrow {
  color: var(--site-cta-color);
  background: rgba(240, 92, 41, 0.08);
  border-color: rgba(240, 92, 41, 0.25);
}
.bdWizEyebrowDot {
  background: var(--site-cta-color);
}

/* Title italic accent — CTA */
.bdWizPageTitle em {
  color: var(--site-cta-color);
}

/* Handle chip — primary border + secondary bg */
.bdWizHandleChip {
  background: #fff;
  border-color: rgba(21, 40, 93, 0.2);
}
.bdWizHandleChip strong {
  color: var(--site-cta-color);
}

/* Stepper wrap — white card on secondary bg */
.bdWizStepperWrap {
  background: #fff;
  border-color: rgba(21, 40, 93, 0.1);
}

/* Stepper progress fill — primary → CTA */
.bdWizStepFill {
  background: linear-gradient(
    90deg,
    var(--site-primary-color),
    var(--site-cta-color)
  );
}

/* Mini progress bar fill — CTA → primary */
.bdWizMiniFill {
  background: linear-gradient(
    90deg,
    var(--site-cta-color),
    var(--site-primary-color)
  );
}

/* Active step ball — CTA orange */
.bdWizStepBall.active {
  background: var(--site-cta-color);
  border-color: var(--site-cta-color);
  box-shadow: 0 0 0 4px rgba(240, 92, 41, 0.18);
}

/* Active step label — CTA */
.bdWizStepLabel.active {
  color: var(--site-cta-color);
}

/* Step % pill — primary */
.bdWizStepPct {
  background: rgba(21, 40, 93, 0.07);
  border-color: rgba(21, 40, 93, 0.2);
  color: var(--site-primary-color);
}

/* Step card — subtle shadow lift */
.bdWizStepCard {
  border-color: rgba(21, 40, 93, 0.1);
  box-shadow: 0 4px 20px rgba(21, 40, 93, 0.08);
}

/* Step card header — primary left accent + warm gradient */
.bdWizStepCardHeader {
  border-left: 4px solid var(--site-primary-color);
  background: linear-gradient(to right, rgba(21, 40, 93, 0.03), transparent);
  border-bottom-color: rgba(21, 40, 93, 0.07);
}

/* Step eyebrow — primary */
.bdWizStepEyebrow {
  color: var(--site-primary-color);
}

/* Step nav footer — secondary bg */
.bdWizStepNav {
  background: var(--site-secondary-color);
  border-top-color: rgba(21, 40, 93, 0.08);
}

/* Next button — CTA orange */
.bdWizBtnNext {
  background: var(--site-cta-color);
  box-shadow: 0 4px 14px rgba(240, 92, 41, 0.28);
}
.bdWizBtnNext:hover {
  background: #d44e21;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240, 92, 41, 0.38);
}

/* Submit button — primary → CTA gradient */
.bdWizBtnSubmit {
  background: linear-gradient(
    135deg,
    var(--site-primary-color) 0%,
    var(--site-cta-color) 100%
  );
  box-shadow: 0 4px 16px rgba(240, 92, 41, 0.3);
}
.bdWizBtnSubmit:hover {
  box-shadow: 0 8px 24px rgba(240, 92, 41, 0.38);
}

/* KYC next button keeps its own red — no override */

/* Form control focus — primary ring */
.bdWizFormControl:focus {
  border-color: var(--site-primary-color);
  box-shadow: 0 0 0 3px rgba(21, 40, 93, 0.1);
}

/* Gender card selected — primary */
.bdWizGenderCard.selected {
  border-color: var(--site-primary-color);
  background: var(--site-secondary-color);
  box-shadow: 0 0 0 2px rgba(21, 40, 93, 0.12);
}
.bdWizGenderCard.selected .bdWizGenderCardLabel {
  color: var(--site-primary-color);
}

/* City toggle active — primary */
.bdWizCityToggleBtn.active {
  background: var(--site-secondary-color);
  border-color: var(--site-primary-color);
  color: var(--site-primary-color);
}

/* OTP send button — CTA */
.bdWizOtpSendBtn {
  background: var(--site-cta-color);
}
.bdWizOtpSendBtn:hover {
  background: #d44e21;
}

/* OTP box focus — primary */
.bdWizOtpBox:focus {
  border-color: var(--site-primary-color);
  box-shadow: 0 0 0 3px rgba(21, 40, 93, 0.1);
}

/* Review card header — primary micro-gradient */
.bdWizReviewCardHeader {
  background: linear-gradient(to right, rgba(21, 40, 93, 0.05), transparent);
  border-bottom-color: rgba(21, 40, 93, 0.06);
}

/* Edit button — CTA */
.bdWizEditBtn {
  color: var(--site-cta-color);
}

/* Declaration check — primary when on */
.bdWizCheckbox.on {
  background: var(--site-primary-color);
  border-color: var(--site-primary-color);
}

/* Declaration links — CTA */
.bdWizDeclText a {
  color: var(--site-cta-color);
}

/* Success ring — CTA tint */
.bdWizSuccessRing {
  background: rgba(240, 92, 41, 0.08);
  border-color: rgba(240, 92, 41, 0.25);
}

/* App ID box — secondary bg */
.bdWizAppIdBox {
  background: var(--site-secondary-color);
  border-color: rgba(21, 40, 93, 0.12);
}

/* App ID value — CTA */
.bdWizAppIdValue {
  color: var(--site-cta-color);
}

/* KYC-specific App ID */
.bdWizKycAppIdVal {
  color: #e11d48;
}

/* Next steps box */
.bdWizNextSteps {
  background: var(--site-secondary-color);
  border-color: rgba(21, 40, 93, 0.1);
}

/* Next step numbers — CTA */
.bdWizNextStepNum {
  background: rgba(240, 92, 41, 0.09);
  border-color: rgba(240, 92, 41, 0.28);
  color: var(--site-cta-color);
}

/* Upload area hover — secondary */
.bdWizUploadArea:hover {
  border-color: rgba(21, 40, 93, 0.3);
  background: var(--site-secondary-color);
}

/* Resend link — CTA */
.bdWizResendLink {
  color: var(--site-cta-color);
}

/* Mobile footer next button */
.bdWizMobNextFlex.bdWizBtnNext {
  background: var(--site-cta-color);
}

.bdWizInputBox.bdWizInputBoxInner {
  padding-left: 55px !important;
}
