===============================
   Competitor Comparison
   =============================== */
:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --success: #059669;
    --danger: #dc2626;
    --warning: #d97706;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.competitor-analysis-container {
    padding: 40px 20px;
}
.competitor-analysis-machine-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
}
.competitor-analysis-machine-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--primary);
}
.competitor-analysis-card-summary {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease;
}
.competitor-analysis-card-summary:hover {
    background: var(--gray-50);
}
.competitor-analysis-machine-image {
    width: 140px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    margin-right: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.competitor-analysis-machine-card:hover .competitor-analysis-machine-image {
    transform: scale(1.02);
}
.competitor-analysis-card-content {
    flex: 1;
    min-width: 0;
}
.competitor-analysis-machine-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 16px;
}
.competitor-analysis-machine-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    line-height: 1.2;
}
.competitor-analysis-manufacturer {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}
.competitor-analysis-score-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}
.competitor-analysis-score-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-sm);
}
.competitor-analysis-score-bar-container {
    width: 100px;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}
.competitor-analysis-score-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px;
    transition: width 0.8s ease;
}
.competitor-analysis-summary-text {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}
.competitor-analysis-wavelengths {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.competitor-analysis-wavelength-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--gray-300);
}
.competitor-analysis-expand-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 12px;
}
.competitor-analysis-expand-icon {
    transition: transform 0.3s ease;
}
.competitor-analysis-card-summary.competitor-analysis-expanded .competitor-analysis-expand-icon {
    transform: rotate(180deg);
}
.competitor-analysis-details-panel {
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.competitor-analysis-details-panel.competitor-analysis-expanded {
    max-height: 2000px;
    padding: 32px 24px;
}
.competitor-analysis-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.competitor-analysis-pros-section, .competitor-analysis-cons-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.competitor-analysis-pros-section {
    border-left: 4px solid var(--success);
}
.competitor-analysis-cons-section {
    border-left: 4px solid var(--danger);
}
.competitor-analysis-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 700;
}
.competitor-analysis-pros-section .competitor-analysis-section-header {
    color: var(--success);
}
.competitor-analysis-cons-section .competitor-analysis-section-header {
    color: var(--danger);
}
.competitor-analysis-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.competitor-analysis-feature-item {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-700);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.competitor-analysis-pros-section .competitor-analysis-feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
}
.competitor-analysis-cons-section .competitor-analysis-feature-item::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
    font-size: 1rem;
}
.competitor-analysis-cost-summary {
    grid-column: 1 / -1;
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.competitor-analysis-cost-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}
.competitor-analysis-cost-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .competitor-analysis-container {
        padding: 32px 16px;
    }

    .competitor-analysis-machine-info h3 {
        font-size: 1.375rem;
    }

    .competitor-analysis-summary-text {
        font-size: 0.9375rem;
    }

    .competitor-analysis-details-panel.competitor-analysis-expanded {
        max-height: 2500px;
        padding: 28px 20px;
    }

    .competitor-analysis-details-grid {
        gap: 24px;
    }

    .competitor-analysis-pros-section, .competitor-analysis-cons-section {
        padding: 20px;
    }

    .competitor-analysis-cost-summary {
        padding: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .competitor-analysis-container {
        padding: 20px 12px;
    }

    .competitor-analysis-machine-card {
        margin-bottom: 20px;
    }

    .competitor-analysis-card-summary {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .competitor-analysis-machine-image {
        width: 100%;
        max-width: 180px;
        height: 240px;
        margin: 0 auto 20px auto;
    }

    .competitor-analysis-machine-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .competitor-analysis-machine-info h3 {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }

    .competitor-analysis-summary-text {
        font-size: 0.9375rem;
        text-align: left;
        margin-bottom: 14px;
    }

    .competitor-analysis-wavelengths {
        justify-content: center;
        margin-bottom: 14px;
    }

    .competitor-analysis-expand-indicator {
        justify-content: center;
        margin-top: 8px;
    }

    .competitor-analysis-details-panel.competitor-analysis-expanded {
        max-height: none;
        padding: 24px 16px;
    }

    .competitor-analysis-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .competitor-analysis-pros-section, .competitor-analysis-cons-section {
        padding: 18px;
    }

    .competitor-analysis-section-header {
        font-size: 1.0625rem;
        margin-bottom: 16px;
    }

    .competitor-analysis-feature-item {
        margin-bottom: 10px;
        padding-left: 20px;
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .competitor-analysis-cost-summary {
        padding: 18px;
        margin-top: 20px;
    }

    .competitor-analysis-cost-header {
        font-size: 1.0625rem;
        margin-bottom: 10px;
    }

    .competitor-analysis-cost-text {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .competitor-analysis-score-container {
        align-items: center;
    }

    .competitor-analysis-score-badge {
        font-size: 1rem;
        padding: 6px 14px;
    }

    .competitor-analysis-score-bar-container {
        width: 80px;
        height: 6px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .competitor-analysis-container {
        padding: 16px 10px;
    }

    .competitor-analysis-card-summary {
        padding: 16px;
    }

    .competitor-analysis-machine-image {
        max-width: 160px;
        height: 200px;
    }

    .competitor-analysis-machine-info h3 {
        font-size: 1.125rem;
    }

    .competitor-analysis-summary-text {
        font-size: 0.875rem;
    }

    .competitor-analysis-details-panel.competitor-analysis-expanded {
        padding: 20px 12px;
    }

    .competitor-analysis-pros-section, .competitor-analysis-cons-section {
        padding: 16px;
    }

    .competitor-analysis-cost-summary {
        padding: 16px;
    }

    .competitor-analysis-feature-item {
        padding-left: 18px;
        font-size: 0.8125rem;
    }

    .competitor-analysis-wavelength-tag {
        font-size: 0.6875rem;
        padding: 3px 6px;
    }
}

/* ===============================
   Video Wrapper
   =============================== */
.video-container {
    position: relative; max-width: 800px; width: 100%;
    border-radius: 20px; overflow: hidden;
    transition: transform 0.25s ease;
}
.video-container:hover { transform: translateY(-5px); }
.video-wrapper { position: relative; border-radius: 12px; overflow: hidden; background: #000; z-index: 2; }
.styled-video { width: 100%; height: auto; display: block; border-radius: 12px; }
.video-container::before {
    content: ''; position: absolute; inset: 4px; border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    pointer-events: none; z-index: 1;
}
@media (max-width: 768px) {
    .video-container { max-width: 100%; border-radius: 15px; padding: 6px; }
    .video-wrapper { border-radius: 9px; }
    .styled-video { border-radius: 9px; }
}



.elementor-18411 .elementor-element.elementor-element-3aead83 {
    --display: unset !important;
}


.elementor-18492 .elementor-element.elementor-element-c4bf787  {
    --display: unset !important;
}


.elementor-18167 .elementor-element.elementor-element-fc761e9 {
    --display: unset !important;
}


.elementor-18351 .elementor-element.elementor-element-c4bf787 {
    --display: unset !important;
}


.elementor-18451 .elementor-element.elementor-element-d484135  {
    --display: unset !important;
}


body.home .bh_page > :first-child,
body.home .bh_page > .bhm_page:first-child,
body.home .bh_page > .bhm_page:first-child > .bhm_hero {
  margin-top: -105px !important;
}

/* BIL article paragraph, callout and single-chat dock fixes 20260725 */
#blfrGlobalStickyWrap {
  bottom: 0 !important;
}

body.single-post #bil-article-library .bil_article > p + p {
  margin-top: 18px !important;
}

body.single-post #bil-article-library .bil_article .bil_note > p > strong {
  color: var(--bil-aqua-700) !important;
}

body.single-post #bil-article-library .bil_article .bil_note--purple > p > strong {
  color: var(--bil-purple-600) !important;
}

body.single-post #bil-article-library .bil_article .bil_note--pink > p > strong {
  color: var(--bil-pink) !important;
}

