/* ============================================
   PROGRESS & SUCCESS COMPONENTS
   ============================================ */

/* Progress Section */
.bh-scan-website-page .bh-progress-section {
  max-width: 800px;
  margin: 0 auto;
}

.bh-scan-website-page .bh-progress-bar-container {
  background: var(--cloud);
  border-radius: var(--radius-full);
  height: 24px;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--spacing-l);
}

.bh-scan-website-page .bh-progress-bar {
  background: var(--bh-grad);
  height: 100%;
  width: 0%;
  transition: width 0.5s ease;
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}

.bh-scan-website-page .bh-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.bh-scan-website-page .bh-progress-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: var(--ink);
  font-size: var(--body-small-size);
  z-index: 2;
}

/* Progress Steps */
.bh-scan-website-page .bh-progress-steps {
  list-style: none;
  padding: 0;
  margin: var(--spacing-l) 0;
}

.bh-scan-website-page .bh-progress-step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-m);
  padding: var(--spacing-m);
  margin-bottom: var(--spacing-m);
  background: var(--paper);
  border-radius: var(--radius-m);
  border: 1px solid var(--cloud);
  transition: all 0.3s ease;
}

.bh-scan-website-page .bh-progress-step.active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  border-color: var(--bh-primary);
  box-shadow: var(--shadow-medium);
}

.bh-scan-website-page .bh-progress-step.completed {
  opacity: 0.7;
}

.bh-scan-website-page .bh-progress-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cloud);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.bh-scan-website-page .bh-progress-step.active .bh-progress-step-icon {
  background: var(--bh-grad);
  color: var(--white);
}

.bh-scan-website-page .bh-progress-step.completed .bh-progress-step-icon {
  background: var(--bh-accent-green);
  color: var(--white);
}

.bh-scan-website-page .bh-progress-step-content h4 {
  margin: 0 0 0.25rem;
  font-size: var(--body-base-size);
  font-weight: 700;
}

.bh-scan-website-page .bh-progress-step-content p {
  margin: 0;
  font-size: var(--body-small-size);
  color: var(--ash);
}

/* Sticky Progress Indicator */
.bh-scan-website-page .bh-sticky-progress {
  position: fixed;
  bottom: var(--spacing-l);
  right: var(--spacing-l);
  background: var(--paper);
  padding: var(--spacing-l);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-large);
  z-index: 1000;
  min-width: 280px;
  display: none;
  border: 1px solid var(--cloud);
}

.bh-scan-website-page .bh-sticky-progress.show {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.bh-scan-website-page .bh-sticky-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-m);
}

.bh-scan-website-page .bh-sticky-progress-title {
  font-weight: 700;
  font-size: var(--body-small-size);
  margin: 0;
}

.bh-scan-website-page .bh-sticky-progress-bar {
  height: 8px;
  background: var(--cloud);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--spacing-xs);
}

.bh-scan-website-page .bh-sticky-progress-bar-fill {
  height: 100%;
  background: var(--bh-grad);
  width: 0%;
  transition: width 0.5s ease;
}

.bh-scan-website-page .bh-sticky-progress-text {
  font-size: var(--body-xs-size);
  color: var(--ash);
}

/* Loading States */
.bh-scan-website-page .bh-loading-final {
  text-align: center;
  padding: var(--spacing-l);
  margin-top: var(--spacing-l);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  border-radius: var(--radius-l);
  border: 1px solid var(--cloud);
}

.bh-scan-website-page .bh-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--cloud);
  border-top: 3px solid var(--bh-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--spacing-m);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.bh-scan-website-page .bh-loading-message {
  font-size: var(--body-base-size);
  color: var(--bh-neutral-dark);
  margin: 0;
}

