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 {
  --fbrx-primary: #1877F2;
  --fbrx-primary-dark: #0F5EC7;
  --fbrx-accent: #F02849;
  --fbrx-accent-light: #FF6B7F;
  --fbrx-secondary: #FFB526;
  --fbrx-positive: #19A56F;
  --fbrx-warning: #E07B16;
  --fbrx-gold: #FFD700;
  --fbrx-love-red: #F02849;
  --fbrx-glass: rgba(255, 255, 255, 0.08);
  --fbrx-glass-border: rgba(255, 255, 255, 0.14);
  --fbrx-gradient: linear-gradient(135deg, #07162B 0%, #102E55 50%, #091A32 100%);
  --fbrx-gradient-accent: linear-gradient(135deg, #1877F2 0%, #F02849 100%);
  --fbrx-gradient-mix: linear-gradient(135deg, #1877F2 0%, #7B61FF 48%, #F02849 100%);
  --fbrx-dark: #07162B;
  --fbrx-dark2: #102E55;
  --fbrx-radius: 16px;
  --fbrx-radius-lg: 24px;
  --fbrx-shadow: 0 12px 36px rgba(13, 57, 117, 0.12);
  --fbrx-section-bg-alt: #F2F6FF;
  --fbrx-text: #4B5870;
  --fbrx-heading: #13213A;
  --fbrx-card-bg: #fff;
  --fbrx-card-border: rgba(19, 33, 58, 0.09);
  --fbrx-list-border: #E6EBF3;
}

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

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

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

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

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

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

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

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

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

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

@keyframes fbrxFloat1 {

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

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

@keyframes fbrxFloat2 {

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

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

@keyframes fbrxDotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

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

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

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

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

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

  50% {
    transform: scale(1.15)
  }

  100% {
    transform: scale(1)
  }
}

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

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

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

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

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

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

/* ========== HERO BADGE ========== */
.fbrx-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(--fbrx-accent);
  margin-bottom: 12px;
  animation: fbrxBadgeSlide 0.6s ease-out both;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.3)
}

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

/* ========== HERO ========== */
.fbrx-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
}

.fbrx-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
}

.fbrx-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
}

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

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

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

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

.fbrx-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
}

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

.fbrx-col-form {
  order: 0
}

.fbrx-col-illustration {
  order: 0
}

.fbrx-anim-fadeIn {
  animation: fbrxFadeIn 0.8s ease both
}

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

.fbrx-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)
}

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

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

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

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

.fbrx-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 ========== */
.fbrx-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(--fbrx-glass-border);
  border-radius: var(--fbrx-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)
}

.fbrx-glass-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--fbrx-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
}

.fbrx-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)
}

.fbrx-form-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--fbrx-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)
}

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

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

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

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

.fbrx-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: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, color 0.35s ease, opacity 0.35s ease;
  flex-shrink: 0
}

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

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

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

.fbrx-step.completed .fbrx-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
}

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

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

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

.fbrx-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
}

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

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

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

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

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

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

.fbrx-server-trigger {
  position: relative
}

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

.fbrx-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)
}

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

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

.fbrx-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: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  outline: none
}

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

.fbrx-input:focus {
  border-color: var(--fbrx-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)
}

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

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

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

.fbrx-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(--fbrx-primary);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  display: flex;
  align-items: center
}

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

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

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

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

.fbrx-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: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease
}

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

.fbrx-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
}

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

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

.fbrx-reaction-option {
  position: relative
}

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

.fbrx-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: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500
}

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

.fbrx-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)
}

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

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

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

/* CTA */
.fbrx-cta-btn {
  width: 100%;
  background: var(--fbrx-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
}

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

.fbrx-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: fbrxShimmer 2.8s ease 1
}

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

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

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

/* Glass form select override */
.fbrx-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: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s, opacity 0.3s;
  font-size: 0.88rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 32px
}

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

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

.fbrx-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
}

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

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

.fbrx-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
}

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

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

.fbrx-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
}

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

.fbrx-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
}

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

.fbrx-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)
}

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

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

.fbrx-mini-2 {
  bottom: 5px;
  left: -10px;
  animation: none
}

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

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

.fbrx-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: transform 0.3s ease
}

.fbrx-pstat:hover {
  background: rgba(24, 119, 242, 0.08), box-shadow 0.3s ease
}

.fbrx-pstat:hover {
  background: rgba(24, 119, 242, 0.08), border-color 0.3s ease
}

.fbrx-pstat:hover {
  background: rgba(24, 119, 242, 0.08), background-color 0.3s ease
}

.fbrx-pstat:hover {
  background: rgba(24, 119, 242, 0.08), color 0.3s ease
}

.fbrx-pstat:hover {
  background: rgba(24, 119, 242, 0.08), opacity 0.3s ease
}

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

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

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

.fbrx-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 */
.fbrx-livefeed {
  max-height: 200px;
  overflow: hidden;
  position: relative
}

.fbrx-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
}

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

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

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

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

.fbrx-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: fbrxFeedSlideIn 0.5s ease-out
}

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

.fbrx-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(--fbrx-gradient-accent)
}

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

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

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

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

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

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

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

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

.fbrx-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
}

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

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

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

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

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

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

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

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

.fbrx-img-card {
  background: var(--fbrx-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: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden
}

.fbrx-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
}

.fbrx-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)
}

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

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

.fbrx-reveal.visible {
  opacity: 1, box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1)
}

.fbrx-reveal.visible {
  opacity: 1, border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1)
}

.fbrx-reveal.visible {
  opacity: 1, background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1)
}

.fbrx-reveal.visible {
  opacity: 1, color 0.6s cubic-bezier(0.16, 1, 0.3, 1)
}

.fbrx-reveal.visible {
  opacity: 1, opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbrx-guide-card {
  background: var(--fbrx-card-bg);
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid var(--fbrx-card-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  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), background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden
}

.fbrx-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)
}

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

.fbrx-guide-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fbrx-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)
}

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

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

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

.fbrx-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
}

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

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

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

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

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

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

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

.fbrx-howto-card {
  background: var(--fbrx-card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--fbrx-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)
}

.fbrx-howto-card:hover {
  transform: translateY(-4px), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1)
}