/* Landing-page sticky CTA scroll gate 20260802 */
html body #blppStickyBar .blpp_sticky_btn {
  flex: 0 0 calc((100% - 16px) / 3) !important;
  width: calc((100% - 16px) / 3) !important;
  max-width: calc((100% - 16px) / 3) !important;
}

@media (max-width: 560px) {
  html body #blppStickyBar .blpp_sticky_btn {
    flex-basis: calc((100% - 10px) / 3) !important;
    width: calc((100% - 10px) / 3) !important;
    max-width: calc((100% - 10px) / 3) !important;
  }
}

html body #blppStickyBar:not(.bl-past-above-fold) #blppStickyRequestDetails,
html body #blppStickyBar:not(.bl-past-above-fold) #blppStickyBookDemo {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html body #blppStickyBar.bl-past-above-fold #blppStickyRequestDetails,
html body #blppStickyBar.bl-past-above-fold #blppStickyBookDemo {
  display: flex !important;
  visibility: visible !important;
  pointer-events: auto !important;
  animation: blStickyCtaFadeIn 420ms ease-out both;
}

html body #blppStickyBar.bl-past-above-fold #blppStickyBookDemo {
  animation-delay: 70ms;
}

@keyframes blStickyCtaFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html body #blppStickyBar.bl-past-above-fold #blppStickyRequestDetails,
  html body #blppStickyBar.bl-past-above-fold #blppStickyBookDemo {
    animation: none !important;
  }
}
