body {
  overflow-x: hidden
}

.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 100%
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box
}

.custom-select-trigger span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  display: block
}

.custom-select-trigger .arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #6c757d;
  margin-left: 10px;
  flex-shrink: 0
}

.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  z-index: 1050;
  margin-top: 5px;
  display: none
}

.custom-select-wrapper.open .custom-select-dropdown {
  display: block
}

.custom-search-container {
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
  background: #f8f9fa
}

.custom-search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 6px
}

.custom-options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 250px;
  overflow-y: auto
}

.custom-option {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center
}

.custom-option:hover {
  background-color: #f1f3f5
}

.custom-option img {
  width: 20px;
  height: 15px;
  margin-right: 10px
}

:root {
  --fbbotcmt-primary: #1877F2;
  --fbbotcmt-primary-dark: #1565C0;
  --fbbotcmt-accent: #42B72A;
  --fbbotcmt-accent-light: #69C253;
  --fbbotcmt-gold: #FFD700;
  --fbbotcmt-love-red: #F33E58;
  --fbbotcmt-glass: rgba(255, 255, 255, 0.08);
  --fbbotcmt-glass-border: rgba(255, 255, 255, 0.14);
  --fbbotcmt-gradient: linear-gradient(135deg, #0a1628 0%, #132d50 50%, #0a1628 100%);
  --fbbotcmt-gradient-accent: linear-gradient(135deg, #1877F2 0%, #42B72A 100%);
  --fbbotcmt-gradient-mix: linear-gradient(135deg, #1877F2 0%, #42B72A 100%);
  --fbbotcmt-dark: #0a1628;
  --fbbotcmt-dark2: #132d50;
  --fbbotcmt-radius: 16px;
  --fbbotcmt-radius-lg: 24px;
  --fbbotcmt-shadow: 0 8px 32px rgba(24, 119, 242, 0.12);
  --fbbotcmt-section-bg-alt: #f0f6ff;
  --fbbotcmt-text: #555;
  --fbbotcmt-heading: #1a1a2e;
  --fbbotcmt-card-bg: #fff;
  --fbbotcmt-card-border: rgba(0, 0, 0, 0.06);
  --fbbotcmt-list-border: #eee;
}

/* ========== ANIMATIONS (PERFORMANCE-SAFE — ≤5 infinite) ========== */
@keyframes fbbotcmtShimmer {
  0% {
    left: -100%
  }

  50%,
  100% {
    left: 100%
  }
}

@keyframes fbbotcmtMarquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes fbbotcmtBadgeSlide {
  0% {
    opacity: 0;
    transform: translateY(10px)
  }

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

@keyframes fbbotcmtFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes fbbotcmtSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

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

@keyframes fbbotcmtFloat1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

@keyframes fbbotcmtFloat2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes fbbotcmtDotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

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

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

@keyframes fbbotcmtFadeScale {
  from {
    transform: scale(0.85);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

@keyframes fbbotcmtReactionPop {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.15)
  }

  100% {
    transform: scale(1)
  }
}

/* ========== BREADCRUMB ========== */
.fbbotcmt-breadcrumb {
  margin-bottom: 8px
}

.fbbotcmt-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem
}

.fbbotcmt-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s
}

.fbbotcmt-breadcrumb a:hover {
  color: var(--fbbotcmt-accent)
}

.fbbotcmt-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.55rem
}

.fbbotcmt-breadcrumb .current span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600
}

/* ========== HERO BADGE ========== */
.fbbotcmt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(24, 119, 242, 0.2);
  border: 1px solid rgba(24, 119, 242, 0.35);
  color: var(--fbbotcmt-accent);
  margin-bottom: 12px;
  animation: fbbotcmtBadgeSlide 0.6s ease-out both;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.3)
}

.fbbotcmt-hero-badge i {
  font-size: 0.8rem;
  color: var(--fbbotcmt-accent)
}

/* ========== HERO ========== */
.fbbotcmt-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(135deg, #0a1628 0%, #132d50 30%, #0a1628 60%, #0d1f3c 100%);
  position: relative;
  overflow: hidden;
  padding: 16px 0 24px
}

.fbbotcmt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(24, 119, 242, 0.08) 0%, transparent 60%);
  pointer-events: none
}

.fbbotcmt-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 183, 42, 0.08) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
  pointer-events: none
}

.fbbotcmt-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.fbbotcmt-hero-orb-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.12) 0%, transparent 70%)
}

.fbbotcmt-hero-orb-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 5%;
  background: radial-gradient(circle, rgba(66, 183, 42, 0.15) 0%, transparent 70%)
}

.fbbotcmt-hero-orb-3 {
  width: 120px;
  height: 120px;
  top: 30%;
  left: 15%;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.1) 0%, transparent 70%)
}

.fbbotcmt-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none
}

.fbbotcmt-hero-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse
}

.fbbotcmt-col-form {
  order: 0
}

.fbbotcmt-col-illustration {
  order: 0
}

.fbbotcmt-anim-fadeIn {
  animation: fbbotcmtFadeIn 0.8s ease both
}

.fbbotcmt-anim-slideUp {
  animation: fbbotcmtSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both
}

.fbbotcmt-hero-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.25;
  text-shadow: 0 0 30px rgba(24, 119, 242, 0.3), 0 2px 20px rgba(0, 0, 0, 0.3)
}

.fbbotcmt-hero-title .accent {
  background: var(--fbbotcmt-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.fbbotcmt-hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 560px
}

.fbbotcmt-hero-desc strong {
  color: var(--fbbotcmt-accent)
}

.fbbotcmt-kw-rotator {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px
}

.fbbotcmt-kw {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(24, 119, 242, 0.12);
  border: 1px solid rgba(24, 119, 242, 0.25);
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap
}

/* ========== GLASS FORM ========== */
.fbbotcmt-glass-form {
  background: linear-gradient(160deg, rgba(24, 119, 242, 0.08) 0%, rgba(10, 22, 40, 0.95) 40%, rgba(19, 45, 80, 0.97) 100%);
  border: 1px solid var(--fbbotcmt-glass-border);
  border-radius: var(--fbbotcmt-radius);
  padding: 24px 28px;
  position: relative;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.25), 0 0 40px rgba(24, 119, 242, 0.1)
}

.fbbotcmt-glass-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--fbbotcmt-radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.4), rgba(66, 183, 42, 0.2), rgba(24, 119, 242, 0.35));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none
}

.fbbotcmt-form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.fbbotcmt-form-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--fbbotcmt-gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.3)
}

.fbbotcmt-form-header-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3
}

.fbbotcmt-form-header-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 2px 0 0;
  line-height: 1.3
}

.fbbotcmt-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
  padding: 0 4px
}

.fbbotcmt-step {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, opacity 0.35s ease, max-height 0.35s ease;
  cursor: default;
  white-space: nowrap
}

.fbbotcmt-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, opacity 0.35s ease, max-height 0.35s ease;
  flex-shrink: 0
}

.fbbotcmt-step.active {
  color: rgba(255, 255, 255, 0.95)
}

.fbbotcmt-step.active .fbbotcmt-step-num {
  background: var(--fbbotcmt-gradient-accent);
  border-color: var(--fbbotcmt-primary);
  color: #fff;
  box-shadow: 0 0 12px rgba(24, 119, 242, 0.4)
}

.fbbotcmt-step.completed {
  color: rgba(255, 255, 255, 0.6)
}

.fbbotcmt-step.completed .fbbotcmt-step-num {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  border-color: #4CAF50;
  color: #fff;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
  font-size: 0
}

.fbbotcmt-step.completed .fbbotcmt-step-num::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.6rem
}

.fbbotcmt-form-group {
  margin-bottom: 16px
}

.fbbotcmt-form-group:last-of-type {
  margin-bottom: 8px
}

.fbbotcmt-form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px
}

.fbbotcmt-form-label i {
  color: var(--fbbotcmt-primary);
  font-size: 0.88rem
}

.fbbotcmt-form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  transition: grid-template-columns .3s ease
}

@media(min-width:768px) {
  .fbbotcmt-form-row-2col.has-selection {
    grid-template-columns: auto minmax(0, 1fr)
  }
}

.fbbotcmt-form-row-2col>.fbbotcmt-form-group {
  min-width: 0
}

#server-wrapper,
#country-wrapper {
  min-width: 0
}

.fbbotcmt-glass-form .custom-select-trigger span,
.fbbotcmt-glass-form .custom-select-trigger #server-render,
.fbbotcmt-glass-form .custom-select-trigger #country-render {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1
}

.fbbotcmt-glass-form #country-render {
  display: inline-flex;
  align-items: center
}

.fbbotcmt-glass-form #country-render img {
  width: 24px;
  height: 18px;
  flex: 0 0 24px;
  margin-right: 8px;
  object-fit: cover;
  border-radius: 3px
}

.fbbotcmt-server-trigger {
  position: relative
}

.fbbotcmt-server-trigger #server-render {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 20px)
}

.fbbotcmt-glass-form #server-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  transition: background .15s;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.fbbotcmt-glass-form #server-list li:hover {
  background: rgba(24, 119, 242, 0.12)
}

.fbbotcmt-glass-form #server-list li strong {
  color: var(--fbbotcmt-accent)
}

.fbbotcmt-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.88rem;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
  outline: none
}

.fbbotcmt-input::placeholder {
  color: rgba(255, 255, 255, 0.3)
}

.fbbotcmt-input:focus {
  border-color: var(--fbbotcmt-primary);
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.15), inset 0 0 0 1px rgba(24, 119, 242, 0.1);
  background: rgba(255, 255, 255, 0.1)
}

.fbbotcmt-input option {
  background: #0a1628;
  color: #fff;
  padding: 8px
}

.fbbotcmt-qty-row {
  display: flex;
  gap: 0
}

.fbbotcmt-qty-row .fbbotcmt-input {
  border-radius: 10px 0 0 10px;
  border-right: none
}

.fbbotcmt-qty-suffix {
  background: rgba(24, 119, 242, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: none;
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  color: var(--fbbotcmt-primary);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  display: flex;
  align-items: center
}

.fbbotcmt-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0
}

.fbbotcmt-price-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem
}

.fbbotcmt-price-value {
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem
}

.fbbotcmt-price-total {
  color: var(--fbbotcmt-accent);
  font-size: 1.1rem;
  font-weight: 800
}

.fbbotcmt-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.84rem;
  resize: vertical;
  min-height: 44px;
  outline: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease
}

.fbbotcmt-textarea:focus {
  border-color: var(--fbbotcmt-primary);
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.15)
}

.fbbotcmt-server-desc {
  background: rgba(24, 119, 242, 0.08);
  border: 1px solid rgba(24, 119, 242, 0.15);
  border-radius: 6px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-top: 6px;
  display: none;
  line-height: 1.4
}

.fbbotcmt-qty-hint {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  margin-top: 3px;
  display: block
}

/* ========== REACTION CHECKBOXES (UNIQUE — Facebook Like Only) ========== */
.fbbotcmt-reactions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 6px
}

.fbbotcmt-reaction-option {
  position: relative
}

.fbbotcmt-reaction-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.fbbotcmt-reaction-option label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease, max-height 0.25s ease;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500
}

.fbbotcmt-reaction-option label img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.2s
}

.fbbotcmt-reaction-option input:checked+label {
  background: rgba(24, 119, 242, 0.15);
  border-color: rgba(24, 119, 242, 0.5);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(24, 119, 242, 0.15)
}

.fbbotcmt-reaction-option input:checked+label img {
  animation: fbbotcmtReactionPop 0.3s ease
}

.fbbotcmt-reaction-option label:hover {
  background: rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.3)
}

.fbbotcmt-reactions-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  display: block
}

/* CTA */
.fbbotcmt-cta-btn {
  width: 100%;
  background: var(--fbbotcmt-gradient-accent);
  border: none;
  border-radius: 12px;
  padding: 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 12px
}

.fbbotcmt-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4)
}

.fbbotcmt-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: fbbotcmtShimmer 3s infinite
}

.fbbotcmt-trust-mini {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap
}

.fbbotcmt-trust-mini-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem
}

.fbbotcmt-trust-mini-item i {
  color: var(--fbbotcmt-accent);
  font-size: 0.72rem
}

/* Glass form select override */
.fbbotcmt-glass-form .custom-select-trigger {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  padding: 12px 14px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
  font-size: 0.88rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 32px
}

.fbbotcmt-glass-form .custom-select-trigger:hover,
.fbbotcmt-glass-form .custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--fbbotcmt-primary);
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.15)
}

.fbbotcmt-glass-form .custom-select-trigger .arrow {
  border-top-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%)
}

.fbbotcmt-glass-form .custom-select-dropdown {
  background: rgba(10, 22, 40, 0.98);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  width: 100%;
  min-width: 100%;
  max-width: calc(100vw - 40px);
  left: 0;
  right: auto
}

.fbbotcmt-glass-form .custom-search-container {
  background: rgba(10, 22, 40, 0.8);
  border-color: rgba(255, 255, 255, 0.08)
}

.fbbotcmt-glass-form .custom-search-input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff
}

.fbbotcmt-glass-form .custom-option {
  color: rgba(255, 255, 255, 0.9);
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
  padding: 10px 12px;
  font-size: 0.82rem
}

.fbbotcmt-glass-form .custom-option:hover {
  background: rgba(24, 119, 242, 0.12)
}

/* ========== PROOF PANEL ========== */
.fbbotcmt-proof-panel {
  background: rgba(10, 22, 40, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--fbbotcmt-radius-lg);
  padding: 20px;
  margin-top: 12px
}

.fbbotcmt-proof-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px
}

.fbbotcmt-proof-robot {
  position: relative;
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center
}

.fbbotcmt-cat-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  pointer-events: none
}

.fbbotcmt-robot-img-sm {
  width: 120px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 20px rgba(24, 119, 242, 0.25))
}

.fbbotcmt-fbadge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: 12px;
  background: rgba(24, 119, 242, 0.18);
  border: 1px solid rgba(24, 119, 242, 0.3);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 3px 10px rgba(24, 119, 242, 0.12)
}