.fbrx-howto-card:hover {
  transform: translateY(-4px), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1)
}

.fbrx-howto-card:hover {
  transform: translateY(-4px), background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1)
}

.fbrx-howto-card:hover {
  transform: translateY(-4px), color 0.35s cubic-bezier(0.16, 1, 0.3, 1)
}

.fbrx-howto-card:hover {
  transform: translateY(-4px), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1)
}

.fbrx-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)
}

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

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

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

.fbrx-howto-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fbrx-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
}

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

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

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

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

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

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

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

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

/* ========== PRICING TABLE ========== */
.fbrx-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)
}

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

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

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

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

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

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

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

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

.fbrx-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: transform 0.3s
}

.fbrx-tip-card h4 {
  font-size: 0.95rem, box-shadow 0.3s
}

.fbrx-tip-card h4 {
  font-size: 0.95rem, border-color 0.3s
}

.fbrx-tip-card h4 {
  font-size: 0.95rem, background-color 0.3s
}

.fbrx-tip-card h4 {
  font-size: 0.95rem, color 0.3s
}

.fbrx-tip-card h4 {
  font-size: 0.95rem, opacity 0.3s
}

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

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

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

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

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

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

.fbrx-testi-row-1 {
  animation: none
}

.fbrx-testi-row-2 {
  animation: none;
  margin-top: 16px
}

.fbrx-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: transform 0.3s
}

.fbrx-testi-card:hover {
  background: rgba(255, 255, 255, 0.08), box-shadow 0.3s
}

.fbrx-testi-card:hover {
  background: rgba(255, 255, 255, 0.08), border-color 0.3s
}

.fbrx-testi-card:hover {
  background: rgba(255, 255, 255, 0.08), background-color 0.3s
}

.fbrx-testi-card:hover {
  background: rgba(255, 255, 255, 0.08), color 0.3s
}

.fbrx-testi-card:hover {
  background: rgba(255, 255, 255, 0.08), opacity 0.3s
}

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

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

.fbrx-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(--fbrx-gradient-accent);
  flex-shrink: 0
}

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

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

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

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

.fbrx-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 ========== */
.fbrx-faq .accordion-item {
  border: 1px solid var(--fbrx-card-border);
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden
}

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

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

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

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

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

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

.fbrx-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)
}

.fbrx-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(--fbrx-primary);
  transition: transform 0.3s
}

.fbrx-related-card:hover .fbrx-related-icon {
  background: var(--fbrx-gradient-accent), box-shadow 0.3s
}

.fbrx-related-card:hover .fbrx-related-icon {
  background: var(--fbrx-gradient-accent), border-color 0.3s
}

.fbrx-related-card:hover .fbrx-related-icon {
  background: var(--fbrx-gradient-accent), background-color 0.3s
}

.fbrx-related-card:hover .fbrx-related-icon {
  background: var(--fbrx-gradient-accent), color 0.3s
}

.fbrx-related-card:hover .fbrx-related-icon {
  background: var(--fbrx-gradient-accent), opacity 0.3s
}

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

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

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

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

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

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

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

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

/* ========== LIGHTBOX ========== */
.fbrx-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: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s, opacity 0.3s;
  cursor: pointer
}

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

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

.fbrx-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
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fbrx-fbadge {
    display: none
  }

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

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

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

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

  .fbrx-section {
    padding: 12px 0
  }

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

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

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

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

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

/* === Hero Anchor Paragraph === */
.fbrx-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(--fbrx-accent);
  border-radius: 0 8px 8px 0
}

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

.fbrx-hero-anchor a:hover {
  color: #fff, box-shadow 0.3s
}

.fbrx-hero-anchor a:hover {
  color: #fff, border-color 0.3s
}

.fbrx-hero-anchor a:hover {
  color: #fff, background-color 0.3s
}

.fbrx-hero-anchor a:hover {
  color: #fff, color 0.3s
}

.fbrx-hero-anchor a:hover {
  color: #fff, opacity 0.3s
}

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

/* Hero Info Card */
.fbrx-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
}

.fbrx-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
}

.fbrx-hero-info-card .fbrx-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
}

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

.fbrx-hero-info-card .fbrx-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 === */
.fbrx-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)
}

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

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

.fbrx-pricing-table th {
  padding: 12px 14px;
  color: var(--fbrx-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)
}

.fbrx-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
}

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

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

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

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

.fbrx-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)
}

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

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

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

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

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

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

  100% {
    transform: translateX(0)
  }
}

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

.fbrx-testi-track.fbrx-testi-row-2 {
  animation: none
}

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

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

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

.fbrx-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);
}

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

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

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

.fbrx-step-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  background: var(--fbrx-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);
}

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

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

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

.fbrx-step-info h4 i {
  color: #fff;
  background: var(--fbrx-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;
}

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

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

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

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

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

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

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

/* ==========================================================================
   FACEBOOK REACTION V2 — SEMANTIC CONTENT LAYER
   The form/hero geometry remains aligned with the Facebook Like reference.
   This layer gives the Reaction page its own visual language and content flow.
   ========================================================================== */

@keyframes fbrxMascotBob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg)
  }

  50% {
    transform: translate3d(0, -7px, 0) rotate(1.2deg)
  }
}

@keyframes fbrxReactionMarqueeLeft {
  from {
    transform: translateX(0)
  }

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

@keyframes fbrxReactionMarqueeRight {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

.fbrx-hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(240, 40, 73, 0.12), transparent 28%),
    linear-gradient(135deg, #07162B 0%, #102E55 48%, #091A32 100%)
}

.fbrx-hero::after,
.fbrx-hero-orb-2 {
  background: radial-gradient(circle, rgba(240, 40, 73, 0.12) 0%, transparent 70%)
}

.fbrx-hero>.container-fluid {
  padding-left: clamp(18px, 3vw, 42px);
  padding-right: clamp(18px, 3vw, 42px)
}

.fbrx-hero-row {
  align-items: flex-start
}

.fbrx-col-form {
  margin-top: -8px
}

.fbrx-col-illustration {
  padding-top: 8px
}

.fbrx-hero-headline,
.fbrx-kw-rotator {
  max-width: 100%;
  min-width: 0;
  overflow: visible
}

.fbrx-kw {
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
  overflow-wrap: anywhere;
  background: rgba(24, 119, 242, 0.13);
  border-color: rgba(240, 40, 73, 0.2)
}

.fbrx-hero-badge {
  color: #FFD9DF;
  background: rgba(240, 40, 73, 0.12);
  border-color: rgba(240, 40, 73, 0.28);
  box-shadow: 0 6px 24px rgba(240, 40, 73, 0.1)
}

.fbrx-hero-badge i {
  color: #FF889A
}

.fbrx-glass-form {
  background:
    linear-gradient(160deg, rgba(24, 119, 242, 0.1) 0%, rgba(7, 22, 43, 0.97) 42%, rgba(16, 46, 85, 0.98) 100%);
  box-shadow: 0 12px 42px rgba(3, 16, 36, 0.34), 0 0 0 1px rgba(24, 119, 242, 0.04)
}

.fbrx-glass-form::before {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.5), rgba(240, 40, 73, 0.28), rgba(24, 119, 242, 0.2))
}