/* Success State */
.bh-scan-website-page .bh-chatbot-ready {
  text-align: center;
  padding: var(--spacing-l);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  border-radius: var(--radius-l);
  border: 1px solid var(--bh-accent-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.bh-scan-website-page .bh-chatbot-ready h3 {
  color: var(--bh-accent-green);
  margin-bottom: var(--spacing-xs);
}

.bh-scan-website-page .bh-chatbot-ready p {
  color: var(--bh-neutral-dark);
  margin-bottom: 0;
}

/* Success Actions */
.bh-scan-website-page .bh-success-actions {
  display: flex;
  gap: var(--spacing-m);
  margin-top: var(--spacing-l);
  flex-wrap: wrap;
}

/* Modal Styles */
.bh-scan-website-page .bh-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}

.bh-scan-website-page .bh-modal-backdrop.show {
  display: block;
}

.bh-scan-website-page .bh-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  padding: var(--spacing-l);
  border-radius: var(--radius-l);
  max-width: 500px;
  width: 90%;
  z-index: 1050;
  display: none;
  box-shadow: var(--shadow-large);
}

.bh-scan-website-page .bh-modal.show {
  display: block;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.bh-scan-website-page .bh-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-l);
}

.bh-scan-website-page .bh-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.bh-scan-website-page .bh-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ash);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-scan-website-page .bh-modal-close:hover {
  color: var(--bh-primary);
}

/* Form Styles */
.bh-scan-website-page .bh-form-group {
  margin-bottom: var(--spacing-l);
}

.bh-scan-website-page .bh-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--ink);
}

.bh-scan-website-page .bh-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cloud);
  border-radius: var(--radius-s);
  font-size: var(--body-base-size);
  transition: all 0.3s ease;
}

.bh-scan-website-page .bh-form-input:focus {
  outline: none;
  border-color: var(--bh-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.bh-scan-website-page .bh-form-input.is-valid {
  border-color: #28a745;
}

.bh-scan-website-page .bh-form-input.is-invalid {
  border-color: #dc3545;
}

.bh-scan-website-page .bh-form-feedback {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
}

.bh-scan-website-page .bh-form-feedback.error {
  color: #dc3545;
}

.bh-scan-website-page .bh-form-feedback.success {
  color: #28a745;
}

.bh-scan-website-page .bh-form-helper {
  font-size: var(--body-small-size);
  color: var(--ash);
  margin-top: var(--spacing-xs);
}

/* Integration Sections */
.bh-scan-website-page .bh-integration-section {
  display: none;
  margin-top: var(--spacing-2xl);
}

.bh-scan-website-page .bh-integration-section.show {
  display: block;
}

.bh-scan-website-page .bh-integration-tabs {
  display: flex;
  gap: var(--spacing-m);
  margin-bottom: var(--spacing-l);
  border-bottom: 2px solid var(--cloud);
}

.bh-scan-website-page .bh-integration-tab {
  padding: var(--spacing-m) var(--spacing-l);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  color: var(--ash);
  transition: all 0.3s ease;
}

.bh-scan-website-page .bh-integration-tab.active {
  color: var(--bh-primary);
  border-bottom-color: var(--bh-primary);
}

.bh-scan-website-page .bh-integration-content {
  display: none;
}

.bh-scan-website-page .bh-integration-content.active {
  display: block;
}

.bh-scan-website-page .bh-copy-box {
  background: var(--cloud);
  padding: var(--spacing-m);
  border-radius: var(--radius-s);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-m);
  margin: var(--spacing-m) 0;
}

.bh-scan-website-page .bh-copy-box__code {
  flex: 1;
  font-family: var(--font-mono);
  font-size: var(--body-small-size);
  word-break: break-all;
  color: var(--ink);
}

/* Account Section */
.bh-scan-website-page .bh-account-section {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-2xl);
  border-top: 2px solid var(--cloud);
}

.bh-scan-website-page .bh-account-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  margin-top: var(--spacing-l);
  max-width: 400px;
}

/* Additional Components */
.bh-scan-website-page .bh-tip-box {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: var(--radius-s);
  padding: var(--spacing-m);
  font-size: var(--body-small-size);
}

.bh-scan-website-page .bh-steps-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-l) 0;
}

/* .bh-step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-m);
  margin-bottom: var(--spacing-l);
  padding: var(--spacing-m);
  background: var(--cloud);
  border-radius: var(--radius-m);
  border-left: 3px solid var(--bh-primary);
} */