.fbbotcmt-fbadge i {
  font-size: 0.55rem;
  color: var(--fbbotcmt-accent)
}

.fbbotcmt-mini-1 {
  top: -2px;
  right: -8px;
  animation: fbbotcmtFloat1 3.5s ease-in-out infinite
}

.fbbotcmt-mini-2 {
  bottom: 5px;
  left: -10px;
  animation: fbbotcmtFloat2 4s ease-in-out infinite 0.8s
}

.fbbotcmt-mini-3 {
  top: 50%;
  right: -16px;
  background: rgba(66, 183, 42, 0.2);
  border-color: rgba(66, 183, 42, 0.35);
  opacity: 0.7
}

.fbbotcmt-proof-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.fbbotcmt-pstat {
  text-align: center;
  padding: 10px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease
}

.fbbotcmt-pstat:hover {
  background: rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.24);
  transform: translateY(-2px)
}

.fbbotcmt-pstat-icon {
  font-size: 0.9rem;
  color: var(--fbbotcmt-primary);
  margin-bottom: 4px
}

.fbbotcmt-pstat-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums
}

.fbbotcmt-pstat-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

/* Live Feed */
.fbbotcmt-livefeed {
  max-height: 200px;
  overflow: hidden;
  position: relative
}

.fbbotcmt-livefeed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.95));
  pointer-events: none;
  z-index: 2
}

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

.fbbotcmt-livefeed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
  animation: fbbotcmtDotBlink 1.5s ease-in-out infinite
}

.fbbotcmt-livefeed-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px
}

.fbbotcmt-livefeed-list {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.fbbotcmt-livefeed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  animation: fbbotcmtFeedSlideIn 0.5s ease-out
}

.fbbotcmt-livefeed-item:hover {
  background: rgba(24, 119, 242, 0.06);
  border-color: rgba(24, 119, 242, 0.15)
}

.fbbotcmt-livefeed-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
  background: var(--fbbotcmt-gradient-accent)
}

.fbbotcmt-livefeed-info {
  flex: 1;
  min-width: 0
}

.fbbotcmt-livefeed-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.fbbotcmt-livefeed-name span {
  color: var(--fbbotcmt-primary);
  font-weight: 700
}

.fbbotcmt-livefeed-detail {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.fbbotcmt-livefeed-time {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  flex-shrink: 0
}

/* ========== SEO SECTIONS ========== */
.fbbotcmt-section {
  padding: 16px 0;
  position: relative;
  overflow: hidden
}

.fbbotcmt-section:nth-child(odd) {
  background: linear-gradient(180deg, #f0f6ff 0%, #e8f0fe 100%)
}

.fbbotcmt-section:nth-child(even) {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%)
}

.fbbotcmt-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: radial-gradient(circle, #1a1a2e 1px, transparent 1px);
  background-size: 24px 24px
}

.fbbotcmt-section-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin-bottom: 12px;
  line-height: 1.35;
  position: relative;
  padding-bottom: 8px
}

.fbbotcmt-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: var(--fbbotcmt-gradient-accent)
}

.fbbotcmt-section-title.center {
  text-align: center
}

.fbbotcmt-section-title.center::after {
  left: 50%;
  transform: translateX(-50%)
}

.fbbotcmt-section-desc {
  font-size: 0.95rem;
  color: var(--fbbotcmt-text);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto
}

.fbbotcmt-section-text {
  font-size: 0.92rem;
  color: var(--fbbotcmt-text);
  line-height: 1.75;
  margin-bottom: 14px
}

.fbbotcmt-section-text strong {
  color: var(--fbbotcmt-heading)
}

.fbbotcmt-section-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 auto
}

.fbbotcmt-img-card {
  background: var(--fbbotcmt-card-bg);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(24, 119, 242, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(24, 119, 242, 0.06);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden
}

.fbbotcmt-img-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.3), rgba(66, 183, 42, 0.15), rgba(24, 119, 242, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s
}

.fbbotcmt-img-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.1), 0 4px 12px rgba(66, 183, 42, 0.06)
}

.fbbotcmt-img-card:hover::before {
  opacity: 1
}

.fbbotcmt-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1)
}

.fbbotcmt-reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* Benefits list */
.fbbotcmt-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.fbbotcmt-benefits-list li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--fbbotcmt-list-border);
  font-size: 0.92rem;
  color: var(--fbbotcmt-text);
  line-height: 1.65;
  position: relative
}

.fbbotcmt-benefits-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--fbbotcmt-primary);
  font-size: 1.05rem
}

.fbbotcmt-benefits-list li:last-child {
  border-bottom: none
}

.fbbotcmt-benefits-list li strong {
  color: var(--fbbotcmt-heading)
}

/* Guide Grid */
.fbbotcmt-guide-intro {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--fbbotcmt-card-bg);
  border-radius: 20px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04)
}

.fbbotcmt-guide-intro-img {
  flex: 0 0 320px;
  max-width: 320px;
  border-radius: 14px;
  overflow: hidden
}

.fbbotcmt-guide-intro-img img {
  width: 100%;
  display: block;
  border-radius: 14px
}

.fbbotcmt-guide-intro-text {
  flex: 1
}

.fbbotcmt-guide-intro-text p {
  font-size: 0.9rem;
  color: var(--fbbotcmt-text);
  line-height: 1.7;
  margin: 0 0 10px 0
}

.fbbotcmt-guide-intro-text p:last-child {
  margin-bottom: 0
}

.fbbotcmt-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.fbbotcmt-guide-card {
  background: var(--fbbotcmt-card-bg);
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden
}

.fbbotcmt-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(24, 119, 242, 0.07);
  border-color: rgba(24, 119, 242, 0.18)
}

.fbbotcmt-guide-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px
}

.fbbotcmt-guide-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fbbotcmt-gradient-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(24, 119, 242, 0.3)
}

.fbbotcmt-guide-card-head h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fbbotcmt-heading);
  margin: 0
}

.fbbotcmt-guide-card-head i {
  font-size: 1.1rem;
  color: var(--fbbotcmt-primary);
  margin-right: -4px
}

.fbbotcmt-guide-card p {
  font-size: 0.85rem;
  color: var(--fbbotcmt-text);
  line-height: 1.65;
  margin: 0
}

.fbbotcmt-guide-card--cta {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.04), rgba(66, 183, 42, 0.03));
  border-color: rgba(24, 119, 242, 0.12);
  text-align: center;
  padding: 24px 30px
}

.fbbotcmt-guide-card--cta p {
  font-size: 0.92rem;
  max-width: 700px;
  margin: 0 auto
}

.fbbotcmt-guide-card--cta a {
  color: var(--fbbotcmt-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px
}

@media(max-width:767px) {
  .fbbotcmt-guide-intro {
    flex-direction: column;
    gap: 16px
  }

  .fbbotcmt-guide-intro-img {
    flex: none;
    max-width: 100%;
    width: 100%
  }

  .fbbotcmt-guide-grid {
    grid-template-columns: 1fr
  }

  .fbbotcmt-guide-card--cta {
    grid-column: span 1
  }
}

/* ========== HOW-TO STEPS GRID ========== */
.fbbotcmt-howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.fbbotcmt-howto-card {
  background: var(--fbbotcmt-card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1)
}

.fbbotcmt-howto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.2)
}

.fbbotcmt-howto-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3
}

.fbbotcmt-howto-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease
}

.fbbotcmt-howto-card:hover .fbbotcmt-howto-card-img img {
  transform: scale(1.05)
}

.fbbotcmt-howto-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fbbotcmt-gradient-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
  z-index: 2
}

.fbbotcmt-howto-card-body {
  padding: 16px 18px 20px
}

.fbbotcmt-howto-card-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fbbotcmt-heading);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px
}

.fbbotcmt-howto-card-body h4 i {
  color: var(--fbbotcmt-primary);
  font-size: 1rem
}

.fbbotcmt-howto-card-body p {
  font-size: 0.82rem;
  color: var(--fbbotcmt-text);
  line-height: 1.6;
  margin: 0
}

.fbbotcmt-howto-card-body a {
  color: var(--fbbotcmt-primary);
  font-weight: 600;
  text-decoration: none
}

.fbbotcmt-howto-card-body a:hover {
  text-decoration: underline
}

@media(max-width:991px) {
  .fbbotcmt-howto-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:575px) {
  .fbbotcmt-howto-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

/* ========== PRICING TABLE ========== */
.fbbotcmt-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06)
}

.fbbotcmt-pricing-table thead th {
  background: var(--fbbotcmt-gradient-accent);
  color: #fff;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center
}

.fbbotcmt-pricing-table tbody td {
  padding: 12px 16px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--fbbotcmt-text);
  border-bottom: 1px solid #eee
}

.fbbotcmt-pricing-table tbody tr:hover {
  background: rgba(24, 119, 242, 0.03)
}

.fbbotcmt-pricing-table .fbbotcmt-popular {
  background: rgba(24, 119, 242, 0.05);
  font-weight: 700
}

.fbbotcmt-pricing-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  background: var(--fbbotcmt-gradient-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  margin-left: 6px
}

/* ========== TIPS/LUU Y CARDS ========== */
.fbbotcmt-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.fbbotcmt-tip-card {
  background: var(--fbbotcmt-card-bg);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: color 0.35s, background-color 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s, opacity 0.35s, max-height 0.35s;
  border: 1px solid var(--fbbotcmt-card-border);
  border-top: 3px solid var(--fbbotcmt-primary)
}

.fbbotcmt-tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(24, 119, 242, 0.08)
}

.fbbotcmt-tip-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: color 0.3s
}

.fbbotcmt-tip-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fbbotcmt-heading);
  margin-bottom: 8px
}

.fbbotcmt-tip-card p {
  font-size: 0.85rem;
  color: var(--fbbotcmt-text);
  line-height: 1.6;
  margin: 0
}

/* ========== TESTIMONIALS MARQUEE ========== */
.fbbotcmt-testimonials {
  padding: 20px 0;
  background: linear-gradient(135deg, #0a1628 0%, #132d50 50%, #0a1628 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden
}

.fbbotcmt-testimonials .fbbotcmt-section-title {
  color: #fff
}

.fbbotcmt-testimonials .fbbotcmt-section-title::after {
  background: var(--fbbotcmt-gradient-accent)
}

.fbbotcmt-testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform
}

.fbbotcmt-testi-row-1 {
  animation: fbbotcmtMarquee 60s linear infinite
}

.fbbotcmt-testi-row-2 {
  animation: fbbotcmtMarquee 65s linear infinite reverse;
  margin-top: 16px
}

.fbbotcmt-testi-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease
}

.fbbotcmt-testi-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(24, 119, 242, 0.25);
  transform: translateY(-3px)
}

.fbbotcmt-testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px
}

.fbbotcmt-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: var(--fbbotcmt-gradient-accent);
  flex-shrink: 0
}

.fbbotcmt-testi-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff
}

.fbbotcmt-testi-role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5)
}

.fbbotcmt-testi-stars {
  color: #FFC107;
  font-size: 0.75rem;
  margin-bottom: 8px
}

.fbbotcmt-testi-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  font-style: italic
}

.fbbotcmt-testi-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(24, 119, 242, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(24, 119, 242, 0.2);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase
}

/* ========== FAQ ========== */
.fbbotcmt-faq .accordion-item {
  border: 1px solid var(--fbbotcmt-card-border);
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden
}

.fbbotcmt-faq .accordion-button {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--fbbotcmt-heading);
  padding: 16px 20px;
  background: var(--fbbotcmt-card-bg)
}

.fbbotcmt-faq .accordion-button:not(.collapsed) {
  background: rgba(24, 119, 242, 0.04);
  color: var(--fbbotcmt-primary)
}

.fbbotcmt-faq .accordion-button::after {
  filter: none
}

.fbbotcmt-faq .accordion-body {
  font-size: 0.88rem;
  color: var(--fbbotcmt-text);
  line-height: 1.7;
  padding: 4px 20px 16px
}

/* ========== RELATED SERVICES ========== */
.fbbotcmt-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.fbbotcmt-related-card {
  background: var(--fbbotcmt-card-bg);
  border-radius: var(--fbbotcmt-radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--fbbotcmt-card-border);
  transition: color 0.35s, background-color 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s, opacity 0.35s, max-height 0.35s;
  text-decoration: none;
  display: block
}

.fbbotcmt-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.2)
}

.fbbotcmt-related-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(66, 183, 42, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  color: var(--fbbotcmt-primary);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease
}

.fbbotcmt-related-card:hover .fbbotcmt-related-icon {
  background: var(--fbbotcmt-gradient-accent);
  color: #fff
}

.fbbotcmt-related-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fbbotcmt-heading);
  margin-bottom: 6px
}

.fbbotcmt-related-card p {
  font-size: 0.82rem;
  color: var(--fbbotcmt-text);
  line-height: 1.5;
  margin: 0
}

/* ========== CTA FINAL ========== */
.fbbotcmt-cta-final {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--fbbotcmt-gradient-accent);
  padding: 20px 0;
  text-align: center
}

.fbbotcmt-cta-final h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px
}

.fbbotcmt-cta-final p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 20px
}

.fbbotcmt-cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  background: #fff;
  color: var(--fbbotcmt-primary);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15)
}

.fbbotcmt-cta-final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  color: var(--fbbotcmt-primary)
}

/* ========== LIGHTBOX ========== */
.fbbotcmt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
  cursor: pointer
}

.fbbotcmt-lightbox.active {
  opacity: 1;
  visibility: visible
}

.fbbotcmt-lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: fbbotcmtFadeScale 0.3s ease
}

.fbbotcmt-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s
}

.fbbotcmt-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3)
}

/* ========== DARK MODE ========== */
[data-bs-theme="dark"] .fbbotcmt-section {
  background: #1a1a2e !important
}

[data-bs-theme="dark"] .fbbotcmt-section:nth-child(even) {
  background: #141428 !important
}