.fbrx-glass-form .custom-select-trigger {
  position: relative;
  padding: 12px 32px 12px 14px
}

.fbrx-glass-form .custom-select-dropdown {
  background: rgba(7, 22, 43, 0.99)
}

.fbrx-form-row-2col,
.fbrx-form-row-2col>.fbrx-form-group,
.fbrx-form-group,
.custom-select-wrapper {
  overflow: visible
}

.fbrx-input,
.fbrx-textarea,
.fbrx-glass-form .custom-select-trigger {
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease
}

.fbrx-reaction-option label {
  min-height: 44px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease
}

.fbrx-reaction-option label:hover {
  transform: translateY(-1px)
}

.fbrx-reaction-option[data-reaction="like"] input:checked+label {
  background: rgba(24, 119, 242, 0.16);
  border-color: rgba(24, 119, 242, 0.55)
}

.fbrx-reaction-option[data-reaction="love"] input:checked+label {
  background: rgba(240, 40, 73, 0.15);
  border-color: rgba(240, 40, 73, 0.55)
}

.fbrx-reaction-option[data-reaction="haha"] input:checked+label,
.fbrx-reaction-option[data-reaction="wow"] input:checked+label {
  background: rgba(255, 181, 38, 0.14);
  border-color: rgba(255, 181, 38, 0.5)
}

.fbrx-reaction-option[data-reaction="sad"] input:checked+label {
  background: rgba(74, 144, 226, 0.15);
  border-color: rgba(74, 144, 226, 0.5)
}

.fbrx-reaction-option[data-reaction="angry"] input:checked+label {
  background: rgba(224, 76, 54, 0.15);
  border-color: rgba(224, 76, 54, 0.5)
}

.fbrx-cta-btn::after {
  animation: fbrxShimmer 2.8s ease 1
}

.fbrx-proof-panel {
  background: rgba(5, 20, 39, 0.94);
  border-color: rgba(115, 170, 255, 0.14);
  box-shadow: 0 16px 46px rgba(2, 12, 28, 0.24)
}

.fbrx-proof-robot {
  isolation: isolate
}

.fbrx-cat-glow {
  width: 112px;
  height: 112px;
  background: radial-gradient(circle, rgba(240, 40, 73, 0.2) 0%, rgba(24, 119, 242, 0.1) 42%, transparent 72%)
}

.fbrx-robot-img-sm {
  transform-origin: 50% 74%;
  animation: fbrxMascotBob 5.2s ease-in-out infinite;
  filter: drop-shadow(0 9px 18px rgba(24, 119, 242, 0.24))
}

.fbrx-mini-2 {
  animation: none
}

.fbrx-mini-3 {
  background: rgba(240, 40, 73, 0.17);
  border-color: rgba(240, 40, 73, 0.3)
}

.fbrx-pstat {
  min-width: 0;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease
}

.fbrx-pstat-num {
  font-size: clamp(0.82rem, 1.5vw, 1.05rem);
  overflow-wrap: anywhere
}

.fbrx-livefeed {
  max-height: 205px
}

.fbrx-livefeed-list {
  max-height: 175px;
  overflow: hidden
}

.fbrx-livefeed-name span {
  color: #74ABFF
}

.fbrx-hero-info-card {
  background: rgba(7, 25, 49, 0.74);
  border-color: rgba(240, 40, 73, 0.13)
}

.fbrx-hero-info-card::before {
  background: linear-gradient(180deg, #1877F2, #F02849)
}

.fbrx-hero-info-card .fbrx-hero-desc {
  border-bottom-color: rgba(240, 40, 73, 0.1)
}

.fbrx-hero-info-card .fbrx-hero-anchor a {
  color: #FF8C9E;
  border-bottom-color: rgba(255, 140, 158, 0.55)
}

.fbrx-section {
  padding: 64px 0;
  color: var(--fbrx-text)
}

.fbrx-section>.container-fluid {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: clamp(18px, 3vw, 42px);
  padding-right: clamp(18px, 3vw, 42px);
  position: relative;
  z-index: 1
}

.fbrx-section:nth-child(odd),
.fbrx-section:nth-child(even) {
  background: #fff
}

.fbrx-section::before {
  opacity: 0.018
}

.fbrx-section-title {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  margin-bottom: 18px;
  padding-bottom: 12px;
  text-wrap: balance
}

.fbrx-section-title::after {
  width: 72px;
  height: 4px;
  background: var(--fbrx-gradient-accent)
}

.fbrx-section-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.12), rgba(240, 40, 73, 0.1));
  border: 1px solid rgba(24, 119, 242, 0.12);
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(19, 33, 58, 0.06)
}

.fbrx-section-intro {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center
}

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

.fbrx-section-intro>p {
  margin: 0;
  color: var(--fbrx-text);
  font-size: 1rem;
  line-height: 1.75
}

.fbrx-img-card {
  width: 100%;
  padding: 10px;
  color: inherit;
  text-align: left;
  font: inherit;
  appearance: none;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease
}

.fbrx-img-card:hover {
  transform: translateY(-4px)
}

.fbrx-section-img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #EAF0FA
}

.fbrx-img-caption {
  padding: 12px 8px 4px;
  color: #647189;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center
}