.bh-scan-website-page .bh-step-number {
  width: 32px;
  height: 32px;
  background: var(--bh-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.bh-scan-website-page .bh-step-content {
  flex: 1;
}

.bh-scan-website-page .bh-step-content strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.bh-scan-website-page .bh-step-content p {
  margin: 0;
  font-size: var(--body-small-size);
  color: var(--ash);
}

.bh-scan-website-page .bh-chatbot-id-box {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  border: 1px solid var(--bh-neutral-light);
  border-radius: var(--radius-m);
  padding: var(--spacing-l);
}

.bh-scan-website-page .bh-chatbot-id-box h5 {
  margin-bottom: var(--spacing-m);
  color: var(--ink);
  font-size: var(--body-base-size);
}

.bh-scan-website-page .bh-plugin-info {
  text-align: center;
}

/* Loading Overlay */
.bh-scan-website-page .bh-loading {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 12, 30, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.25s ease;
}

.bh-scan-website-page .bh-loading__container {
  background: linear-gradient(180deg, #0b0f24 0%, #111936 100%);
  padding: var(--spacing-l) var(--spacing-xl);
  border-radius: var(--radius-l);
  color: #e4e8ff;
  text-align: center;
  box-shadow: var(--shadow-extra-large, 0 40px 120px rgba(3, 6, 18, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: bh-loading-appear 0.25s ease;
}

.bh-scan-website-page .bh-loading__spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top: 4px solid #9c5bff;
  border-radius: 50%;
  animation: bh-spin 0.8s linear infinite;
  margin: 0 auto;
}

.bh-scan-website-page .bh-loading__text {
  margin-top: var(--spacing-m);
  font-size: var(--body-base-size);
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #cdd7ff;
  opacity: 0.9;
  animation: bh-fade 1.2s ease-in-out infinite alternate;
}

@keyframes bh-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bh-fade {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}

@keyframes bh-loading-appear {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* WordPress Integration Section */
.bh-scan-website-page .bh-wordpress-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.bh-scan-website-page .bh-wordpress-intro h4 {
  color: var(--bh-primary);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.bh-scan-website-page .bh-wordpress-intro h4 i {
  color: #21759b;
  font-size: 1.8rem;
}

.bh-scan-website-page .bh-wordpress-intro p {
  color: var(--ash);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Progress Flow Steps */
.bh-scan-website-page .bh-wp-progress-flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 3rem 0;
  position: relative;
}

.bh-scan-website-page .bh-wp-step-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  flex: 1;
  min-width: 220px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
}

.bh-scan-website-page .bh-wp-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  border-color: rgba(102, 126, 234, 0.2);
}

.bh-scan-website-page .bh-wp-step-card.bh-wp-step-highlight {
  border-color: var(--bh-primary);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.bh-scan-website-page .bh-wp-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.bh-scan-website-page .bh-wp-step-badge {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.bh-scan-website-page .bh-wp-step-card.bh-wp-step-highlight .bh-wp-step-badge {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.bh-scan-website-page .bh-wp-step-header h5 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.bh-scan-website-page .bh-wp-step-body {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 1;
}

.bh-scan-website-page .bh-wp-step-icon {
  width: 30px;
  height: 30px;
  background: #EEF2FF;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bh-primary);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.1);
}

.bh-scan-website-page .bh-wp-step-content {
  flex: 1;
}

.bh-scan-website-page .bh-wp-step-content p {
  margin: 0 0 0.5rem;
  color: var(--ink);
  line-height: 1.5;
  font-size: 0.95rem;
}

.bh-scan-website-page .bh-wp-step-content p strong {
  color: var(--ink);
  font-weight: 700;
}

.bh-scan-website-page .bh-wp-step-content .text-muted {
  color: var(--ash) !important;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.bh-scan-website-page .bh-wp-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bh-neutral-light);
  font-size: 1.5rem;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .bh-wp-progress-flow {
    flex-direction: column;
    align-items: center;
  }
  
  .bh-wp-step-card {
    width: 100%;
    max-width: 400px;
  }
  
  .bh-wp-step-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
}


/* Chatbot ID Section */
.bh-scan-website-page .bh-wp-chatbot-id-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 1.75rem;
  padding: 2rem;
  margin: 3rem 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.1);
}

.bh-scan-website-page .bh-wp-chatbot-id-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--ink);
  gap: 0.75rem;
}

.bh-scan-website-page .bh-wp-chatbot-id-header h5 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.bh-scan-website-page .bh-wp-chatbot-id-header i {
  color: var(--bh-primary);
  font-size: 1.5rem;
}

.bh-scan-website-page .bh-wp-id-display {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.bh-scan-website-page .bh-wp-id-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ash);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bh-scan-website-page .bh-wp-id-label i {
  font-size: 1rem;
  color: var(--ash);
}

.bh-scan-website-page .bh-wp-id-value {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 1px;
  background: rgba(15, 23, 42, 0.05);
  padding: 0.75rem 1.25rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.15);
  flex: 1;
  text-align: center;
  margin: 0 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bh-scan-website-page .bh-wp-id-instructions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.bh-scan-website-page .bh-wp-instruction-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.2s ease;
}

.bh-scan-website-page .bh-wp-instruction-step:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(102, 126, 234, 0.3);
}