[data-bs-theme="dark"] .fbbotcmt-section-title {
  color: #fff
}

[data-bs-theme="dark"] .fbbotcmt-section-text,
[data-bs-theme="dark"] .fbbotcmt-section-desc {
  color: rgba(255, 255, 255, 0.7)
}

[data-bs-theme="dark"] .fbbotcmt-section-text strong {
  color: var(--fbbotcmt-accent)
}

[data-bs-theme="dark"] .fbbotcmt-guide-card,
[data-bs-theme="dark"] .fbbotcmt-tip-card,
[data-bs-theme="dark"] .fbbotcmt-related-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff
}

[data-bs-theme="dark"] .fbbotcmt-guide-card h4,
[data-bs-theme="dark"] .fbbotcmt-tip-card h4,
[data-bs-theme="dark"] .fbbotcmt-related-card h4 {
  color: #fff
}

[data-bs-theme="dark"] .fbbotcmt-guide-card p,
[data-bs-theme="dark"] .fbbotcmt-tip-card p,
[data-bs-theme="dark"] .fbbotcmt-related-card p {
  color: rgba(255, 255, 255, 0.6)
}

[data-bs-theme="dark"] .fbbotcmt-img-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08)
}

[data-bs-theme="dark"] .fbbotcmt-pricing-table tbody td {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.08)
}

[data-bs-theme="dark"] .fbbotcmt-pricing-table tbody tr:hover {
  background: rgba(24, 119, 242, 0.08)
}

[data-bs-theme="dark"] .fbbotcmt-faq .accordion-item {
  border-color: rgba(255, 255, 255, 0.08)
}

[data-bs-theme="dark"] .fbbotcmt-faq .accordion-button {
  background: rgba(255, 255, 255, 0.04);
  color: #fff
}

[data-bs-theme="dark"] .fbbotcmt-faq .accordion-body {
  color: rgba(255, 255, 255, 0.7)
}

[data-bs-theme="dark"] .fbbotcmt-benefits-list li {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.08)
}

[data-bs-theme="dark"] .fbbotcmt-benefits-list li strong {
  color: var(--fbbotcmt-accent)
}

[data-bs-theme="dark"] .fbbotcmt-howto-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08)
}

[data-bs-theme="dark"] .fbbotcmt-howto-card-body h4 {
  color: #fff
}

[data-bs-theme="dark"] .fbbotcmt-howto-card-body p {
  color: rgba(255, 255, 255, 0.6)
}

/* ========== RESPONSIVE ========== */
@media(max-width:991.98px) {
  .fbbotcmt-hero-row {
    flex-direction: column
  }

  .fbbotcmt-col-form {
    order: -1
  }

  .fbbotcmt-hero {
    padding: 12px 0 20px
  }

  .fbbotcmt-glass-form {
    margin-bottom: 20px
  }

  .fbbotcmt-proof-hero {
    flex-direction: column;
    text-align: center
  }

  .fbbotcmt-proof-robot {
    width: 80px;
    height: 80px
  }

  .fbbotcmt-robot-img-sm {
    width: 70px
  }

  .fbbotcmt-fbadge {
    display: none
  }

  .fbbotcmt-related-grid {
    grid-template-columns: 1fr
  }

  .fbbotcmt-tips-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:767.98px) {
  .fbbotcmt-form-row-2col {
    grid-template-columns: 1fr
  }

  .fbbotcmt-reactions-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .fbbotcmt-section {
    padding: 12px 0
  }

  .fbbotcmt-section-title {
    font-size: 1.2rem
  }

  .fbbotcmt-hero-title {
    font-size: 1.3rem
  }
}

@media(max-width:575.98px) {
  .fbbotcmt-glass-form {
    padding: 18px 16px
  }

  .fbbotcmt-proof-panel {
    padding: 14px
  }

  .fbbotcmt-reactions-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* === Hero Anchor Paragraph === */
.fbbotcmt-hero-anchor {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 560px;
  padding: 12px 16px;
  background: rgba(24, 119, 242, 0.05);
  border-left: 3px solid var(--fbbotcmt-accent);
  border-radius: 0 8px 8px 0
}

.fbbotcmt-hero-anchor a {
  color: var(--fbbotcmt-accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed var(--fbbotcmt-accent);
  transition: color 0.3s ease, border-color 0.3s ease
}

.fbbotcmt-hero-anchor a:hover {
  color: #fff;
  border-bottom-color: #fff
}

/* Hero Info Card */
.fbbotcmt-hero-info-card {
  margin-top: 12px;
  margin-bottom: 20px;
  background: rgba(10, 22, 40, 0.65);
  border: 1px solid rgba(24, 119, 242, 0.1);
  border-radius: 12px;
  padding: 16px 18px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden
}

.fbbotcmt-hero-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1877F2, #42B72A);
  border-radius: 3px 0 0 3px
}

.fbbotcmt-hero-info-card .fbbotcmt-hero-desc {
  margin-bottom: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(24, 119, 242, 0.08);
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: none;
  margin-top: 0
}

.fbbotcmt-hero-info-card .fbbotcmt-hero-desc strong {
  color: var(--fbbotcmt-accent)
}

.fbbotcmt-hero-info-card .fbbotcmt-hero-anchor {
  margin-bottom: 0;
  padding: 12px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: none;
  background: none;
  border-left: none;
  border-radius: 0
}

/* === Pricing Table === */
.fbbotcmt-pricing-table-wrap {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(24, 119, 242, 0.15);
  background: rgba(10, 22, 40, 0.5)
}

.fbbotcmt-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem
}

.fbbotcmt-pricing-table thead {
  background: rgba(24, 119, 242, 0.12)
}

.fbbotcmt-pricing-table th {
  padding: 12px 14px;
  color: var(--fbbotcmt-primary, #1877F2);
  font-weight: 700;
  text-align: left;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 2px solid rgba(24, 119, 242, 0.2)
}

.fbbotcmt-pricing-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  vertical-align: middle
}

.fbbotcmt-pricing-table td small {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem
}

.fbbotcmt-pricing-table tbody tr:hover {
  background: rgba(24, 119, 242, 0.06)
}

.fbbotcmt-pricing-row-premium {
  background: rgba(24, 119, 242, 0.08) !important;
  border-left: 3px solid var(--fbbotcmt-accent, #42B72A)
}

.fbbotcmt-price-highlight {
  background: var(--fbbotcmt-primary, #1877F2);
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap
}

.fbbotcmt-pricing-note {
  padding: 12px 16px;
  margin-top: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.fbbotcmt-pricing-note i {
  margin-right: 6px;
  color: var(--fbbotcmt-primary, #1877F2)
}

[data-bs-theme="dark"] .fbbotcmt-pricing-table-wrap {
  background: rgba(10, 10, 26, 0.6);
  border-color: rgba(24, 119, 242, 0.2)
}

@media(max-width:767px) {
  .fbbotcmt-pricing-table {
    font-size: 0.78rem
  }

  .fbbotcmt-pricing-table th,
  .fbbotcmt-pricing-table td {
    padding: 8px 8px
  }
}

/* === 2nd Testimonial Marquee Row (reverse direction) === */
.fbbotcmt-testi-row-2 {
  margin-top: 16px;
  animation-direction: reverse
}

@keyframes fbbotcmtTestiScrollReverse {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

.fbbotcmt-testi-row-2 .fbbotcmt-testi-card {
  animation: none
}

.fbbotcmt-testi-track.fbbotcmt-testi-row-2 {
  animation: fbbotcmtTestiScrollReverse 80s linear infinite
}

/* ========== V2 PREMIUM HOW-TO (COMPACT COMPONENT) ========== */
.fbbotcmt-steps-compact {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 10px 0 30px;
}

.fbbotcmt-step-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--fbbotcmt-card-bg);
  border-radius: 20px;
  padding: 16px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

[data-bs-theme="dark"] .fbbotcmt-step-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.fbbotcmt-step-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 30px rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.2);
}

.fbbotcmt-step-visual {
  flex: 0 0 320px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fbbotcmt-step-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  transition: transform 0.4s ease;
  transform: scale(1.02);
}

.fbbotcmt-step-card:hover .fbbotcmt-step-visual img {
  transform: scale(1.06);
}

.fbbotcmt-step-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  background: var(--fbbotcmt-gradient-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.fbbotcmt-step-info {
  flex: 1;
  padding: 10px 16px 10px 0;
}

.fbbotcmt-step-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-bs-theme="dark"] .fbbotcmt-step-info h4 {
  color: #fff;
}

.fbbotcmt-step-info h4 i {
  color: #fff;
  background: var(--fbbotcmt-gradient-accent);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
  flex-shrink: 0;
}

.fbbotcmt-step-info p {
  font-size: 0.95rem;
  color: var(--fbbotcmt-text);
  line-height: 1.65;
  margin: 0;
}

[data-bs-theme="dark"] .fbbotcmt-step-info p {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
  .fbbotcmt-step-card {
    flex-direction: column;
    padding: 16px;
    gap: 20px;
    text-align: center;
  }

  .fbbotcmt-step-card:hover {
    transform: translateY(-5px);
  }

  .fbbotcmt-step-visual {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .fbbotcmt-step-info {
    padding: 0 10px 10px;
  }

  .fbbotcmt-step-info h4 {
    justify-content: center;
    font-size: 1.1rem;
  }
}

/* ========== PREMIUM SEO FEATURE SECTIONS ========== */
.fbbotcmt-content-row {
  margin-bottom: 24px;
  position: relative;
}

.fbbotcmt-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.fbbotcmt-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);


  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-bs-theme="dark"] .fbbotcmt-feature-box {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.fbbotcmt-feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.15);
}

.fbbotcmt-ft-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(0, 212, 255, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fbbotcmt-primary);
  font-size: 1.1rem;
  border: 1px solid rgba(24, 119, 242, 0.2);
}

[data-bs-theme="dark"] .fbbotcmt-ft-icon {
  background: rgba(24, 119, 242, 0.15);
}

.fbbotcmt-ft-content {
  flex: 1;
  margin-top: 2px;
}

.fbbotcmt-ft-content strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin-bottom: 6px;
}

.fbbotcmt-ft-content p {
  font-size: 0.95rem;
  color: var(--fbbotcmt-text);
  line-height: 1.6;
  margin: 0;
}

.fbbotcmt-content-visual {
  position: relative;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  perspective: 1000px;
}

.fbbotcmt-content-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(30px);
}

[data-bs-theme="dark"] .fbbotcmt-content-visual::before {
  background: radial-gradient(circle, rgba(24, 119, 242, 0.15) 0%, transparent 70%);
}

.fbbotcmt-content-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

[data-bs-theme="dark"] .fbbotcmt-content-img {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.fbbotcmt-content-visual.fbbotcmt-tilt:hover .fbbotcmt-content-img {
  transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 30px 80px rgba(24, 119, 242, 0.2);
}

@media (max-width: 991px) {
  .fbbotcmt-feature-box {
    padding: 16px;
  }

  .fbbotcmt-content-visual {
    padding: 10px 0 0;
    margin-top: 10px;
  }
}

/* ========== SEO-1 MAGAZINE REDESIGN ========== */
.fbbotcmt-content1-magazine {
  padding: 48px 0 40px;
}

.fbbotcmt-content1-header {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
}

.fbbotcmt-content1-text-side .fbbotcmt-section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.fbbotcmt-content1-intro {
  font-size: 0.95rem;
  color: var(--fbbotcmt-text);
  line-height: 1.75;
}

.fbbotcmt-content1-intro p {
  margin-bottom: 14px;
}

.fbbotcmt-content1-intro strong {
  color: var(--fbbotcmt-heading);
}

.fbbotcmt-content1-img-side {
  position: relative;
  z-index: 1;
}

.fbbotcmt-content1-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 119, 242, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(24, 119, 242, 0.08);
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  perspective: 1000px;
}

.fbbotcmt-content1-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.4), rgba(66, 183, 42, 0.3), rgba(24, 119, 242, 0.2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 2;
}

.fbbotcmt-content1-img-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
  opacity: 0.7;
}

.fbbotcmt-content1-img-wrap:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 30px 80px rgba(24, 119, 242, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.fbbotcmt-content1-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fbbotcmt-content1-img-wrap:hover .fbbotcmt-content1-img {
  transform: scale(1.03);
}

/* Highlight Strip */
.fbbotcmt-content1-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.06) 0%, rgba(66, 183, 42, 0.04) 100%);
  border-radius: 16px;
  border: 1px solid rgba(24, 119, 242, 0.12);
  border-left: 4px solid var(--fbbotcmt-primary);
  margin-bottom: 20px;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
}

.fbbotcmt-content1-highlight:hover {
  border-color: rgba(24, 119, 242, 0.25);
  box-shadow: 0 8px 32px rgba(24, 119, 242, 0.08);
  transform: translateX(4px);
}

.fbbotcmt-content1-highlight-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--fbbotcmt-gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.25);
}

.fbbotcmt-content1-highlight p {
  font-size: 0.92rem;
  color: var(--fbbotcmt-text);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.fbbotcmt-content1-highlight strong {
  color: var(--fbbotcmt-heading);
}

/* Cross-link paragraph */
.fbbotcmt-content1-crosslink {
  margin-bottom: 28px;
}

.fbbotcmt-content1-crosslink p {
  font-size: 0.92rem;
  color: var(--fbbotcmt-text);
  line-height: 1.7;
  margin: 0;
}

.fbbotcmt-content1-crosslink a {
  color: var(--fbbotcmt-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--fbbotcmt-primary);
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s, opacity 0.2s, max-height 0.2s;
}

.fbbotcmt-content1-crosslink a:hover {
  color: var(--fbbotcmt-primary-dark);
  border-bottom-style: solid;
}

/* Algorithm Section */
.fbbotcmt-content1-algo {
  position: relative;
}

.fbbotcmt-content1-algo-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(24, 119, 242, 0.1);
}

.fbbotcmt-content1-algo-title i {
  color: #fff;
  background: var(--fbbotcmt-gradient-accent);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.3);
  flex-shrink: 0;
}