.fbrx-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(24, 119, 242, 0.08);
  border: 1px solid rgba(24, 119, 242, 0.14);
  color: #0F5EC7;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease
}

.fbrx-inline-link:hover {
  transform: translateX(3px);
  color: #0B4FAE;
  background: rgba(24, 119, 242, 0.12);
  border-color: rgba(24, 119, 242, 0.24)
}

.fbrx-definition {
  background:
    radial-gradient(circle at 8% 18%, rgba(24, 119, 242, 0.07), transparent 28%),
    #F8FAFE !important
}

.fbrx-definition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center
}

.fbrx-definition-copy>p {
  color: var(--fbrx-text);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 15px
}

.fbrx-definition-copy>p strong {
  color: #0F5EC7
}

.fbrx-definition-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.08), rgba(240, 40, 73, 0.045));
  border: 1px solid rgba(24, 119, 242, 0.13);
  border-left: 4px solid var(--fbrx-primary)
}

.fbrx-definition-note i {
  color: var(--fbrx-primary);
  margin-top: 4px;
  flex-shrink: 0
}

.fbrx-definition-note p {
  margin: 0;
  color: #42506A;
  line-height: 1.65
}

.fbrx-definition-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(24, 119, 242, 0.1);
  box-shadow: 0 10px 34px rgba(19, 33, 58, 0.06)
}

.fbrx-definition-strip>div {
  min-width: 0;
  padding: 14px 12px;
  border-radius: 12px;
  text-align: center;
  background: #F7F9FD
}

.fbrx-definition-strip strong,
.fbrx-definition-strip span {
  display: block
}

.fbrx-definition-strip strong {
  color: var(--fbrx-heading);
  font-size: 0.9rem;
  margin-bottom: 4px
}

.fbrx-definition-strip span {
  color: #657188;
  font-size: 0.74rem;
  line-height: 1.45
}

.fbrx-emotion-map {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFF9FA 100%) !important
}

.fbrx-emotion-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-bottom: 34px
}

.fbrx-emotion-heading>div:first-child>p {
  margin: 0;
  color: var(--fbrx-text);
  font-size: 1rem;
  line-height: 1.75
}

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

.fbrx-emotion-card {
  --tone: #1877F2;
  position: relative;
  min-width: 0;
  padding: 24px 22px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(19, 33, 58, 0.09);
  border-top: 4px solid var(--tone);
  box-shadow: 0 8px 28px rgba(19, 33, 58, 0.055);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease
}

.fbrx-emotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(19, 33, 58, 0.1)
}

.fbrx-emotion-card[data-tone="love"] {
  --tone: #F02849
}

.fbrx-emotion-card[data-tone="haha"] {
  --tone: #F4A900
}

.fbrx-emotion-card[data-tone="wow"] {
  --tone: #E89A00
}

.fbrx-emotion-card[data-tone="sad"] {
  --tone: #4A90E2
}

.fbrx-emotion-card[data-tone="angry"] {
  --tone: #E04C36
}

.fbrx-emotion-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 15px;
  background: rgba(24, 119, 242, 0.08);
  border: 1px solid rgba(24, 119, 242, 0.16);
  background: color-mix(in srgb, var(--tone) 10%, white);
  border: 1px solid color-mix(in srgb, var(--tone) 20%, white)
}

.fbrx-emotion-icon img {
  width: 34px;
  height: 34px
}

.fbrx-emotion-card h3 {
  color: var(--fbrx-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 9px
}

.fbrx-emotion-card p {
  color: var(--fbrx-text);
  font-size: 0.86rem;
  line-height: 1.68;
  margin: 0
}

.fbrx-boundary {
  background:
    radial-gradient(circle at 90% 12%, rgba(240, 40, 73, 0.07), transparent 30%),
    linear-gradient(180deg, #F3F7FF 0%, #F8FAFD 100%) !important
}

.fbrx-boundary-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: center
}

.fbrx-boundary-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px
}

.fbrx-boundary-card {
  border-radius: 18px;
  padding: 20px;
  border: 1px solid transparent
}

.fbrx-boundary-card.is-helpful {
  background: rgba(25, 165, 111, 0.075);
  border-color: rgba(25, 165, 111, 0.17)
}

.fbrx-boundary-card.is-limit {
  background: rgba(240, 40, 73, 0.065);
  border-color: rgba(240, 40, 73, 0.15)
}

.fbrx-boundary-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fbrx-heading);
  font-size: 0.96rem;
  font-weight: 800;
  margin: 0 0 13px
}

.fbrx-boundary-card.is-helpful h3 i {
  color: var(--fbrx-positive)
}

.fbrx-boundary-card.is-limit h3 i {
  color: var(--fbrx-accent)
}

.fbrx-boundary-card ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.fbrx-boundary-card li {
  position: relative;
  padding: 9px 0 9px 19px;
  color: var(--fbrx-text);
  font-size: 0.84rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(19, 33, 58, 0.06)
}

.fbrx-boundary-card li:last-child {
  border-bottom: 0
}

.fbrx-boundary-card li::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fbrx-primary)
}

.fbrx-boundary-card.is-limit li::before {
  background: var(--fbrx-accent)
}

.fbrx-boundary-summary {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(24, 119, 242, 0.1);
  color: #3D4C66;
  line-height: 1.65
}

.fbrx-server-guide {
  background:
    linear-gradient(135deg, rgba(24, 119, 242, 0.035), transparent 44%),
    #FFFFFF !important
}

.fbrx-server-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px
}

.fbrx-server-guide-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(24, 119, 242, 0.11);
  box-shadow: 0 8px 26px rgba(19, 33, 58, 0.05);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease
}

.fbrx-server-guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 119, 242, 0.24);
  box-shadow: 0 15px 38px rgba(24, 119, 242, 0.09)
}

.fbrx-server-guide-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 15px;
  background: var(--fbrx-gradient-accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.18)
}

.fbrx-server-guide-card h3 {
  color: var(--fbrx-heading);
  font-size: 1rem;
  font-weight: 800;
  margin: 1px 0 7px
}

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

.fbrx-server-guide-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 900px;
  margin: 24px auto 0;
  padding: 17px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 181, 38, 0.12), rgba(240, 40, 73, 0.045));
  border: 1px solid rgba(224, 123, 22, 0.18)
}