.bh-scan-website-page .bh-wp-instruction-icon {
  width: 44px;
  height: 44px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bh-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bh-scan-website-page .bh-wp-instruction-step div {
  flex: 1;
}

.bh-scan-website-page .bh-wp-instruction-step strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.bh-scan-website-page .bh-wp-instruction-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ash);
  line-height: 1.4;
}


/* Plugin CTA Section */
.bh-scan-website-page .bh-wp-plugin-cta {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 1.75rem;
  padding: 2rem;
  margin-top: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bh-scan-website-page .bh-wp-plugin-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667EEA, #764BA2);
}

.bh-scan-website-page .bh-wp-cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.bh-scan-website-page .bh-wp-cta-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #21759b;
  box-shadow: 0 15px 30px rgba(33, 117, 155, 0.2);
  flex-shrink: 0;
}

.bh-scan-website-page .bh-wp-cta-text {
  text-align: left;
  flex: 1;
  min-width: 250px;
}

.bh-scan-website-page .bh-wp-cta-text h5 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 700;
}

.bh-scan-website-page .bh-wp-cta-text p {
  margin: 0;
  color: var(--ash);
  font-size: 1rem;
}

.bh-scan-website-page .bh-wp-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.bh-scan-website-page .bh-wp-cta-actions .bh-button {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.bh-scan-website-page .bh-wp-cta-actions .bh-button--ghost {
  border: 2px solid var(--bh-primary);
  color: var(--bh-primary);
  background: transparent;
}

.bh-scan-website-page .bh-wp-cta-actions .bh-button--ghost:hover {
  background: var(--bh-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Copy ID Button */
.bh-scan-website-page .bh-wp-id-display .bh-button--accent {
  background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  min-width: 120px;
  justify-content: center;
}

.bh-scan-website-page .bh-wp-id-display .bh-button--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.bh-scan-website-page .bh-button--accent:disabled {
  background: #ccc; 
  color: #666; 
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  opacity: 0.6;
}


/* Responsive Design */
@media (max-width: 768px) {
  .bh-wp-chatbot-id-section {
    padding: 1.5rem;
  }
  
  .bh-wp-id-display {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .bh-wp-id-value {
    margin: 1rem 0;
    font-size: 1.1rem;
  }
  
  .bh-wp-cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .bh-wp-cta-text {
    text-align: center;
  }
  
  .bh-wp-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .bh-wp-cta-actions .bh-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .bh-wp-progress-flow {
    gap: 1rem;
  }
  
  .bh-wp-step-card {
    padding: 1.25rem;
  }
  
  .bh-wp-step-body {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .bh-wp-instruction-step {
    flex-direction: column;
    text-align: center;
  }
  
  .bh-wp-instruction-icon {
    margin-bottom: 0.5rem;
  }
}




/* =============================
    CHATBOT PREVIEW WIDGET
    ============================= */

.bh-scan-website-page .bh-chatbot-embed-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.bh-scan-website-page #borghive-chatbot-embed {
  width: 380px;
  height: 600px;
}