.fbbotcmt-content1-algo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fbbotcmt-content1-algo-card {
  position: relative;
  background: var(--fbbotcmt-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.fbbotcmt-content1-algo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--fbbotcmt-gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fbbotcmt-content1-algo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.2);
}

.fbbotcmt-content1-algo-card:hover::before {
  opacity: 1;
}

.fbbotcmt-content1-algo-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(24, 119, 242, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

.fbbotcmt-content1-algo-card:hover .fbbotcmt-content1-algo-num {
  color: rgba(24, 119, 242, 0.12);
}

.fbbotcmt-content1-algo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(0, 212, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fbbotcmt-primary);
  font-size: 1.2rem;
  margin-bottom: 14px;
  border: 1px solid rgba(24, 119, 242, 0.15);
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
}

.fbbotcmt-content1-algo-card:hover .fbbotcmt-content1-algo-icon {
  background: var(--fbbotcmt-gradient-accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.3);
  transform: scale(1.08);
}

.fbbotcmt-content1-algo-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin-bottom: 2px;
}

.fbbotcmt-content1-algo-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--fbbotcmt-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.fbbotcmt-content1-algo-card p {
  font-size: 0.88rem;
  color: var(--fbbotcmt-text);
  line-height: 1.6;
  margin: 0;
}

.fbbotcmt-content1-algo-card a {
  color: var(--fbbotcmt-primary);
  font-weight: 600;
  text-decoration: none;
}

.fbbotcmt-content1-algo-card a:hover {
  text-decoration: underline;
}

/* SEO-1 Dark Mode */
[data-bs-theme="dark"] .fbbotcmt-content1-intro {
  color: rgba(255, 255, 255, 0.7);
}

[data-bs-theme="dark"] .fbbotcmt-content1-intro strong {
  color: var(--fbbotcmt-accent);
}

[data-bs-theme="dark"] .fbbotcmt-content1-img-wrap {
  border-color: rgba(24, 119, 242, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

[data-bs-theme="dark"] .fbbotcmt-content1-highlight {
  background: rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.2);
}

[data-bs-theme="dark"] .fbbotcmt-content1-highlight p {
  color: rgba(255, 255, 255, 0.7);
}

[data-bs-theme="dark"] .fbbotcmt-content1-highlight strong {
  color: var(--fbbotcmt-accent);
}

[data-bs-theme="dark"] .fbbotcmt-content1-crosslink p {
  color: rgba(255, 255, 255, 0.7);
}

[data-bs-theme="dark"] .fbbotcmt-content1-algo-title {
  color: #fff;
  border-color: rgba(24, 119, 242, 0.2);
}

[data-bs-theme="dark"] .fbbotcmt-content1-algo-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-content1-algo-card strong {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-content1-algo-card p {
  color: rgba(255, 255, 255, 0.6);
}

[data-bs-theme="dark"] .fbbotcmt-content1-algo-num {
  color: rgba(24, 119, 242, 0.1);
}

/* SEO-1 Responsive */
@media (max-width: 991px) {
  .fbbotcmt-content1-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fbbotcmt-content1-img-side {
    max-width: 480px;
    margin: 0 auto;
  }

  .fbbotcmt-content1-magazine {
    padding: 32px 0 28px;
  }
}

@media (max-width: 767px) {
  .fbbotcmt-content1-header {
    gap: 20px;
  }

  .fbbotcmt-content1-text-side .fbbotcmt-section-title {
    font-size: 1.3rem;
  }

  .fbbotcmt-content1-algo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fbbotcmt-content1-highlight {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .fbbotcmt-content1-magazine {
    padding: 24px 0 20px;
  }
}

/* ========== SEO-2 BENEFITS REDESIGN ========== */
.fbbotcmt-content2-benefits {
  padding: 48px 0 40px;
}

.fbbotcmt-content2-intro {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: center;
  margin: 28px 0 36px;
  background: var(--fbbotcmt-card-bg);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 8px 32px rgba(24, 119, 242, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fbbotcmt-content2-intro:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fbbotcmt-content2-intro-img {
  border-radius: 16px;
  overflow: hidden;
}

.fbbotcmt-content2-intro-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.fbbotcmt-content2-intro:hover .fbbotcmt-content2-intro-img img {
  transform: scale(1.04);
}

.fbbotcmt-content2-intro-text {
  padding: 8px 12px 8px 0;
}

.fbbotcmt-content2-intro-text p {
  font-size: 1.05rem;
  color: var(--fbbotcmt-text);
  line-height: 1.75;
  margin: 0;
}

.fbbotcmt-content2-intro-text strong {
  color: var(--fbbotcmt-heading);
}

.fbbotcmt-content2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fbbotcmt-content2-card {
  position: relative;
  background: var(--fbbotcmt-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.fbbotcmt-content2-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--fbbotcmt-gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fbbotcmt-content2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.2);
}

.fbbotcmt-content2-card:hover::before {
  opacity: 1;
}

.fbbotcmt-content2-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.fbbotcmt-content2-card:hover .fbbotcmt-content2-card-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.fbbotcmt-content2-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.fbbotcmt-content2-card p {
  font-size: 0.88rem;
  color: var(--fbbotcmt-text);
  line-height: 1.65;
  margin: 0;
}

/* SEO-2 Dark Mode */
[data-bs-theme="dark"] .fbbotcmt-content2-intro {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-content2-intro-text p {
  color: rgba(255, 255, 255, 0.7);
}

[data-bs-theme="dark"] .fbbotcmt-content2-intro-text strong {
  color: var(--fbbotcmt-accent);
}

[data-bs-theme="dark"] .fbbotcmt-content2-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-content2-card h4 {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-content2-card p {
  color: rgba(255, 255, 255, 0.6);
}

/* SEO-2 Responsive */
@media (max-width: 991px) {
  .fbbotcmt-content2-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fbbotcmt-content2-intro-img {
    max-width: 420px;
    margin: 0 auto;
  }

  .fbbotcmt-content2-intro-text {
    padding: 0 8px 8px;
  }

  .fbbotcmt-content2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fbbotcmt-content2-benefits {
    padding: 32px 0 28px;
  }
}

@media (max-width: 575px) {
  .fbbotcmt-content2-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fbbotcmt-content2-benefits {
    padding: 24px 0 20px;
  }

  .fbbotcmt-content2-card {
    padding: 22px 20px 20px;
  }
}

/* ========== SEO-4 PRICING CARDS REDESIGN ========== */
.fbbotcmt-content4-pricing {
  padding: 48px 0 40px;
}

.fbbotcmt-content4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.fbbotcmt-content4-card {
  position: relative;
  background: var(--fbbotcmt-card-bg);
  border-radius: 16px;
  padding: 24px 20px 20px;
  border: 1px solid var(--fbbotcmt-card-border);
  text-align: center;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.fbbotcmt-content4-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height 0.3s ease;
}

.fbbotcmt-content4-card[data-tier="basic"]::before {
  background: linear-gradient(90deg, #64B5F6, #1877F2);
}

.fbbotcmt-content4-card[data-tier="standard"]::before {
  background: linear-gradient(90deg, #66BB6A, #42B72A);
}

.fbbotcmt-content4-card[data-tier="premium"]::before {
  background: linear-gradient(90deg, #AB47BC, #7B1FA2);
}

.fbbotcmt-content4-card[data-tier="vip"]::before {
  background: linear-gradient(90deg, #FFB74D, #FF9800);
}

.fbbotcmt-content4-card[data-tier="best"]::before {
  background: linear-gradient(90deg, #FFD700, #FF6B35, #FFD700);
  height: 5px;
}

.fbbotcmt-content4-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.12);
}

.fbbotcmt-content4-card:hover::before {
  height: 6px;
}

.fbbotcmt-content4-card-header {
  margin-bottom: 12px;
}

.fbbotcmt-content4-server-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
}

.fbbotcmt-content4-server-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  background: rgba(24, 119, 242, 0.08);
  color: var(--fbbotcmt-primary);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.fbbotcmt-content4-card[data-tier="premium"] .fbbotcmt-content4-server-tag {
  background: rgba(123, 31, 162, 0.08);
  color: #7B1FA2;
}

.fbbotcmt-content4-card[data-tier="vip"] .fbbotcmt-content4-server-tag {
  background: rgba(255, 152, 0, 0.08);
  color: #FF9800;
}

.fbbotcmt-content4-card[data-tier="best"] .fbbotcmt-content4-server-tag {
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
}

.fbbotcmt-content4-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--fbbotcmt-primary);
  margin: 8px 0 16px;
  line-height: 1;
}

.fbbotcmt-content4-card[data-tier="premium"] .fbbotcmt-content4-price {
  color: #7B1FA2;
}

.fbbotcmt-content4-card[data-tier="vip"] .fbbotcmt-content4-price {
  color: #FF9800;
}

.fbbotcmt-content4-card[data-tier="best"] .fbbotcmt-content4-price {
  color: #FF6B35;
}

.fbbotcmt-content4-price small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fbbotcmt-text);
  opacity: 0.7;
}

.fbbotcmt-content4-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fbbotcmt-content4-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  font-size: 0.82rem;
}

.fbbotcmt-content4-detail span {
  color: var(--fbbotcmt-text);
  opacity: 0.6;
}

.fbbotcmt-content4-detail strong {
  color: var(--fbbotcmt-heading);
  font-weight: 700;
}

/* Best card special */
.fbbotcmt-content4-card-best {
  border: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.08);
}

.fbbotcmt-content4-card-best:hover {
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.5);
}

.fbbotcmt-content4-best-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FFD700, #FF6B35);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.fbbotcmt-content4-best-badge i {
  font-size: 0.6rem;
}

/* Note */
.fbbotcmt-content4-note {
  font-size: 0.82rem;
  color: var(--fbbotcmt-text);
  opacity: 0.7;
  text-align: center;
  margin: 0 0 24px;
}

.fbbotcmt-content4-note i {
  color: var(--fbbotcmt-primary);
  margin-right: 6px;
}

/* Formula section */
.fbbotcmt-content4-formula {
  background: var(--fbbotcmt-card-bg);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.fbbotcmt-content4-formula-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  text-align: center;
  margin-bottom: 16px;
}

.fbbotcmt-content4-formula-title i {
  color: var(--fbbotcmt-primary);
  margin-right: 8px;
}

.fbbotcmt-content4-formula-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fbbotcmt-content4-formula-card {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--fbbotcmt-text);
  line-height: 1.5;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
}

.fbbotcmt-content4-formula-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.fbbotcmt-content4-formula-card strong {
  color: var(--fbbotcmt-heading);
}

.fbbotcmt-content4-formula-card small {
  color: var(--fbbotcmt-text);
  opacity: 0.5;
  font-size: 0.78rem;
}

/* SEO-4 Dark Mode */
[data-bs-theme="dark"] .fbbotcmt-content4-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-content4-server-name {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-content4-detail {
  background: rgba(255, 255, 255, 0.04);
}

[data-bs-theme="dark"] .fbbotcmt-content4-detail strong {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-content4-formula {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-content4-formula-title {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-content4-formula-card {
  background: rgba(255, 255, 255, 0.04);
}

[data-bs-theme="dark"] .fbbotcmt-content4-formula-card strong {
  color: var(--fbbotcmt-accent);
}

[data-bs-theme="dark"] .fbbotcmt-content4-card-best {
  border-color: rgba(255, 107, 53, 0.4);
}

/* SEO-4 Responsive */
@media (max-width: 1199px) {
  .fbbotcmt-content4-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .fbbotcmt-content4-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fbbotcmt-content4-formula-grid {
    grid-template-columns: 1fr;
  }

  .fbbotcmt-content4-pricing {
    padding: 32px 0 28px;
  }
}

@media (max-width: 575px) {
  .fbbotcmt-content4-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fbbotcmt-content4-card {
    padding: 20px 18px 18px;
  }

  .fbbotcmt-content4-pricing {
    padding: 24px 0 20px;
  }
}

/* ========== SEO-5 ORGANIC TIPS REDESIGN ========== */
.fbbotcmt-content5-organic {
  padding: 48px 0 40px;
}

/* Hero Card: Image + Text side-by-side */
.fbbotcmt-content5-hero {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--fbbotcmt-card-bg);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 8px 32px rgba(24, 119, 242, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
  margin-bottom: 32px;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fbbotcmt-content5-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fbbotcmt-content5-hero-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.fbbotcmt-content5-hero-img::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.3), rgba(66, 183, 42, 0.2), rgba(24, 119, 242, 0.15));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 2;
}

.fbbotcmt-content5-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.fbbotcmt-content5-hero:hover .fbbotcmt-content5-hero-img img {
  transform: scale(1.04);
}

.fbbotcmt-content5-hero-text {
  padding: 8px 12px 8px 0;
}

.fbbotcmt-content5-hero-text .fbbotcmt-section-title {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.fbbotcmt-content5-hero-text p {
  font-size: 1.05rem;
  color: var(--fbbotcmt-text);
  line-height: 1.75;
  margin: 0;
}

/* Tips Grid: 2-column layout */
.fbbotcmt-content5-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

/* Individual Tip Card */
.fbbotcmt-content5-tip {
  position: relative;
  background: var(--fbbotcmt-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.fbbotcmt-content5-tip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--fbbotcmt-gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fbbotcmt-content5-tip:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.2);
}

.fbbotcmt-content5-tip:hover::before {
  opacity: 1;
}

/* Tip Number Badge (watermark) */
.fbbotcmt-content5-tip-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(24, 119, 242, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

.fbbotcmt-content5-tip:hover .fbbotcmt-content5-tip-num {
  color: rgba(24, 119, 242, 0.12);
}

/* Tip Icon */
.fbbotcmt-content5-tip-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.fbbotcmt-content5-tip:hover .fbbotcmt-content5-tip-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Tip Title */
.fbbotcmt-content5-tip h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin-bottom: 10px;
  line-height: 1.35;
  padding-right: 40px;
}

/* Tip Text */
.fbbotcmt-content5-tip p {
  font-size: 0.9rem;
  color: var(--fbbotcmt-text);
  line-height: 1.7;
  margin: 0;
}

.fbbotcmt-content5-tip a {
  color: var(--fbbotcmt-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--fbbotcmt-primary);
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s, opacity 0.2s, max-height 0.2s;
}

.fbbotcmt-content5-tip a:hover {
  color: var(--fbbotcmt-primary-dark);
  border-bottom-style: solid;
}

/* Tip Inline Image (for Tip 1) */
.fbbotcmt-content5-tip-img {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.fbbotcmt-content5-tip-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.fbbotcmt-content5-tip:hover .fbbotcmt-content5-tip-img img {
  transform: scale(1.03);
}

/* CTA Callout Banner */
.fbbotcmt-content5-cta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.06) 0%, rgba(66, 183, 42, 0.04) 100%);
  border-radius: 16px;
  border: 1px solid rgba(24, 119, 242, 0.12);
  border-left: 4px solid var(--fbbotcmt-primary);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
}

.fbbotcmt-content5-cta:hover {
  border-color: rgba(24, 119, 242, 0.25);
  box-shadow: 0 8px 32px rgba(24, 119, 242, 0.08);
  transform: translateX(4px);
}

.fbbotcmt-content5-cta-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--fbbotcmt-gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.25);
}