.fbrx-server-guide-note i {
  color: var(--fbrx-warning);
  margin-top: 4px;
  flex-shrink: 0
}

.fbrx-server-guide-note p {
  margin: 0;
  color: #4F5A70;
  line-height: 1.6
}

.fbrx-howto {
  background:
    radial-gradient(circle at 0 50%, rgba(24, 119, 242, 0.07), transparent 32%),
    linear-gradient(180deg, #F4F7FC 0%, #EDF3FB 100%) !important
}

.fbrx-howto-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto
}

.fbrx-howto-step {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(24, 119, 242, 0.1);
  box-shadow: 0 10px 32px rgba(19, 33, 58, 0.065)
}

.fbrx-howto-step.is-reverse .fbrx-howto-media {
  order: 2
}

.fbrx-howto-step.is-reverse .fbrx-howto-copy {
  order: 1;
  padding-left: 16px;
  padding-right: 0
}

.fbrx-howto-media {
  min-width: 0
}

.fbrx-howto-media .fbrx-section-img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain
}

.fbrx-howto-copy {
  padding-right: 18px
}

.fbrx-howto-index {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--fbrx-gradient-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em
}

.fbrx-howto-copy h3 {
  color: var(--fbrx-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 10px
}

.fbrx-howto-copy p {
  color: var(--fbrx-text);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0
}

.fbrx-lightbox-trigger {
  position: relative;
  cursor: zoom-in
}

.fbrx-img-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 22, 43, 0.86);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18)
}

.fbrx-checklist {
  background: #FFFFFF !important
}

.fbrx-checklist-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 62px);
  padding: clamp(28px, 4vw, 50px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(240, 40, 73, 0.15), transparent 28%),
    linear-gradient(135deg, #081A35 0%, #123B69 100%);
  box-shadow: 0 22px 60px rgba(7, 22, 43, 0.18)
}

.fbrx-checklist-heading {
  align-self: center
}

.fbrx-checklist-heading .fbrx-section-title,
.fbrx-checklist-heading>p {
  color: #fff
}

.fbrx-checklist-heading>p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7
}

.fbrx-checklist-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0
}

.fbrx-checklist-items>li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11)
}

.fbrx-checklist-items>li>span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, #1877F2, #F02849);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900
}

.fbrx-checklist-items strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 3px
}

.fbrx-checklist-items p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.79rem;
  line-height: 1.55
}

.fbrx-organic {
  background:
    radial-gradient(circle at 86% 18%, rgba(25, 165, 111, 0.09), transparent 31%),
    linear-gradient(180deg, #F4FBF8 0%, #F8FCFA 100%) !important
}

.fbrx-organic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center
}

.fbrx-organic-copy>p {
  color: var(--fbrx-text);
  font-size: 1rem;
  line-height: 1.78
}

.fbrx-organic-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px
}

.fbrx-organic-points article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  padding: 17px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(25, 165, 111, 0.13);
  box-shadow: 0 7px 22px rgba(19, 75, 56, 0.045)
}

.fbrx-organic-points article>i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  background: rgba(25, 165, 111, 0.1);
  color: var(--fbrx-positive)
}

.fbrx-organic-points h3 {
  color: var(--fbrx-heading);
  font-size: 0.9rem;
  font-weight: 800;
  margin: 1px 0 5px
}

.fbrx-organic-points p {
  color: var(--fbrx-text);
  font-size: 0.8rem;
  line-height: 1.58;
  margin: 0
}

.fbrx-measure {
  background:
    radial-gradient(circle at 12% 14%, rgba(24, 119, 242, 0.07), transparent 28%),
    #FFFFFF !important
}

.fbrx-measure-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center
}

.fbrx-measure-copy>p {
  color: var(--fbrx-text);
  font-size: 1rem;
  line-height: 1.78;
  margin: 0 0 22px
}

.fbrx-measure-table {
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(19, 33, 58, 0.055)
}

.fbrx-measure-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.85fr) minmax(150px, 1.1fr) minmax(190px, 1.55fr);
  align-items: stretch
}

.fbrx-measure-row>* {
  min-width: 0;
  margin: 0;
  padding: 14px 15px;
  color: var(--fbrx-text);
  font-size: 0.79rem;
  line-height: 1.55;
  border-right: 1px solid rgba(19, 33, 58, 0.07);
  border-bottom: 1px solid rgba(19, 33, 58, 0.07)
}

.fbrx-measure-row>*:last-child {
  border-right: 0
}

.fbrx-measure-row:last-child>* {
  border-bottom: 0
}

.fbrx-measure-row.is-head {
  background: linear-gradient(135deg, #0F5EC7, #1877F2)
}

.fbrx-measure-row.is-head>* {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-color: rgba(255, 255, 255, 0.16)
}

.fbrx-measure-row strong {
  color: var(--fbrx-heading);
  font-weight: 800
}

.fbrx-measure-media {
  min-width: 0
}

.fbrx-measure-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(240, 40, 73, 0.075), rgba(24, 119, 242, 0.055));
  border: 1px solid rgba(240, 40, 73, 0.13)
}

.fbrx-measure-question i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 11px;
  background: var(--fbrx-gradient-accent);
  color: #fff
}

.fbrx-measure-question p {
  margin: 0;
  color: #46536B;
  font-size: 0.82rem;
  line-height: 1.6
}

.fbrx-testimonials {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 68px 0 72px;
  background:
    radial-gradient(circle at 14% 20%, rgba(24, 119, 242, 0.2), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(240, 40, 73, 0.16), transparent 32%),
    linear-gradient(135deg, #061326 0%, #102E55 54%, #091A32 100%) !important;
  overflow: hidden
}

.fbrx-testimonials::before {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px
}

.fbrx-testimonials .fbrx-section-intro {
  margin-bottom: 34px
}

.fbrx-testimonials .fbrx-section-title,
.fbrx-testimonials .fbrx-section-intro>p {
  color: #fff
}

.fbrx-testimonials .fbrx-section-intro>p {
  color: rgba(255, 255, 255, 0.68)
}

.fbrx-testimonials .fbrx-section-emoji {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13)
}

.fbrx-testimonial-viewport {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent)
}