.fbbotcmt-content5-cta-body p {
  font-size: 0.95rem;
  color: var(--fbbotcmt-text);
  line-height: 1.7;
  margin: 0;
}

.fbbotcmt-content5-cta-body strong {
  color: var(--fbbotcmt-heading);
}

.fbbotcmt-content5-cta-body a {
  color: var(--fbbotcmt-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--fbbotcmt-primary);
  transition: color 0.2s, background-color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s, opacity 0.2s, max-height 0.2s;
}

.fbbotcmt-content5-cta-body a:hover {
  color: #fff;
  background: var(--fbbotcmt-primary);
  padding: 2px 6px;
  border-radius: 4px;
  border-bottom-color: transparent;
}

/* SEO-5 Dark Mode */
[data-bs-theme="dark"] .fbbotcmt-content5-hero {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-content5-hero-text p {
  color: rgba(255, 255, 255, 0.7);
}

[data-bs-theme="dark"] .fbbotcmt-content5-tip {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-content5-tip h4 {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-content5-tip p {
  color: rgba(255, 255, 255, 0.6);
}

[data-bs-theme="dark"] .fbbotcmt-content5-tip-num {
  color: rgba(24, 119, 242, 0.1);
}

[data-bs-theme="dark"] .fbbotcmt-content5-cta {
  background: rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.2);
}

[data-bs-theme="dark"] .fbbotcmt-content5-cta-body p {
  color: rgba(255, 255, 255, 0.7);
}

[data-bs-theme="dark"] .fbbotcmt-content5-cta-body strong {
  color: var(--fbbotcmt-accent);
}

[data-bs-theme="dark"] .fbbotcmt-content5-tip-img {
  border-color: rgba(255, 255, 255, 0.08);
}

/* SEO-5 Responsive */
@media (max-width: 991px) {
  .fbbotcmt-content5-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fbbotcmt-content5-hero-img {
    max-width: 420px;
    margin: 0 auto;
  }

  .fbbotcmt-content5-hero-text {
    padding: 0 8px 8px;
  }

  .fbbotcmt-content5-organic {
    padding: 32px 0 28px;
  }
}

@media (max-width: 767px) {
  .fbbotcmt-content5-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fbbotcmt-content5-tip {
    padding: 22px 20px 20px;
  }

  .fbbotcmt-content5-hero-text .fbbotcmt-section-title {
    font-size: 1.25rem;
  }

  .fbbotcmt-content5-cta {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .fbbotcmt-content5-organic {
    padding: 24px 0 20px;
  }
}

@media (max-width: 575px) {
  .fbbotcmt-content5-hero {
    padding: 16px;
  }

  .fbbotcmt-content5-tip {
    padding: 18px 16px 16px;
  }
}

/* ========== SEO-3 TIMELINE HOWTO ========== */
.fbbotcmt-content3-howto {
  padding: 48px 0 40px;
}

.fbbotcmt-content3-timeline {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fbbotcmt-content3-step {
  display: flex;
  gap: 0;
  position: relative;
}

/* Marker Column */
.fbbotcmt-content3-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 56px;
  flex-shrink: 0;
  position: relative;
}

.fbbotcmt-content3-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fbbotcmt-gradient-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.3);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.fbbotcmt-content3-step-num-done {
  background: linear-gradient(135deg, #42B72A, #36a420);
  box-shadow: 0 4px 16px rgba(66, 183, 42, 0.3);
}

.fbbotcmt-content3-step-line {
  width: 3px;
  flex: 1;
  background: linear-gradient(180deg, rgba(24, 119, 242, 0.2), rgba(24, 119, 242, 0.05));
  border-radius: 3px;
  margin-top: 4px;
}

.fbbotcmt-content3-step-last .fbbotcmt-content3-step-line {
  display: none;
}

/* Content Card */
.fbbotcmt-content3-step-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
  background: var(--fbbotcmt-card-bg);
  border-radius: 16px;
  padding: 16px;
  margin: 0 0 20px 16px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.fbbotcmt-content3-step-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.15);
}

/* Thumbnail */
.fbbotcmt-content3-step-thumb {
  width: 180px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.fbbotcmt-content3-step-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.fbbotcmt-content3-step-content:hover .fbbotcmt-content3-step-thumb img {
  transform: scale(1.04);
}

/* Step Info */
.fbbotcmt-content3-step-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fbbotcmt-content3-step-info h4 i {
  color: var(--fbbotcmt-primary);
  font-size: 0.95rem;
}

.fbbotcmt-content3-step-info p {
  font-size: 0.88rem;
  color: var(--fbbotcmt-text);
  line-height: 1.65;
  margin: 0;
}

/* SEO-3 Dark Mode */
[data-bs-theme="dark"] .fbbotcmt-content3-step-content {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-content3-step-info h4 {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-content3-step-info p {
  color: rgba(255, 255, 255, 0.6);
}

[data-bs-theme="dark"] .fbbotcmt-content3-step-line {
  background: linear-gradient(180deg, rgba(24, 119, 242, 0.3), rgba(24, 119, 242, 0.1));
}

/* SEO-3 Responsive */
@media (max-width: 767px) {
  .fbbotcmt-content3-step-thumb {
    width: 120px;
  }

  .fbbotcmt-content3-step-content {
    gap: 14px;
    padding: 14px;
  }

  .fbbotcmt-content3-howto {
    padding: 32px 0 24px;
  }

  .fbbotcmt-content3-step-marker {
    width: 48px;
  }

  .fbbotcmt-content3-step-num {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .fbbotcmt-content3-step-content {
    flex-direction: column;
    gap: 12px;
  }

  .fbbotcmt-content3-step-thumb {
    width: 100%;
    max-width: 280px;
  }

  .fbbotcmt-content3-step-marker {
    width: 40px;
  }

  .fbbotcmt-content3-step-num {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}

/* ========== SEO-8 NOTES / LUU Y REDESIGN ========== */
.fbbotcmt-content8-notes {
  padding: 48px 0 40px;
}

/* Header Card: Image + Text */
.fbbotcmt-content8-header {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--fbbotcmt-card-bg);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 8px 32px rgba(24, 119, 242, 0.06);
  margin-bottom: 28px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fbbotcmt-content8-header:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.1);
}

.fbbotcmt-content8-header-img {
  border-radius: 16px;
  overflow: hidden;
}

.fbbotcmt-content8-header-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.fbbotcmt-content8-header:hover .fbbotcmt-content8-header-img img {
  transform: scale(1.04);
}

.fbbotcmt-content8-header-text .fbbotcmt-section-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.fbbotcmt-content8-header-text p {
  font-size: 0.95rem;
  color: var(--fbbotcmt-text);
  line-height: 1.7;
  margin: 0;
}

/* Tips List */
.fbbotcmt-content8-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fbbotcmt-content8-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--fbbotcmt-card-bg);
  border-radius: 16px;
  border: 1px solid var(--fbbotcmt-card-border);
  border-left: 4px solid var(--item-accent, var(--fbbotcmt-primary));
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease, max-height 0.3s ease;
}

.fbbotcmt-content8-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.15);
  border-left-color: var(--item-accent, var(--fbbotcmt-primary));
}

.fbbotcmt-content8-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
}

.fbbotcmt-content8-item:hover .fbbotcmt-content8-item-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fbbotcmt-content8-item-body h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin-bottom: 6px;
  line-height: 1.35;
}

.fbbotcmt-content8-item-body p {
  font-size: 0.88rem;
  color: var(--fbbotcmt-text);
  line-height: 1.65;
  margin: 0;
}

.fbbotcmt-content8-item-body a {
  color: var(--fbbotcmt-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--fbbotcmt-primary);
}

.fbbotcmt-content8-item-body a:hover {
  border-bottom-style: solid;
}

/* SEO-8 Dark Mode */
[data-bs-theme="dark"] .fbbotcmt-content8-header {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-content8-header-text p {
  color: rgba(255, 255, 255, 0.7);
}

[data-bs-theme="dark"] .fbbotcmt-content8-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  border-left-color: var(--item-accent, var(--fbbotcmt-primary));
}

[data-bs-theme="dark"] .fbbotcmt-content8-item-body h4 {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-content8-item-body p {
  color: rgba(255, 255, 255, 0.6);
}

/* SEO-8 Responsive */
@media (max-width: 991px) {
  .fbbotcmt-content8-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fbbotcmt-content8-header-img {
    max-width: 380px;
    margin: 0 auto;
  }

  .fbbotcmt-content8-notes {
    padding: 32px 0 28px;
  }
}

@media (max-width: 575px) {
  .fbbotcmt-content8-item {
    padding: 16px;
    gap: 12px;
    flex-direction: column;
  }

  .fbbotcmt-content8-header {
    padding: 16px;
  }

  .fbbotcmt-content8-header-text .fbbotcmt-section-title {
    font-size: 1.2rem;
  }
}

/* ========== SEO-6B COMPARISON CARDS ========== */
.fbbotcmt-compare-section {
  padding: 48px 0 40px;
}

.fbbotcmt-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

/* Base Card */
.fbbotcmt-compare-card {
  position: relative;
  background: var(--fbbotcmt-card-bg);
  border-radius: 20px;
  padding: 0;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.fbbotcmt-compare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* Recommended Card — Special */
.fbbotcmt-compare-card--recommended {
  border-color: rgba(24, 119, 242, 0.3);
  box-shadow: 0 4px 24px rgba(24, 119, 242, 0.08), 0 0 0 1px rgba(24, 119, 242, 0.05);
}

.fbbotcmt-compare-card--recommended:hover {
  border-color: rgba(24, 119, 242, 0.5);
  box-shadow: 0 20px 56px rgba(24, 119, 242, 0.15);
}

/* Warning Card */
.fbbotcmt-compare-card--warning {
  border-color: rgba(255, 152, 0, 0.2);
}

.fbbotcmt-compare-card--warning:hover {
  border-color: rgba(255, 152, 0, 0.4);
}

/* Neutral Card */
.fbbotcmt-compare-card--neutral {
  border-color: rgba(100, 120, 150, 0.15);
}

.fbbotcmt-compare-card--neutral:hover {
  border-color: rgba(100, 120, 150, 0.3);
}

/* Badge (Recommended) */
.fbbotcmt-compare-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #1877F2, #42B72A);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.3);
  z-index: 2;
  text-transform: uppercase;
}

/* Card Header */
.fbbotcmt-compare-card__header {
  padding: 28px 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--fbbotcmt-card-border);
}

.fbbotcmt-compare-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
}

.fbbotcmt-compare-card--recommended .fbbotcmt-compare-card__icon {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.12), rgba(66, 183, 42, 0.08));
  color: #1877F2;
}

.fbbotcmt-compare-card--warning .fbbotcmt-compare-card__icon {
  background: rgba(255, 152, 0, 0.1);
  color: #FF9800;
}

.fbbotcmt-compare-card--neutral .fbbotcmt-compare-card__icon {
  background: rgba(24, 119, 242, 0.08);
  color: #4267B2;
}

.fbbotcmt-compare-card:hover .fbbotcmt-compare-card__icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.fbbotcmt-compare-card__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin: 0 0 4px;
  line-height: 1.3;
}

.fbbotcmt-compare-card__tagline {
  font-size: 0.82rem;
  color: var(--fbbotcmt-text);
  opacity: 0.7;
  margin: 0;
  line-height: 1.4;
}

/* Card List */
.fbbotcmt-compare-card__list {
  list-style: none;
  padding: 16px 20px;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fbbotcmt-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--fbbotcmt-text);
  transition: background 0.2s;
}

.fbbotcmt-compare-item:last-child {
  border-bottom: none;
}

.fbbotcmt-compare-item:hover {
  background: rgba(24, 119, 242, 0.02);
  border-radius: 8px;
}

.fbbotcmt-compare-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: 50%;
  margin-top: 1px;
}

.fbbotcmt-compare-item--good .fbbotcmt-compare-item__icon {
  background: rgba(66, 183, 42, 0.1);
  color: #42B72A;
}

.fbbotcmt-compare-item--bad .fbbotcmt-compare-item__icon {
  background: rgba(243, 62, 88, 0.1);
  color: #F33E58;
}

.fbbotcmt-compare-item--warn .fbbotcmt-compare-item__icon {
  background: rgba(255, 152, 0, 0.1);
  color: #FF9800;
}

.fbbotcmt-compare-item strong {
  color: var(--fbbotcmt-heading);
  font-weight: 700;
}

/* Verdict Footer */
.fbbotcmt-compare-card__verdict {
  padding: 14px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fbbotcmt-compare-card__verdict--best {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.08), rgba(66, 183, 42, 0.06));
  color: #1877F2;
  border-top: 2px solid rgba(24, 119, 242, 0.2);
}