.fbrx-testimonial-row {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding: 2px 0;
  will-change: transform
}

.fbrx-testimonial-row.is-forward {
  animation: fbrxReactionMarqueeLeft 78s linear infinite
}

.fbrx-testimonial-row.is-reverse {
  animation: fbrxReactionMarqueeRight 84s linear infinite
}

.fbrx-testimonial-row:hover {
  animation-play-state: paused
}

.fbrx-testimonial-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 360px;
  width: 360px;
  min-height: 244px;
  padding: 21px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.095);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease
}

.fbrx-testimonial-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 140, 158, 0.34)
}

.fbrx-testimonial-top {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px
}

.fbrx-testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--fbrx-gradient-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(24, 119, 242, 0.2)
}

.fbrx-testimonial-top h3 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  margin: 0 0 2px
}

.fbrx-testimonial-top p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.69rem;
  margin: 0
}

.fbrx-testimonial-quote {
  color: rgba(255, 140, 158, 0.48);
  font-family: Georgia, serif;
  font-size: 2.6rem;
  line-height: 0.7
}

.fbrx-testimonial-stars {
  display: flex;
  gap: 3px;
  color: #FFC94A;
  font-size: 0.69rem;
  margin-bottom: 9px
}

.fbrx-testimonial-text {
  flex: 1;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.65
}

.fbrx-testimonial-tag {
  align-self: flex-start;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(24, 119, 242, 0.15);
  border: 1px solid rgba(115, 170, 255, 0.23);
  color: #9BC3FF;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.02em
}

.fbrx-faq {
  background:
    radial-gradient(circle at 92% 8%, rgba(240, 40, 73, 0.07), transparent 30%),
    linear-gradient(180deg, #FFF9FA 0%, #F8FAFE 100%) !important
}

.fbrx-faq-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start
}

.fbrx-faq-heading {
  position: sticky;
  top: 96px
}

.fbrx-faq-heading>p {
  color: var(--fbrx-text);
  font-size: 0.94rem;
  line-height: 1.72;
  margin: 0
}

.fbrx-faq-aside {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(24, 119, 242, 0.12);
  box-shadow: 0 8px 26px rgba(19, 33, 58, 0.05)
}

.fbrx-faq-aside i {
  color: var(--fbrx-primary);
  margin-top: 3px;
  flex-shrink: 0
}

.fbrx-faq-aside p {
  margin: 0;
  color: #4A576F;
  font-size: 0.8rem;
  line-height: 1.6
}

.fbrx-faq-accordion {
  min-width: 0
}

.fbrx-faq .fbrx-faq-item {
  margin-bottom: 11px;
  overflow: hidden;
  border: 1px solid rgba(19, 33, 58, 0.09);
  border-radius: 15px !important;
  background: #fff;
  box-shadow: 0 5px 18px rgba(19, 33, 58, 0.035)
}

.fbrx-faq .accordion-button {
  display: flex;
  gap: 13px;
  padding: 17px 19px;
  background: #fff;
  color: var(--fbrx-heading);
  font-size: 0.89rem;
  font-weight: 750;
  line-height: 1.45;
  box-shadow: none
}

.fbrx-faq .accordion-button>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  margin-top: -5px;
  margin-bottom: -5px;
  border-radius: 10px;
  background: rgba(24, 119, 242, 0.09);
  color: var(--fbrx-primary);
  font-size: 0.68rem;
  font-weight: 900
}

.fbrx-faq .accordion-button:not(.collapsed) {
  color: #0F5EC7;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.065), rgba(240, 40, 73, 0.035))
}

.fbrx-faq .accordion-button:not(.collapsed)>span {
  color: #fff;
  background: var(--fbrx-gradient-accent)
}

.fbrx-faq .accordion-button:focus {
  border-color: transparent;
  box-shadow: inset 0 0 0 2px rgba(24, 119, 242, 0.22)
}

.fbrx-faq .accordion-body {
  padding: 4px 19px 18px 63px;
  color: var(--fbrx-text);
  font-size: 0.86rem;
  line-height: 1.72
}

.fbrx-related {
  background: #FFFFFF !important
}

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

.fbrx-related-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(24, 119, 242, 0.11);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(19, 33, 58, 0.045);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease
}

.fbrx-related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 119, 242, 0.25);
  box-shadow: 0 15px 38px rgba(24, 119, 242, 0.09)
}

.fbrx-related-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.12), rgba(240, 40, 73, 0.08));
  color: var(--fbrx-primary);
  font-size: 1.1rem
}

.fbrx-related-card h3 {
  color: var(--fbrx-heading);
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 5px
}

.fbrx-related-card p {
  color: var(--fbrx-text);
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0
}

.fbrx-related-arrow {
  color: #8A96AA;
  transition:
    transform 0.2s ease,
    color 0.2s ease
}

.fbrx-related-card:hover .fbrx-related-arrow {
  color: var(--fbrx-accent);
  transform: translateX(3px)
}

.fbrx-final-cta {
  margin-top: 34px
}

.fbrx-final-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 16%, rgba(240, 40, 73, 0.22), transparent 30%),
    linear-gradient(135deg, #0D2F5A 0%, #1877F2 68%, #1666CF 100%);
  box-shadow: 0 20px 54px rgba(24, 119, 242, 0.2)
}

.fbrx-final-cta-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #FFD5DC;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase
}

.fbrx-final-cta h2 {
  color: #fff;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 850;
  line-height: 1.32;
  margin: 0 0 9px;
  text-wrap: balance
}

.fbrx-final-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.68
}

.fbrx-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px
}

.fbrx-final-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 12px;
  font-size: 0.79rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease
}

.fbrx-final-cta-actions a:hover {
  transform: translateY(-2px)
}

.fbrx-final-cta-primary {
  color: #0F5EC7;
  background: #fff;
  border: 1px solid #fff
}

.fbrx-final-cta-primary:hover {
  color: #0B4FAE
}

.fbrx-final-cta-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.28)
}

.fbrx-final-cta-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15)
}