.fbbotcmt-compare-card__verdict--risky {
  background: rgba(255, 152, 0, 0.06);
  color: #E65100;
  border-top: 2px solid rgba(255, 152, 0, 0.2);
}

.fbbotcmt-compare-card__verdict--expensive {
  background: rgba(100, 120, 150, 0.06);
  color: #546E7A;
  border-top: 2px solid rgba(100, 120, 150, 0.15);
}

/* Image Block Below Cards */
.fbbotcmt-compare-img {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--fbbotcmt-card-border);
  background: var(--fbbotcmt-card-bg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease, opacity 0.4s ease, max-height 0.4s ease;
}

.fbbotcmt-compare-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.08);
}

.fbbotcmt-compare-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.fbbotcmt-compare-img:hover img {
  transform: scale(1.03);
}

.fbbotcmt-compare-img__caption {
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--fbbotcmt-text);
  line-height: 1.55;
  border-top: 1px solid var(--fbbotcmt-card-border);
  background: rgba(24, 119, 242, 0.03);
}

.fbbotcmt-compare-img__caption i {
  color: var(--fbbotcmt-primary);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Dark Mode */
[data-bs-theme="dark"] .fbbotcmt-compare-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-compare-card--recommended {
  border-color: rgba(24, 119, 242, 0.3);
  background: rgba(24, 119, 242, 0.04);
}

[data-bs-theme="dark"] .fbbotcmt-compare-card--warning {
  border-color: rgba(255, 152, 0, 0.2);
}

[data-bs-theme="dark"] .fbbotcmt-compare-card__header {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-bs-theme="dark"] .fbbotcmt-compare-card__name {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-compare-card__tagline {
  color: rgba(255, 255, 255, 0.5);
}

[data-bs-theme="dark"] .fbbotcmt-compare-item {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

[data-bs-theme="dark"] .fbbotcmt-compare-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

[data-bs-theme="dark"] .fbbotcmt-compare-item strong {
  color: rgba(255, 255, 255, 0.9);
}

[data-bs-theme="dark"] .fbbotcmt-compare-card__verdict--best {
  background: rgba(24, 119, 242, 0.1);
  border-top-color: rgba(24, 119, 242, 0.3);
}

[data-bs-theme="dark"] .fbbotcmt-compare-card__verdict--risky {
  background: rgba(255, 152, 0, 0.08);
  color: #FFB74D;
  border-top-color: rgba(255, 152, 0, 0.25);
}

[data-bs-theme="dark"] .fbbotcmt-compare-card__verdict--expensive {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-compare-img {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-compare-img__caption {
  background: rgba(24, 119, 242, 0.06);
  color: rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 0.06);
}

/* Responsive */
@media (max-width: 991px) {
  .fbbotcmt-compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .fbbotcmt-compare-section {
    padding: 32px 0 28px;
  }
}

@media (max-width: 575px) {
  .fbbotcmt-compare-card__header {
    padding: 22px 18px 16px;
  }

  .fbbotcmt-compare-card__list {
    padding: 12px 14px;
  }

  .fbbotcmt-compare-item {
    padding: 8px 2px;
    font-size: 0.82rem;
    gap: 8px;
  }

  .fbbotcmt-compare-card__badge {
    top: 12px;
    right: 12px;
    font-size: 0.68rem;
    padding: 3px 10px;
  }

  .fbbotcmt-compare-img__caption {
    padding: 12px 14px;
    font-size: 0.78rem;
  }
}

/* ========== SEO-9 PRICING CARDS ========== */
.fbbotcmt-pricing-section {
  padding: 48px 0 40px;
}

.fbbotcmt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.fbbotcmt-price-card {
  position: relative;
  background: var(--fbbotcmt-card-bg);
  border-radius: 20px;
  border: 1px solid var(--fbbotcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.fbbotcmt-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.fbbotcmt-price-card--featured {
  border-color: rgba(24, 119, 242, 0.3);
  box-shadow: 0 4px 24px rgba(24, 119, 242, 0.1), 0 0 0 1px rgba(24, 119, 242, 0.05);
}

.fbbotcmt-price-card--featured:hover {
  box-shadow: 0 20px 56px rgba(24, 119, 242, 0.15);
}

.fbbotcmt-price-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #1877F2, #42B72A);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.3);
  z-index: 2;
  text-transform: uppercase;
}

.fbbotcmt-price-card__header {
  padding: 24px 20px 18px;
  text-align: center;
  color: #fff;
  border-radius: 0;
}

.fbbotcmt-price-card__header--basic {
  background: linear-gradient(135deg, #607D8B, #78909C);
}

.fbbotcmt-price-card__header--standard {
  background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.fbbotcmt-price-card__header--premium {
  background: linear-gradient(135deg, #7B1FA2, #AB47BC);
}

.fbbotcmt-price-card__header--vip {
  background: linear-gradient(135deg, #E65100, #FF6D00, #FFB300);
}

.fbbotcmt-price-card__tier {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-bottom: 4px;
}

.fbbotcmt-price-card__tier i {
  margin-right: 4px;
}

.fbbotcmt-price-card__name {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
}

.fbbotcmt-price-card__price {
  font-size: 0.85rem;
  opacity: 0.9;
}

.fbbotcmt-price-card__amount {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-right: 2px;
}

.fbbotcmt-price-card__features {
  list-style: none;
  padding: 16px 18px;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fbbotcmt-price-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
  font-size: 0.82rem;
  color: var(--fbbotcmt-text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  line-height: 1.4;
}

.fbbotcmt-price-card__features li:last-child {
  border-bottom: none;
}

.fbbotcmt-price-card__features li i {
  width: 18px;
  text-align: center;
  color: var(--fbbotcmt-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.fbbotcmt-price-card__footer {
  padding: 12px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fbbotcmt-text);
  opacity: 0.7;
  text-align: center;
  border-top: 1px solid var(--fbbotcmt-card-border);
  background: rgba(0, 0, 0, 0.02);
}

.fbbotcmt-pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(24, 119, 242, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(24, 119, 242, 0.1);
  font-size: 0.82rem;
  color: var(--fbbotcmt-text);
  line-height: 1.55;
}

.fbbotcmt-pricing-note i {
  color: var(--fbbotcmt-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.fbbotcmt-pricing-note a {
  color: var(--fbbotcmt-primary);
  text-decoration: underline;
}

/* Dark Mode Pricing */
[data-bs-theme="dark"] .fbbotcmt-price-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-price-card--featured {
  border-color: rgba(24, 119, 242, 0.3);
  background: rgba(24, 119, 242, 0.04);
}

[data-bs-theme="dark"] .fbbotcmt-price-card__features li {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

[data-bs-theme="dark"] .fbbotcmt-price-card__footer {
  color: rgba(255, 255, 255, 0.5);
  border-top-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

[data-bs-theme="dark"] .fbbotcmt-pricing-note {
  background: rgba(24, 119, 242, 0.06);
  border-color: rgba(24, 119, 242, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Pricing */
@media (max-width: 991px) {
  .fbbotcmt-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .fbbotcmt-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .fbbotcmt-pricing-section {
    padding: 32px 0 28px;
  }
}

/* ========== SEO-10 CALCULATOR ========== */
.fbbotcmt-calc-section {
  padding: 48px 0 40px;
}

.fbbotcmt-calc-formula {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.06), rgba(66, 183, 42, 0.04));
  border: 1px solid rgba(24, 119, 242, 0.15);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 20px 0;
}

.fbbotcmt-calc-formula__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fbbotcmt-primary);
  margin-bottom: 8px;
}

.fbbotcmt-calc-formula__eq {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fbbotcmt-heading);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.fbbotcmt-calc-formula__var {
  background: rgba(24, 119, 242, 0.08);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.fbbotcmt-calc-formula__op {
  font-size: 1.2rem;
  color: var(--fbbotcmt-primary);
  font-weight: 800;
}

.fbbotcmt-calc-examples {
  background: var(--fbbotcmt-card-bg);
  border: 1px solid var(--fbbotcmt-card-border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.fbbotcmt-calc-examples__title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--fbbotcmt-heading);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fbbotcmt-calc-examples__title i {
  color: var(--fbbotcmt-primary);
}

.fbbotcmt-calc-examples__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fbbotcmt-calc-example {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
  border: 1px solid transparent;
}

.fbbotcmt-calc-example:hover {
  background: rgba(24, 119, 242, 0.03);
  border-color: rgba(24, 119, 242, 0.1);
  transform: translateY(-3px);
}

.fbbotcmt-calc-example__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.1rem;
}

.fbbotcmt-calc-example__label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin-bottom: 6px;
}

.fbbotcmt-calc-example__detail {
  font-size: 0.75rem;
  color: var(--fbbotcmt-text);
  opacity: 0.7;
  margin-bottom: 8px;
  line-height: 1.4;
}

.fbbotcmt-calc-example__result {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fbbotcmt-primary);
  margin-bottom: 2px;
}

.fbbotcmt-calc-example__note {
  font-size: 0.72rem;
  color: var(--fbbotcmt-text);
  opacity: 0.5;
}

/* Dark Mode Calculator */
[data-bs-theme="dark"] .fbbotcmt-calc-formula {
  background: rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.2);
}

[data-bs-theme="dark"] .fbbotcmt-calc-formula__var {
  background: rgba(24, 119, 242, 0.12);
}

[data-bs-theme="dark"] .fbbotcmt-calc-formula__eq {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-calc-examples {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-calc-examples__title {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-calc-example {
  background: rgba(255, 255, 255, 0.03);
}

[data-bs-theme="dark"] .fbbotcmt-calc-example:hover {
  background: rgba(24, 119, 242, 0.06);
  border-color: rgba(24, 119, 242, 0.15);
}

[data-bs-theme="dark"] .fbbotcmt-calc-example__label {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-calc-example__detail {
  color: rgba(255, 255, 255, 0.5);
}

[data-bs-theme="dark"] .fbbotcmt-calc-example__note {
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive Calculator */
@media (max-width: 991px) {
  .fbbotcmt-calc-examples__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fbbotcmt-calc-section {
    padding: 32px 0 28px;
  }
}

@media (max-width: 575px) {
  .fbbotcmt-calc-examples {
    padding: 20px 16px;
  }

  .fbbotcmt-calc-formula {
    padding: 16px 18px;
  }

  .fbbotcmt-calc-formula__eq {
    font-size: 0.88rem;
  }

  .fbbotcmt-calc-formula__var {
    font-size: 0.78rem;
    padding: 3px 8px;
  }
}

/* ========== SEO-11 STRATEGY CARDS ========== */
.fbbotcmt-strategy-section {
  padding: 48px 0 40px;
}

.fbbotcmt-strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.fbbotcmt-strategy-card {
  position: relative;
  background: var(--fbbotcmt-card-bg);
  border: 1px solid var(--fbbotcmt-card-border);
  border-radius: 20px;
  padding: 28px 22px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.fbbotcmt-strategy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.fbbotcmt-strategy-card__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--fbbotcmt-primary);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.fbbotcmt-strategy-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
}

.fbbotcmt-strategy-card:hover .fbbotcmt-strategy-card__icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.fbbotcmt-strategy-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin: 0 0 10px;
  line-height: 1.3;
}

.fbbotcmt-strategy-card p {
  font-size: 0.82rem;
  color: var(--fbbotcmt-text);
  line-height: 1.55;
  margin: 0;
}

.fbbotcmt-strategy-card a {
  color: var(--fbbotcmt-primary);
  text-decoration: underline;
}

/* Dark Mode Strategy */
[data-bs-theme="dark"] .fbbotcmt-strategy-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-strategy-card h4 {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-strategy-card p {
  color: rgba(255, 255, 255, 0.65);
}

[data-bs-theme="dark"] .fbbotcmt-strategy-card__num {
  opacity: 0.06;
}

/* Responsive Strategy */
@media (max-width: 991px) {
  .fbbotcmt-strategy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .fbbotcmt-strategy-section {
    padding: 32px 0 28px;
  }
}

@media (max-width: 575px) {
  .fbbotcmt-strategy-grid {
    grid-template-columns: 1fr;
  }

  .fbbotcmt-strategy-card {
    padding: 22px 18px 18px;
  }
}

/* ========== GOLDEN HOURS ========== */
.fbbotcmt-golden-hours {
  background: var(--fbbotcmt-card-bg);
  border: 1px solid var(--fbbotcmt-card-border);
  border-radius: 20px;
  padding: 28px 28px 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.fbbotcmt-golden-hours__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fbbotcmt-heading);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fbbotcmt-golden-hours__title i {
  color: #FFB300;
}

.fbbotcmt-golden-hours__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.fbbotcmt-golden-hours__slot {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  border: 1px solid transparent;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s, opacity 0.3s, max-height 0.3s;
}

.fbbotcmt-golden-hours__slot:hover {
  background: rgba(255, 183, 0, 0.04);
  border-color: rgba(255, 183, 0, 0.15);
  transform: translateY(-3px);
}

.fbbotcmt-golden-hours__slot--peak {
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.08), rgba(255, 109, 0, 0.05));
  border-color: rgba(255, 183, 0, 0.2);
  box-shadow: 0 4px 16px rgba(255, 183, 0, 0.08);
}

.fbbotcmt-golden-hours__slot--peak:hover {
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.12), rgba(255, 109, 0, 0.08));
  box-shadow: 0 8px 24px rgba(255, 183, 0, 0.12);
}

.fbbotcmt-golden-hours__time {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--fbbotcmt-heading);
  margin-bottom: 4px;
}

.fbbotcmt-golden-hours__slot--peak .fbbotcmt-golden-hours__time {
  color: #E65100;
}

.fbbotcmt-golden-hours__desc {
  font-size: 0.78rem;
  color: var(--fbbotcmt-text);
  opacity: 0.7;
  line-height: 1.4;
}

.fbbotcmt-golden-hours__tip {
  font-size: 0.82rem;
  color: var(--fbbotcmt-text);
  line-height: 1.55;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--fbbotcmt-card-border);
}

.fbbotcmt-golden-hours__tip i {
  color: #FFB300;
  margin-right: 4px;
}

/* Dark Mode Golden Hours */
[data-bs-theme="dark"] .fbbotcmt-golden-hours {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbbotcmt-golden-hours__title {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-golden-hours__slot {
  background: rgba(255, 255, 255, 0.03);
}

[data-bs-theme="dark"] .fbbotcmt-golden-hours__slot:hover {
  background: rgba(255, 183, 0, 0.06);
  border-color: rgba(255, 183, 0, 0.15);
}

[data-bs-theme="dark"] .fbbotcmt-golden-hours__slot--peak {
  background: rgba(255, 183, 0, 0.08);
  border-color: rgba(255, 183, 0, 0.2);
}

[data-bs-theme="dark"] .fbbotcmt-golden-hours__time {
  color: #fff;
}

[data-bs-theme="dark"] .fbbotcmt-golden-hours__slot--peak .fbbotcmt-golden-hours__time {
  color: #FFB74D;
}

[data-bs-theme="dark"] .fbbotcmt-golden-hours__desc {
  color: rgba(255, 255, 255, 0.5);
}

[data-bs-theme="dark"] .fbbotcmt-golden-hours__tip {
  color: rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 0.06);
}

/* Responsive Golden Hours */
@media (max-width: 991px) {
  .fbbotcmt-golden-hours__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 575px) {
  .fbbotcmt-golden-hours {
    padding: 22px 18px 18px;
  }

  .fbbotcmt-golden-hours__grid {
    grid-template-columns: 1fr;
  }

  .fbbotcmt-golden-hours__time {
    font-size: 1rem;
  }
}

/* =====================================================================
   Bot Bình Luận Facebook V2 — service-specific layer
   The base above is a prefix-renamed copy of the tang-like V2 reference.
   ===================================================================== */

:root {
  --fbbotcmt-primary: #1877f2;
  --fbbotcmt-primary-dark: #0f5dca;
  --fbbotcmt-secondary: #42b72a;
  --fbbotcmt-ink: #13213c;
  --fbbotcmt-muted: #5e6b82;
  --fbbotcmt-surface: #ffffff;
  --fbbotcmt-soft: #f4f8ff;
  --fbbotcmt-line: #dce6f5;
  --fbbotcmt-shadow: 0 18px 52px rgba(22, 49, 92, 0.12);
}

.fbbotcmt-hero-inner {
  position: relative;
  z-index: 2;
}

.fbbotcmt-hero-row {
  row-gap: 28px;
}

.fbbotcmt-hero-title {
  max-width: 760px;
  line-height: 1.08;
}

.fbbotcmt-hero-desc {
  max-width: 760px;
}

.fbbotcmt-kw-rotator {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  max-width: 780px;
  overflow: visible;
  margin: 18px 0;
}

.fbbotcmt-kw {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  color: #e9f3ff;
  background: rgba(24, 119, 242, 0.15);
  border: 1px solid rgba(116, 180, 255, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
}

.fbbotcmt-glass-form {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.fbbotcmt-stepper {
  overflow-x: auto;
  scrollbar-width: thin;
}

.fbbotcmt-step {
  min-width: 72px;
}

.fbbotcmt-form-group {
  min-width: 0;
}

.fbbotcmt-form-label {
  display: flex;
  align-items: center;
  gap: 7px;
}

.fbbotcmt-input,
.fbbotcmt-textarea {
  width: 100%;
}

.fbbotcmt-textarea {
  resize: vertical;
}

.fbbotcmt-help {
  display: block;
  margin-top: 7px;
  color: rgba(234, 243, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}

.fbbotcmt-server-desc {
  display: none;
  margin: -3px 0 8px;
  padding: 10px 12px;
  color: #eaf3ff;
  background: rgba(24, 119, 242, 0.12);
  border: 1px solid rgba(116, 180, 255, 0.2);
  border-radius: 10px;
  font-size: 0.78rem;
  line-height: 1.55;
}

.fbbotcmt-qty-hint {
  display: block;
  min-height: 20px;
  margin-bottom: 10px;
  color: rgba(234, 243, 255, 0.7);
  font-size: 0.76rem;
}

.fbbotcmt-config-panel,
.fbbotcmt-skip-panel {
  margin: 14px 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
}

.fbbotcmt-config-title,
.fbbotcmt-skip-panel legend {
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: 0 0 12px;
  padding: 0;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
}

.fbbotcmt-skip-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fbbotcmt-skip-panel legend,
.fbbotcmt-skip-list {
  grid-column: 1 / -1;
}

.fbbotcmt-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.4;
}

.fbbotcmt-check input {
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--fbbotcmt-secondary);
}

.fbbotcmt-skip-list {
  display: none;
  margin-top: 2px;
}

.fbbotcmt-price-box {
  margin: 14px 0;
  padding: 14px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.18), rgba(66, 183, 42, 0.1));
  border: 1px solid rgba(116, 180, 255, 0.24);
  border-radius: 13px;
}

.fbbotcmt-price-box .fbbotcmt-price-row + .fbbotcmt-price-row {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.fbbotcmt-proof-panel {
  align-items: stretch;
}

.fbbotcmt-mascot-wrap {
  min-height: 156px;
}

.fbbotcmt-mascot-img,
.fbbotcmt-mascot-fallback {
  animation: fbbotcmtMascotFloat 4.5s ease-in-out infinite;
}

.fbbotcmt-mascot-fallback {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  color: #ffffff;
  background: linear-gradient(145deg, #1877f2, #0c3f8b);
  border: 3px solid rgba(255, 255, 255, 0.68);
  border-radius: 38% 38% 44% 44%;
  box-shadow: 0 14px 32px rgba(24, 119, 242, 0.36);
}

.fbbotcmt-mascot-fallback[hidden] {
  display: none;
}

.fbbotcmt-mascot-fallback i {
  font-size: 2.2rem;
}

.fbbotcmt-mascot-fallback span {
  margin-top: 7px;
  font-size: 0.7rem;
  font-weight: 800;
}

.fbbotcmt-mini-1 {
  animation: fbbotcmtMiniOne 3.5s ease-in-out infinite;
}

.fbbotcmt-mini-2 {
  animation: fbbotcmtMiniTwo 4s ease-in-out 0.6s infinite;
}

.fbbotcmt-proof-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fbbotcmt-pstat {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  min-width: 0;
  text-align: left;
}

.fbbotcmt-pstat i {
  grid-row: 1 / 3;
  color: #7db7ff;
  font-size: 1.05rem;
}

.fbbotcmt-pstat strong,
.fbbotcmt-pstat span {
  min-width: 0;
}

.fbbotcmt-pstat strong {
  color: #ffffff;
  font-size: 0.76rem;
  line-height: 1.3;
}

.fbbotcmt-pstat span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.66rem;
}

.fbbotcmt-livefeed-header small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
}

.fbbotcmt-livefeed-list {
  max-height: 190px;
  overflow: hidden;
}

.fbbotcmt-livefeed-item {
  align-items: center;
}

.fbbotcmt-livefeed-copy {
  min-width: 0;
}

.fbbotcmt-livefeed-copy strong,
.fbbotcmt-livefeed-copy span {
  display: block;
}

.fbbotcmt-livefeed-copy strong {
  color: #ffffff;
  font-size: 0.72rem;
}

.fbbotcmt-livefeed-copy span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.66rem;
}

.fbbotcmt-livefeed-time {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.62rem;
  white-space: nowrap;
}

.fbbotcmt-section {
  position: relative;
  padding: 82px 0;
  color: var(--fbbotcmt-ink);
}

.fbbotcmt-section:nth-of-type(odd) {
  background: var(--fbbotcmt-soft);
}

.fbbotcmt-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--fbbotcmt-primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fbbotcmt-section-title {
  margin: 0 0 18px;
  color: var(--fbbotcmt-ink);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.fbbotcmt-heading-center {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
}

.fbbotcmt-heading-center p,
.fbbotcmt-copy p {
  color: var(--fbbotcmt-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.fbbotcmt-split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 42px;
  align-items: center;
}

.fbbotcmt-split.reverse .fbbotcmt-media-card {
  order: -1;
}

.fbbotcmt-media-card {
  margin: 0;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--fbbotcmt-line);
  border-radius: 24px;
  box-shadow: var(--fbbotcmt-shadow);
}

.fbbotcmt-media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 17px;
  cursor: zoom-in;
}

.fbbotcmt-media-card figcaption {
  padding: 12px 8px 5px;
  color: var(--fbbotcmt-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.fbbotcmt-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.fbbotcmt-compare > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 9px;
  align-items: center;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--fbbotcmt-line);
  border-radius: 14px;
}

.fbbotcmt-compare i {
  grid-row: 1 / 3;
  color: var(--fbbotcmt-primary);
  font-size: 1.1rem;
}

.fbbotcmt-compare strong,
.fbbotcmt-compare span {
  display: block;
}

.fbbotcmt-compare strong {
  font-size: 0.86rem;
}

.fbbotcmt-compare span {
  color: var(--fbbotcmt-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.fbbotcmt-control-section {
  overflow: hidden;
  background: linear-gradient(145deg, #07172f 0%, #0b2955 58%, #0a3d36 100%) !important;
}

.fbbotcmt-control-section .fbbotcmt-section-title,
.fbbotcmt-control-section .fbbotcmt-heading-center p {
  color: #ffffff;
}

.fbbotcmt-control-section .fbbotcmt-heading-center p {
  opacity: 0.76;
}

.fbbotcmt-control-section .fbbotcmt-kicker {
  color: #78b7ff;
}

.fbbotcmt-control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fbbotcmt-control-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
}

.fbbotcmt-control-card > span {
  position: absolute;
  right: 15px;
  top: 8px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 4.2rem;
  font-weight: 900;
}

.fbbotcmt-control-card i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 34px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--fbbotcmt-primary), var(--fbbotcmt-secondary));
  border-radius: 15px;
}

.fbbotcmt-control-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.12rem;
}

.fbbotcmt-control-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.65;
}

.fbbotcmt-checklist {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fbbotcmt-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--fbbotcmt-muted);
  line-height: 1.55;
}

.fbbotcmt-checklist i {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: #ffffff;
  background: var(--fbbotcmt-secondary);
  border-radius: 50%;
  font-size: 0.64rem;
}

.fbbotcmt-dual-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.fbbotcmt-feature-panel {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--fbbotcmt-line);
  border-radius: 24px;
  box-shadow: var(--fbbotcmt-shadow);
}

.fbbotcmt-feature-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  cursor: zoom-in;
}

.fbbotcmt-feature-panel > div {
  padding: 24px;
}

.fbbotcmt-feature-panel h3 {
  margin: 0 0 12px;
  color: var(--fbbotcmt-ink);
  font-size: 1.25rem;
}

.fbbotcmt-feature-panel p {
  color: var(--fbbotcmt-muted);
  line-height: 1.7;
}

.fbbotcmt-decision-grid,
.fbbotcmt-check-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fbbotcmt-decision-card,
.fbbotcmt-check-card,
.fbbotcmt-monitor-card {
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--fbbotcmt-line);
  border-radius: 22px;
  box-shadow: var(--fbbotcmt-shadow);
}

.fbbotcmt-decision-card.yes {
  border-top: 5px solid var(--fbbotcmt-secondary);
}

.fbbotcmt-decision-card.no {
  border-top: 5px solid #f39c45;
}

.fbbotcmt-decision-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--fbbotcmt-primary);
  border-radius: 16px;
  font-size: 1.2rem;
}

.fbbotcmt-decision-card h3 {
  color: var(--fbbotcmt-ink);
}

.fbbotcmt-decision-card ul {
  display: grid;
  gap: 11px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--fbbotcmt-muted);
  line-height: 1.6;
}

.fbbotcmt-decision-note {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 15px 20px;
  color: var(--fbbotcmt-ink);
  background: linear-gradient(90deg, rgba(24, 119, 242, 0.1), rgba(66, 183, 42, 0.1));
  border: 1px solid rgba(24, 119, 242, 0.17);
  border-radius: 14px;
  text-align: center;
}

.fbbotcmt-timeline {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
}

.fbbotcmt-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 31px;
  width: 2px;
  background: linear-gradient(var(--fbbotcmt-primary), var(--fbbotcmt-secondary));
}

.fbbotcmt-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.fbbotcmt-timeline-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--fbbotcmt-primary), var(--fbbotcmt-primary-dark));
  border: 5px solid #eef5ff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
}

.fbbotcmt-timeline-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--fbbotcmt-line);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(22, 49, 92, 0.09);
}

.fbbotcmt-timeline-copy > span {
  color: var(--fbbotcmt-primary);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fbbotcmt-timeline-copy h3 {
  margin: 5px 0 9px;
  color: var(--fbbotcmt-ink);
  font-size: 1.18rem;
}

.fbbotcmt-timeline-copy p {
  margin: 0;
  color: var(--fbbotcmt-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.fbbotcmt-timeline-content img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  cursor: zoom-in;
}

.fbbotcmt-check-section {
  background: linear-gradient(145deg, #eff6ff, #f1fbf0) !important;
}

.fbbotcmt-check-card,
.fbbotcmt-monitor-card {
  min-height: 100%;
}

.fbbotcmt-monitor-card {
  background: linear-gradient(145deg, #0a2248, #0c3c36);
  border-color: rgba(255, 255, 255, 0.1);
}

.fbbotcmt-monitor-card .fbbotcmt-section-title,
.fbbotcmt-monitor-card p {
  color: #ffffff;
}

.fbbotcmt-monitor-card p {
  opacity: 0.73;
  line-height: 1.75;
}

.fbbotcmt-monitor-card .fbbotcmt-kicker {
  color: #80baff;
}

.fbbotcmt-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 15px;
  color: #ffffff;
  background: var(--fbbotcmt-primary);
  border-radius: 10px;
  font-weight: 800;
}

.fbbotcmt-inline-link:hover {
  color: #ffffff;
  background: var(--fbbotcmt-primary-dark);
}

.fbbotcmt-testimonials {
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #06162f 0%, #0a2b59 48%, #0a443b 100%) !important;
}

.fbbotcmt-testimonials .fbbotcmt-section-title,
.fbbotcmt-testimonials .fbbotcmt-heading-center p {
  color: #ffffff;
}

.fbbotcmt-testimonials .fbbotcmt-heading-center p {
  opacity: 0.72;
}

.fbbotcmt-testimonials .fbbotcmt-kicker {
  color: #82bdff;
}

.fbbotcmt-testi-window {
  overflow: hidden;
  margin: 14px 0;
}

.fbbotcmt-testi-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: fbbotcmtMarquee 70s linear infinite;
}

.fbbotcmt-testi-track.reverse {
  animation: fbbotcmtMarqueeReverse 85s linear infinite;
}

.fbbotcmt-testi-card {
  width: min(390px, 84vw);
  min-height: 245px;
  padding: 22px;
  color: var(--fbbotcmt-ink);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.fbbotcmt-testi-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.fbbotcmt-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--fbbotcmt-primary), var(--fbbotcmt-secondary));
  border-radius: 50%;
  font-weight: 900;
}