.fbrx-lightbox-trigger:focus-visible,
.fbrx-related-card:focus-visible,
.fbrx-inline-link:focus-visible,
.fbrx-final-cta-actions a:focus-visible,
.fbrx-cta-btn:focus-visible,
.fbrx-reaction-option input:focus-visible+label {
  outline: 3px solid rgba(255, 181, 38, 0.9);
  outline-offset: 3px
}

/* Dark theme for Reaction-specific sections. */
[data-bs-theme="dark"] .fbrx-definition,
[data-bs-theme="dark"] .fbrx-emotion-map,
[data-bs-theme="dark"] .fbrx-boundary,
[data-bs-theme="dark"] .fbrx-server-guide,
[data-bs-theme="dark"] .fbrx-howto,
[data-bs-theme="dark"] .fbrx-checklist,
[data-bs-theme="dark"] .fbrx-organic,
[data-bs-theme="dark"] .fbrx-measure,
[data-bs-theme="dark"] .fbrx-faq,
[data-bs-theme="dark"] .fbrx-related {
  background: #101A2D !important
}

[data-bs-theme="dark"] .fbrx-emotion-map,
[data-bs-theme="dark"] .fbrx-server-guide,
[data-bs-theme="dark"] .fbrx-measure,
[data-bs-theme="dark"] .fbrx-related {
  background: #0D1728 !important
}

[data-bs-theme="dark"] .fbrx-section-title,
[data-bs-theme="dark"] .fbrx-emotion-card h3,
[data-bs-theme="dark"] .fbrx-server-guide-card h3,
[data-bs-theme="dark"] .fbrx-howto-copy h3,
[data-bs-theme="dark"] .fbrx-organic-points h3,
[data-bs-theme="dark"] .fbrx-measure-row strong,
[data-bs-theme="dark"] .fbrx-related-card h3,
[data-bs-theme="dark"] .fbrx-faq .accordion-button {
  color: #F5F8FF
}

[data-bs-theme="dark"] .fbrx-definition-copy>p,
[data-bs-theme="dark"] .fbrx-emotion-heading>div:first-child>p,
[data-bs-theme="dark"] .fbrx-emotion-card p,
[data-bs-theme="dark"] .fbrx-boundary-card li,
[data-bs-theme="dark"] .fbrx-server-guide-card p,
[data-bs-theme="dark"] .fbrx-howto-copy p,
[data-bs-theme="dark"] .fbrx-section-intro>p,
[data-bs-theme="dark"] .fbrx-organic-copy>p,
[data-bs-theme="dark"] .fbrx-organic-points p,
[data-bs-theme="dark"] .fbrx-measure-copy>p,
[data-bs-theme="dark"] .fbrx-related-card p,
[data-bs-theme="dark"] .fbrx-faq-heading>p,
[data-bs-theme="dark"] .fbrx-faq .accordion-body {
  color: rgba(235, 242, 255, 0.7)
}

[data-bs-theme="dark"] .fbrx-definition-strip,
[data-bs-theme="dark"] .fbrx-emotion-card,
[data-bs-theme="dark"] .fbrx-server-guide-card,
[data-bs-theme="dark"] .fbrx-howto-step,
[data-bs-theme="dark"] .fbrx-organic-points article,
[data-bs-theme="dark"] .fbrx-measure-table,
[data-bs-theme="dark"] .fbrx-faq-aside,
[data-bs-theme="dark"] .fbrx-faq .fbrx-faq-item,
[data-bs-theme="dark"] .fbrx-related-card,
[data-bs-theme="dark"] .fbrx-img-card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.09)
}

[data-bs-theme="dark"] .fbrx-definition-strip>div {
  background: rgba(255, 255, 255, 0.035)
}

[data-bs-theme="dark"] .fbrx-definition-strip strong,
[data-bs-theme="dark"] .fbrx-definition-note strong {
  color: #fff
}

[data-bs-theme="dark"] .fbrx-definition-strip span,
[data-bs-theme="dark"] .fbrx-img-caption {
  color: rgba(235, 242, 255, 0.55)
}

[data-bs-theme="dark"] .fbrx-definition-note,
[data-bs-theme="dark"] .fbrx-measure-question {
  background: rgba(24, 119, 242, 0.08);
  border-color: rgba(115, 170, 255, 0.16)
}

[data-bs-theme="dark"] .fbrx-definition-note p,
[data-bs-theme="dark"] .fbrx-boundary-summary,
[data-bs-theme="dark"] .fbrx-server-guide-note p,
[data-bs-theme="dark"] .fbrx-measure-question p,
[data-bs-theme="dark"] .fbrx-faq-aside p {
  color: rgba(235, 242, 255, 0.68)
}

[data-bs-theme="dark"] .fbrx-boundary-card.is-helpful {
  background: rgba(25, 165, 111, 0.1);
  border-color: rgba(25, 165, 111, 0.2)
}

[data-bs-theme="dark"] .fbrx-boundary-card.is-limit {
  background: rgba(240, 40, 73, 0.09);
  border-color: rgba(240, 40, 73, 0.19)
}

[data-bs-theme="dark"] .fbrx-boundary-card h3,
[data-bs-theme="dark"] .fbrx-definition-strip strong {
  color: #F5F8FF
}

[data-bs-theme="dark"] .fbrx-boundary-summary {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.09)
}

[data-bs-theme="dark"] .fbrx-server-guide-note {
  background: rgba(224, 123, 22, 0.08);
  border-color: rgba(255, 181, 38, 0.18)
}

[data-bs-theme="dark"] .fbrx-checklist-shell {
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28)
}

[data-bs-theme="dark"] .fbrx-measure-row>* {
  color: rgba(235, 242, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.07)
}

[data-bs-theme="dark"] .fbrx-measure-row.is-head>* {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14)
}

[data-bs-theme="dark"] .fbrx-faq .accordion-button {
  background: rgba(255, 255, 255, 0.035)
}

[data-bs-theme="dark"] .fbrx-faq .accordion-button:not(.collapsed) {
  color: #9BC3FF;
  background: rgba(24, 119, 242, 0.09)
}

/* Tablet and mobile layout. */
@media (max-width: 1199.98px) {
  .fbrx-definition-grid,
  .fbrx-organic-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 38px
  }

  .fbrx-definition-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .fbrx-emotion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .fbrx-measure-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr)
  }

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