.fbbotcmt-testi-head strong,
.fbbotcmt-testi-head span {
  display: block;
}

.fbbotcmt-testi-head strong {
  color: var(--fbbotcmt-ink);
}

.fbbotcmt-testi-head span {
  color: var(--fbbotcmt-muted);
  font-size: 0.74rem;
}

.fbbotcmt-testi-card p {
  margin: 18px 0 0;
  color: #46556e;
  font-size: 0.88rem;
  line-height: 1.7;
}

.fbbotcmt-faq {
  max-width: 940px;
  margin: 0 auto;
}

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

.fbbotcmt-related-card {
  display: block;
  padding: 25px;
  color: var(--fbbotcmt-ink);
  background: #ffffff;
  border: 1px solid var(--fbbotcmt-line);
  border-radius: 19px;
  box-shadow: 0 12px 32px rgba(22, 49, 92, 0.08);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fbbotcmt-related-card:hover {
  color: var(--fbbotcmt-ink);
  border-color: rgba(24, 119, 242, 0.36);
  box-shadow: 0 18px 42px rgba(22, 49, 92, 0.15);
  transform: translateY(-4px);
}

.fbbotcmt-related-card > i {
  color: var(--fbbotcmt-primary);
  font-size: 1.55rem;
}

.fbbotcmt-related-card h3 {
  margin: 16px 0 9px;
  color: var(--fbbotcmt-ink);
  font-size: 1.05rem;
}

.fbbotcmt-related-card p {
  margin: 0;
  color: var(--fbbotcmt-muted);
  line-height: 1.6;
}

.fbbotcmt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(2, 9, 21, 0.88);
}

.fbbotcmt-lightbox img {
  display: block;
  max-width: min(1180px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.fbbotcmt-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.fbbotcmt-readmore-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 180px;
  padding: 68px 20px 24px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--fbbotcmt-soft) 62%);
}

.fbbotcmt-readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  color: #ffffff;
  background: var(--fbbotcmt-primary);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(24, 119, 242, 0.3);
  cursor: pointer;
  font-weight: 800;
}

[data-bs-theme="dark"] .fbbotcmt-section {
  color: #e9f1ff;
  background: #0e1728;
}

[data-bs-theme="dark"] .fbbotcmt-section:nth-of-type(odd) {
  background: #111d31;
}

[data-bs-theme="dark"] .fbbotcmt-section-title,
[data-bs-theme="dark"] .fbbotcmt-feature-panel h3,
[data-bs-theme="dark"] .fbbotcmt-decision-card h3,
[data-bs-theme="dark"] .fbbotcmt-related-card h3 {
  color: #f3f7ff;
}

[data-bs-theme="dark"] .fbbotcmt-heading-center p,
[data-bs-theme="dark"] .fbbotcmt-copy p,
[data-bs-theme="dark"] .fbbotcmt-checklist li,
[data-bs-theme="dark"] .fbbotcmt-feature-panel p,
[data-bs-theme="dark"] .fbbotcmt-related-card p {
  color: #b4c0d3;
}

[data-bs-theme="dark"] .fbbotcmt-media-card,
[data-bs-theme="dark"] .fbbotcmt-feature-panel,
[data-bs-theme="dark"] .fbbotcmt-decision-card,
[data-bs-theme="dark"] .fbbotcmt-check-card,
[data-bs-theme="dark"] .fbbotcmt-related-card,
[data-bs-theme="dark"] .fbbotcmt-timeline-content,
[data-bs-theme="dark"] .fbbotcmt-compare > div {
  background: #17243a;
  border-color: #263955;
}

[data-bs-theme="dark"] .fbbotcmt-check-section {
  background: linear-gradient(145deg, #111d31, #10251f) !important;
}

[data-bs-theme="dark"] .fbbotcmt-readmore-wrap {
  background: linear-gradient(to bottom, rgba(17, 29, 49, 0), #111d31 62%);
}

@keyframes fbbotcmtMascotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes fbbotcmtMiniOne {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes fbbotcmtMiniTwo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2px); }
}

@keyframes fbbotcmtMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

@keyframes fbbotcmtMarqueeReverse {
  from { transform: translateX(calc(-50% - 8px)); }
  to { transform: translateX(0); }
}

@media (max-width: 1199px) {
  .fbbotcmt-control-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .fbbotcmt-split,
  .fbbotcmt-dual-feature,
  .fbbotcmt-check-layout {
    grid-template-columns: 1fr;
  }

  .fbbotcmt-split.reverse .fbbotcmt-media-card {
    order: initial;
  }

  .fbbotcmt-timeline-content {
    grid-template-columns: 1fr;
  }

  .fbbotcmt-timeline-content img {
    max-height: 360px;
  }

  .fbbotcmt-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .fbbotcmt-section {
    padding: 62px 0;
  }

  .fbbotcmt-control-grid,
  .fbbotcmt-decision-grid,
  .fbbotcmt-compare,
  .fbbotcmt-skip-panel {
    grid-template-columns: 1fr;
  }

  .fbbotcmt-skip-panel legend,
  .fbbotcmt-skip-list {
    grid-column: auto;
  }

  .fbbotcmt-timeline::before {
    left: 23px;
  }

  .fbbotcmt-timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .fbbotcmt-timeline-number {
    width: 48px;
    height: 48px;
    border-width: 4px;
  }

  .fbbotcmt-timeline-content {
    padding: 16px;
  }
}

@media (max-width: 575px) {
  .fbbotcmt-hero-title {
    font-size: clamp(1.95rem, 10vw, 2.65rem);
  }

  .fbbotcmt-kw {
    max-width: 100%;
    font-size: 0.72rem;
  }

  .fbbotcmt-stepper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
    padding: 0;
    align-items: start;
  }

  .fbbotcmt-step {
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    font-size: 0.56rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .fbbotcmt-step-num {
    width: 24px;
    height: 24px;
  }

  .fbbotcmt-proof-stats {
    grid-template-columns: 1fr 1fr;
  }

  .fbbotcmt-control-card {
    min-height: auto;
  }

  .fbbotcmt-testi-card {
    min-height: 280px;
  }
}

/* Hero balance, compact mascot and form notes */
@media (min-width: 992px) {
  .fbbotcmt-hero {
    overflow: clip;
  }

  .fbbotcmt-hero-row.align-items-start {
    align-items: stretch !important;
    column-gap: 0;
  }

  .fbbotcmt-col-illustration {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }

  .fbbotcmt-col-form,
  .fbbotcmt-col-illustration {
    padding-inline: 14px;
  }

  .fbbotcmt-proof-panel {
    flex: 0 0 auto;
    align-content: initial;
  }
}

.fbbotcmt-proof-panel {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: center;
  padding: 18px;
}

.fbbotcmt-col-illustration .fbbotcmt-hero-info-card {
  margin: 12px 0 0;
}

.fbbotcmt-col-illustration .fbbotcmt-hero-anchor {
  overflow-wrap: anywhere;
}

.fbbotcmt-mascot-wrap {
  position: relative;
  display: flex;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  width: 130px;
  min-height: 130px;
  margin-inline: auto;
}

.fbbotcmt-mascot-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 157, 255, 0.26), rgba(24, 119, 242, 0.06) 58%, transparent 72%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.fbbotcmt-mascot-img {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: 96px;
  max-height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 9px 18px rgba(24, 119, 242, 0.24));
  transform-origin: 50% 75%;
  animation: fbbotcmtMascotFloat 6.4s ease-in-out infinite;
}

.fbbotcmt-mascot-fallback {
  width: 104px;
  height: 104px;
  animation: fbbotcmtMascotFloat 5.8s ease-in-out infinite;
}

.fbbotcmt-mini-1,
.fbbotcmt-mini-2,
.fbbotcmt-mini-3 {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  background: rgba(24, 119, 242, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(4, 18, 40, 0.28);
  font-size: 0.64rem;
}

.fbbotcmt-mini-1 {
  top: 12px;
  right: 4px;
  animation: fbbotcmtMiniOne 5.2s ease-in-out infinite;
}

.fbbotcmt-mini-2 {
  bottom: 13px;
  left: 6px;
  animation: fbbotcmtMiniTwo 5.6s ease-in-out 0.7s infinite;
}

.fbbotcmt-mini-3 {
  top: 54px;
  right: -1px;
  background: rgba(66, 183, 42, 0.92);
  animation: none;
}

.fbbotcmt-proof-stats {
  grid-column: 2;
}

.fbbotcmt-pstat {
  min-height: 66px;
  padding: 10px;
}

.fbbotcmt-proof-cta {
  display: inline-flex;
  grid-column: 2;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #1877f2, #42b72a);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.22);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fbbotcmt-proof-cta:hover {
  color: #ffffff;
  box-shadow: 0 11px 25px rgba(24, 119, 242, 0.3);
  transform: translateY(-2px);
}

.fbbotcmt-livefeed {
  grid-column: 1 / -1;
}

.fbbotcmt-hero-sidecards {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.fbbotcmt-sidecard {
  position: relative;
  overflow: hidden;
  padding: 18px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.94), rgba(17, 43, 76, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--fbbotcmt-radius-lg);
  box-shadow: 0 14px 34px rgba(2, 13, 29, 0.2);
}

.fbbotcmt-sidecard::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, #1877f2, #42b72a);
  content: "";
}

.fbbotcmt-sidecard-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.fbbotcmt-sidecard-icon {
  display: inline-flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: linear-gradient(135deg, #1877f2, #42b72a);
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.25);
}

.fbbotcmt-sidecard-copy > h2,
.fbbotcmt-sidecard-copy > span {
  display: block;
}

.fbbotcmt-sidecard-copy > h2 {
  margin: 0;
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.3;
}

.fbbotcmt-sidecard-copy > span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.45;
}

.fbbotcmt-sidecard-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fbbotcmt-sidecard-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
  padding: 11px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.fbbotcmt-sidecard-list li > i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: #74b4ff;
}

.fbbotcmt-sidecard-list strong {
  color: #ffffff;
}

.fbbotcmt-sidecard-accent {
  background: linear-gradient(145deg, rgba(10, 32, 62, 0.96), rgba(15, 58, 65, 0.91));
  border-color: rgba(80, 174, 255, 0.2);
}

.fbbotcmt-sidecard-flow {
  display: grid;
  gap: 9px;
}

.fbbotcmt-sidecard-flow > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 11px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.fbbotcmt-sidecard-flow > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  background: rgba(24, 119, 242, 0.82);
  border-radius: 50%;
  font-size: 0.73rem;
  font-weight: 800;
}

.fbbotcmt-sidecard-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.5;
}

.fbbotcmt-sidecard-flow strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 0.84rem;
}

.fbbotcmt-sidecard-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 43px;
  margin-top: 12px;
  padding: 10px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #1877f2, #42b72a);
  border-radius: 11px;
  box-shadow: 0 9px 22px rgba(24, 119, 242, 0.22);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fbbotcmt-sidecard-cta:hover {
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(24, 119, 242, 0.3);
  transform: translateY(-2px);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .fbbotcmt-sidecard-list {
    grid-template-columns: 1fr;
  }
}

.fbbotcmt-security-note {
  display: grid;
  gap: 5px;
  margin-top: 9px;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 10px;
  font-size: 0.75rem;
  line-height: 1.5;
}

.fbbotcmt-security-note strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffd76a;
  font-size: 0.8rem;
}

.fbbotcmt-glass-form {
  padding: 24px 28px;
}

.fbbotcmt-glass-form .fbbotcmt-form-group {
  margin-bottom: 16px;
}

.fbbotcmt-check-card > p,
.fbbotcmt-monitor-card > p {
  margin-bottom: 18px;
  color: var(--fbbotcmt-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.fbbotcmt-check-card .fbbotcmt-checklist i.fa-hourglass-half,
.fbbotcmt-check-card .fbbotcmt-checklist i.fa-clock,
.fbbotcmt-check-card .fbbotcmt-checklist i.fa-list-alt {
  color: #f59e0b;
}

@media (max-width: 767px) {
  .fbbotcmt-proof-panel {
    grid-template-columns: 1fr;
  }

  .fbbotcmt-mascot-wrap,
  .fbbotcmt-proof-stats,
  .fbbotcmt-proof-cta,
  .fbbotcmt-livefeed {
    grid-column: 1;
    grid-row: auto;
  }

  .fbbotcmt-mascot-wrap {
    width: 120px;
    min-height: 116px;
  }

  .fbbotcmt-mascot-img {
    max-width: 86px;
    max-height: 96px;
  }

  .fbbotcmt-sidecard-list {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 575.98px) {
  .fbbotcmt-glass-form {
    padding: 18px 16px;
  }

  .fbbotcmt-proof-panel {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbbotcmt-mascot-img,
  .fbbotcmt-mascot-fallback,
  .fbbotcmt-mini-1,
  .fbbotcmt-mini-2,
  .fbbotcmt-testi-track,
  .fbbotcmt-testi-track.reverse {
    animation: none !important;
  }

  .fbbotcmt-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