@media (max-width: 991.98px) {
  .fbrx-col-form {
    margin-top: 0
  }

  .fbrx-col-illustration {
    padding-top: 0
  }

  .fbrx-definition-grid,
  .fbrx-emotion-heading,
  .fbrx-boundary-shell,
  .fbrx-organic-grid,
  .fbrx-measure-grid,
  .fbrx-faq-shell {
    grid-template-columns: 1fr
  }

  .fbrx-definition-media,
  .fbrx-emotion-heading>.fbrx-img-card,
  .fbrx-boundary-media,
  .fbrx-organic-media,
  .fbrx-measure-media {
    width: 100%;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto
  }

  .fbrx-boundary-media {
    order: 2
  }

  .fbrx-boundary-copy {
    order: 1
  }

  .fbrx-checklist-shell {
    grid-template-columns: 1fr
  }

  .fbrx-faq-heading {
    position: static;
    max-width: 760px
  }

  .fbrx-final-cta-shell {
    grid-template-columns: 1fr
  }

  .fbrx-final-cta-actions {
    justify-content: flex-start
  }
}

@media (max-width: 767.98px) {
  .fbrx-section {
    padding: 46px 0
  }

  .fbrx-section-title {
    font-size: 1.4rem
  }

  .fbrx-definition-strip,
  .fbrx-emotion-grid,
  .fbrx-server-guide-grid,
  .fbrx-boundary-columns,
  .fbrx-organic-points {
    grid-template-columns: 1fr
  }

  .fbrx-definition-strip {
    gap: 7px
  }

  .fbrx-definition-strip>div {
    text-align: left
  }

  .fbrx-howto-step,
  .fbrx-howto-step.is-reverse {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .fbrx-howto-step.is-reverse .fbrx-howto-media,
  .fbrx-howto-step.is-reverse .fbrx-howto-copy {
    order: initial
  }

  .fbrx-howto-copy,
  .fbrx-howto-step.is-reverse .fbrx-howto-copy {
    padding: 0 6px 7px
  }

  .fbrx-checklist-shell {
    padding: 26px 20px
  }

  .fbrx-measure-table {
    overflow-x: auto
  }

  .fbrx-measure-row {
    min-width: 650px
  }

  .fbrx-testimonials {
    padding: 52px 0 56px
  }

  .fbrx-testimonial-viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent)
  }

  .fbrx-testimonial-card {
    flex-basis: 310px;
    width: 310px
  }

  .fbrx-faq .accordion-button {
    padding: 15px;
    font-size: 0.84rem
  }

  .fbrx-faq .accordion-body {
    padding: 3px 15px 16px;
    font-size: 0.82rem
  }

  .fbrx-final-cta-actions {
    flex-direction: column;
    align-items: stretch
  }

  .fbrx-final-cta-actions a {
    width: 100%
  }
}

@media (max-width: 575.98px) {
  .fbrx-hero>.container-fluid,
  .fbrx-section>.container-fluid {
    padding-left: 15px;
    padding-right: 15px
  }

  .fbrx-stepper {
    gap: 3px
  }

  .fbrx-step {
    justify-content: center;
    gap: 0;
    font-size: 0;
    flex: 1
  }

  .fbrx-step-num {
    font-size: 0.65rem
  }

  .fbrx-form-header {
    align-items: flex-start
  }

  .fbrx-reaction-option label {
    padding: 9px 10px;
    font-size: 0.75rem
  }

  .fbrx-proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .fbrx-definition-grid,
  .fbrx-boundary-shell,
  .fbrx-organic-grid,
  .fbrx-measure-grid {
    gap: 25px
  }

  .fbrx-server-guide-card {
    padding: 18px;
    gap: 13px
  }

  .fbrx-server-guide-num {
    width: 42px;
    height: 42px;
    flex-basis: 42px
  }

  .fbrx-howto-step {
    padding: 12px;
    border-radius: 17px
  }

  .fbrx-img-zoom {
    right: 13px;
    bottom: 13px;
    padding: 7px 10px
  }

  .fbrx-checklist-items>li {
    padding: 13px
  }

  .fbrx-testimonial-card {
    flex-basis: min(286px, calc(100vw - 46px));
    width: min(286px, calc(100vw - 46px));
    padding: 18px
  }

  .fbrx-related-card {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    padding: 17px;
    gap: 11px
  }

  .fbrx-related-icon {
    width: 44px;
    height: 44px
  }

  .fbrx-final-cta-shell {
    padding: 25px 20px;
    border-radius: 20px
  }
}

@media (max-width: 390px) {
  .fbrx-glass-form {
    padding: 17px 13px
  }

  .fbrx-reactions-grid {
    gap: 6px
  }

  .fbrx-reaction-option label {
    gap: 5px;
    padding: 8px
  }

  .fbrx-reaction-option label img {
    width: 20px;
    height: 20px
  }

  .fbrx-form-row-2col {
    gap: 9px
  }

  .fbrx-checklist-shell {
    padding: 22px 16px
  }
}

/* Giữ thẻ ưu đãi dùng chung khỏi che các lựa chọn reaction trên màn hình nhỏ. */
@media (max-width: 767.98px) {
  #sb-bts-float {
    top: auto !important;
    right: 4px !important;
    bottom: 86px !important;
    left: auto !important;
    transform-origin: right bottom !important
  }

  #sb-bts-float.sb-bts-float-visible {
    transform: translateY(0) scale(.5) !important
  }

  #sb-bts-float.sb-bts-float-opening,
  #sb-bts-float.sb-bts-float-hidden {
    transform: translateY(8px) scale(.46) !important
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbrx-robot-img-sm,
  .fbrx-mini-1,
  .fbrx-mini-2,
  .fbrx-livefeed-dot,
  .fbrx-cta-btn::after,
  .fbrx-testimonial-row,
  .fbrx-anim-fadeIn,
  .fbrx-anim-slideUp,
  .fbrx-reaction-option input:checked+label img {
    animation: none !important
  }

  .fbrx-testimonial-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none
  }

  .fbrx-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }

  .fbrx-img-card,
  .fbrx-emotion-card,
  .fbrx-server-guide-card,
  .fbrx-related-card,
  .fbrx-cta-btn,
  .fbrx-final-cta-actions a {
    transition: none !important
  }
}
