body {
  overflow-x: hidden
}

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

.custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px 12px 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 {
  --fbvr-primary: #1877F2;
  --fbvr-primary-dark: #1565C0;
  --fbvr-secondary: #12BFA6;
  --fbvr-accent: #12BFA6;
  --fbvr-accent-light: #51D6C2;
  --fbvr-gold: #FFD700;
  --fbvr-love-red: #F33E58;
  --fbvr-glass: rgba(255, 255, 255, 0.08);
  --fbvr-glass-border: rgba(255, 255, 255, 0.14);
  --fbvr-gradient: linear-gradient(135deg, #0a1628 0%, #132d50 50%, #0a1628 100%);
  --fbvr-gradient-accent: linear-gradient(135deg, #1877F2 0%, #12BFA6 100%);
  --fbvr-gradient-mix: linear-gradient(135deg, #1877F2 0%, #12BFA6 100%);
  --fbvr-dark: #0a1628;
  --fbvr-dark2: #132d50;
  --fbvr-radius: 16px;
  --fbvr-radius-lg: 24px;
  --fbvr-shadow: 0 8px 32px rgba(24, 119, 242, 0.12);
  --fbvr-section-bg-alt: #f0f6ff;
  --fbvr-text: #555;
  --fbvr-heading: #1a1a2e;
  --fbvr-card-bg: #fff;
  --fbvr-card-border: rgba(0, 0, 0, 0.06);
  --fbvr-list-border: #eee;
  --fbvr-transition-properties: transform, opacity, visibility, color, background-color, border-color, box-shadow, max-height, height, width, padding, margin;
}

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

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

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

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

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

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

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

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

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

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

@keyframes fbvrFloat1 {

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

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

@keyframes fbvrFloat2 {

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

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

@keyframes fbvrDotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

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

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

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

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

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

  50% {
    transform: scale(1.15)
  }

  100% {
    transform: scale(1)
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-col-form {
  order: 0
}

.fbvr-col-illustration {
  order: 0
}

.fbvr-hero-info-col {
  order: 1
}

.fbvr-anim-fadeIn {
  animation: fbvrFadeIn 0.8s ease both
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-step {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.35s; transition-timing-function: ease;
  cursor: default;
  white-space: nowrap
}

.fbvr-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-property: var(--fbvr-transition-properties); transition-duration: 0.35s; transition-timing-function: ease;
  flex-shrink: 0
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-glass-form .custom-select-trigger #country-render img {
  width: 20px;
  height: 15px;
  margin-right: 8px;
  object-fit: cover;
  flex: 0 0 20px;
}

.fbvr-server-trigger {
  position: relative
}

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

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

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

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

.fbvr-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-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
  outline: none
}

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

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

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

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

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

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

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

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

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

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

.fbvr-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-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

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

.fbvr-server-desc.has-content {
  display: block;
}

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

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

.fbvr-reaction-option {
  position: relative
}

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

.fbvr-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-property: var(--fbvr-transition-properties); transition-duration: 0.25s; transition-timing-function: ease;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500
}

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

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

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

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

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

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

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

.fbvr-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: fbvrShimmer 3s infinite
}

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

.fbvr-trust-mini-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 650;
  padding: 5px 9px;
  border: 1px solid rgba(18, 191, 166, .14);
  border-radius: 999px;
  background: rgba(18, 191, 166, .06)
}

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

/* Glass form select override */
.fbvr-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-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
  font-size: 0.88rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 32px;
  max-width: 100%;
  box-sizing: border-box;
  position: relative
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fb-mini-1 {
  top: -2px;
  right: -8px
}

.fb-mini-2 {
  bottom: 5px;
  left: -10px
}

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

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

.fbvr-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-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

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

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

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

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

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

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

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

.fbvr-livefeed-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 175px;
  overflow: hidden
}

.fbvr-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: fbvrFeedSlideIn 0.5s ease-out
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-img-card {
  background: var(--fbvr-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-property: var(--fbvr-transition-properties); transition-duration: 0.4s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden
}

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

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

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

.fbvr-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.6s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-guide-card {
  background: var(--fbvr-card-bg);
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid var(--fbvr-card-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.35s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-tip-card {
  background: var(--fbvr-card-bg);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.35s; transition-timing-function: ease;
  border: 1px solid var(--fbvr-card-border);
  border-top: 3px solid var(--fbvr-primary)
}

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

.fbvr-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-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

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

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

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

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

.fbvr-testi-track {
  display: flex;
  gap: 20px;
  width: max-content
}

.fbvr-testi-row-1 {
  animation: fbvrMarquee 60s linear infinite
}

.fbvr-testi-row-2 {
  margin-top: 16px
}

.fbvr-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-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-related-card {
  background: var(--fbvr-card-bg);
  border-radius: var(--fbvr-radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--fbvr-card-border);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.35s; transition-timing-function: ease;
  text-decoration: none;
  display: block
}

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

.fbvr-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(--fbvr-primary);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

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

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

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

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

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

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

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

/* ========== LIGHTBOX ========== */
.fbvr-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-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
  cursor: pointer
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fbvr-fbadge {
    display: none
  }

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

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

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

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

  .fbvr-section {
    padding: 12px 0
  }

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

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

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

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

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

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

.fbvr-hero-anchor a {
  color: var(--fbvr-accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed var(--fbvr-accent);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

/* Hero Info Card */
.fbvr-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: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 16px;
  align-items: stretch;
  position: relative;
  overflow: hidden
}

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

.fbvr-hero-info-card .fbvr-hero-desc {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: none;
  margin-top: 0
}

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

.fbvr-hero-info-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px
}

.fbvr-hero-info-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(18, 191, 166, .24);
  border-radius: 9px;
  background: rgba(18, 191, 166, .1);
  color: #72ead8;
  font-size: .75rem;
  font-weight: 750;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease
}

.fbvr-hero-info-cta:hover {
  color: #fff;
  border-color: rgba(18, 191, 166, .42);
  background: rgba(18, 191, 166, .18)
}

/* === Pricing Table === */
.fbvr-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)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    transform: translateX(0)
  }
}

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

.fbvr-testi-track.fbvr-testi-row-2 {
  animation: fbvrTestiScrollReverse 80s linear infinite
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-content1-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 119, 242, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(24, 119, 242, 0.08);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.5s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  perspective: 1000px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-content1-crosslink a {
  color: var(--fbvr-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--fbvr-primary);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.2s; transition-timing-function: ease;
}

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

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

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

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

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

.fbvr-content1-algo-card {
  position: relative;
  background: var(--fbvr-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbvr-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.35s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-content2-card {
  position: relative;
  background: var(--fbvr-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbvr-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.35s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

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

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

.fbvr-content2-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-content4-card {
  position: relative;
  background: var(--fbvr-card-bg);
  border-radius: 16px;
  padding: 24px 20px 20px;
  border: 1px solid var(--fbvr-card-border);
  text-align: center;
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.35s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-content4-formula-card {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--fbvr-text);
  line-height: 1.5;
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Individual Tip Card */
.fbvr-content5-tip {
  position: relative;
  background: var(--fbvr-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbvr-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.35s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

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

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

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

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

/* Tip Icon */
.fbvr-content5-tip-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

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

.fbvr-content5-tip a {
  color: var(--fbvr-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--fbvr-primary);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.2s; transition-timing-function: ease;
}

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

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

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

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

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

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

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

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

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

.fbvr-content5-cta-body a {
  color: var(--fbvr-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--fbvr-primary);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.2s; transition-timing-function: ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-content8-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--fbvr-card-bg);
  border-radius: 16px;
  border: 1px solid var(--fbvr-card-border);
  border-left: 4px solid var(--item-accent, var(--fbvr-primary));
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

.fbvr-content8-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Base Card */
.fbvr-compare-card {
  position: relative;
  background: var(--fbvr-card-bg);
  border-radius: 20px;
  padding: 0;
  border: 1px solid var(--fbvr-card-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.4s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

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

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

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

.fbvr-compare-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-price-card {
  position: relative;
  background: var(--fbvr-card-bg);
  border-radius: 20px;
  border: 1px solid var(--fbvr-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.4s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-calc-example {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
  border: 1px solid transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-strategy-card {
  position: relative;
  background: var(--fbvr-card-bg);
  border: 1px solid var(--fbvr-card-border);
  border-radius: 20px;
  padding: 28px 22px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.4s; transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

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

.fbvr-strategy-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvr-golden-hours__slot {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  border: 1px solid transparent;
  transition-property: var(--fbvr-transition-properties); transition-duration: 0.3s; transition-timing-function: ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Mascot motion: subtle enough to keep the form easy to scan. */
.fbvr-robot-img-sm,
.fbvr-mascot-placeholder,
.fbvr-mascot-fallback {
  transform-origin: 50% 80%;
  animation: fbvrMascotFloat 4.8s ease-in-out infinite
}

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

  50% {
    transform: translate3d(0, -5px, 0) rotate(0.4deg)
  }
}

@keyframes fbvrBadgePulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.7
  }

  50% {
    transform: translateY(calc(-50% - 3px)) scale(1.03);
    opacity: 0.9
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbvr-robot-img-sm,
  .fbvr-mascot-placeholder,
  .fbvr-fbadge,
  .fb-mini-1,
  .fb-mini-2,
  .fb-mini-3 {
    animation: none !important;
    transition: none !important
  }
}

/* Reels V2 content and interaction refinements */
.fbvr-hero-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(24, 119, 242, .12);
  align-content: center;
}

.fbvr-hero-feature-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
  font-weight: 650;
  line-height: 1.45;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 9px;
  background: rgba(255, 255, 255, .035);
}

.fbvr-hero-feature-list i {
  color: #67d8ff;
  margin-top: 3px;
}

.fbvr-mascot-stage {
  min-height: 176px;
}

.fbvr-mascot-fallback {
  position: absolute;
  inset: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed rgba(24, 119, 242, .28);
  border-radius: 22px;
  color: var(--fbvr-primary);
  background: linear-gradient(145deg, rgba(24, 119, 242, .1), rgba(18, 191, 166, .08));
  transition: opacity .25s ease;
}

.fbvr-mascot-fallback i {
  font-size: 3.1rem;
}

.fbvr-mascot-fallback span {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fbvr-mascot-stage.has-mascot .fbvr-mascot-fallback {
  opacity: 0;
}

.fbvr-robot-img-sm {
  position: relative;
  z-index: 2;
}

.fbvr-pstat-num.fbvr-pstat-word {
  font-size: clamp(.78rem, 1.2vw, 1rem);
  line-height: 1.15;
}

.fbvr-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
  color: var(--fbvr-primary);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.fbvr-section-kicker i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(24, 119, 242, .1);
}

.fbvr-section-kicker-center {
  display: flex;
  justify-content: center;
}

.fbvr-content1-img-wrap,
.fbvr-content2-intro-img button,
.fbvr-content3-step-thumb {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: inherit;
}

.fbvr-content1-img-wrap:focus-visible,
.fbvr-content2-intro-img button:focus-visible,
.fbvr-content3-step-thumb:focus-visible {
  outline: 3px solid rgba(24, 119, 242, .45);
  outline-offset: 4px;
}

.fbvr-content2-intro-img button,
.fbvr-content2-intro-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.fbvr-content2-intro-img img {
  object-fit: cover;
}

.fbvr-content1-algo-card,
.fbvr-content2-card,
.fbvr-strategy-card,
.fbvr-content4-card,
.fbvr-related-card {
  min-width: 0;
}

.fbvr-content2-card h3,
.fbvr-strategy-card h3,
.fbvr-related-card h3,
.fbvr-content3-step-info h3 {
  color: var(--fbvr-heading);
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 8px;
}

.fbvr-content1-algo-title {
  display: block;
}

.fbvr-content-split {
  align-items: stretch;
}

.fbvr-content-split .fbvr-content1-text-side {
  flex: 1 1 67%;
}

.fbvr-content-split .fbvr-content1-img-side {
  flex: 1 1 33%;
}

.fbvr-content-split .fbvr-strategy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fbvr-content-split .fbvr-content1-img-wrap,
.fbvr-content-split .fbvr-content1-img {
  height: 100%;
  min-height: 560px;
}

.fbvr-content-split .fbvr-content1-img {
  object-fit: cover;
}

.fbvr-content4-card p {
  color: var(--fbvr-text);
  font-size: .84rem;
  line-height: 1.65;
  margin: 14px 0 0;
}

.fbvr-content4-server-tag i {
  margin: 0;
}

.fbvr-inline-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--fbvr-primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.fbvr-inline-cta:hover {
  color: #fff;
  transform: translateY(-2px);
}

.fbvr-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--fbvr-primary), #12BFA6);
}

.fbvr-content3-step-thumb {
  overflow: hidden;
  border-radius: 14px;
}

.fbvr-content3-step-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fbvr-content1-header-reverse {
  flex-direction: row-reverse;
}

.fbvr-tracking-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.fbvr-tracking-steps > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--fbvr-card-border);
  border-radius: 14px;
  background: var(--fbvr-card-bg);
}

.fbvr-tracking-steps > div > span {
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(24, 119, 242, .11);
  color: var(--fbvr-primary);
  font-weight: 900;
}

.fbvr-tracking-steps p {
  margin: 0;
  color: var(--fbvr-text);
  font-size: .82rem;
  line-height: 1.55;
}

.fbvr-scope-card {
  flex: 1 1 47%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--fbvr-card-border);
  border-radius: 22px;
  box-shadow: var(--fbvr-shadow);
}

.fbvr-scope-column {
  padding: clamp(22px, 3vw, 34px);
  background: var(--fbvr-card-bg);
}

.fbvr-scope-column + .fbvr-scope-column {
  border-left: 1px solid var(--fbvr-card-border);
}

.fbvr-scope-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 13px;
}

.fbvr-scope-do .fbvr-scope-icon {
  color: #087F6E;
  background: rgba(18, 191, 166, .13);
}

.fbvr-scope-not .fbvr-scope-icon {
  color: #B45309;
  background: rgba(245, 158, 11, .13);
}

.fbvr-scope-column h3 {
  color: var(--fbvr-heading);
  font-size: 1rem;
  font-weight: 850;
  margin: 0 0 14px;
}

.fbvr-scope-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fbvr-scope-column li {
  position: relative;
  padding-left: 17px;
  color: var(--fbvr-text);
  font-size: .82rem;
  line-height: 1.5;
}

.fbvr-scope-column li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #12BFA6;
}

.fbvr-scope-not li::before {
  background: #F59E0B;
}

.fbvr-testimonials {
  padding: clamp(54px, 7vw, 82px) 0;
}

.fbvr-testimonials .fbvr-section-desc {
  color: rgba(255, 255, 255, .74);
}

.fbvr-testimonials .fbvr-section-kicker {
  color: #7DD3FC;
}

.fbvr-testimonials .fbvr-section-kicker i {
  background: rgba(125, 211, 252, .13);
}

.fbvr-testi-text {
  margin: 0;
}

.fbvr-faq {
  width: min(980px, 100%);
  margin: 28px auto 0;
}

.fbvr-faq-item {
  margin-bottom: 11px;
  overflow: hidden;
  border: 1px solid var(--fbvr-card-border);
  border-radius: 15px;
  background: var(--fbvr-card-bg);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.fbvr-faq-item.active {
  border-color: rgba(24, 119, 242, .3);
  box-shadow: 0 12px 28px rgba(24, 119, 242, .08);
}

.fbvr-faq-heading {
  margin: 0;
}

.fbvr-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--fbvr-heading);
  text-align: left;
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.5;
}

.fbvr-faq-question i {
  flex: 0 0 auto;
  color: var(--fbvr-primary);
  transition: transform .25s ease;
}

.fbvr-faq-item.active .fbvr-faq-question i {
  transform: rotate(180deg);
}

.fbvr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.fbvr-faq-item.active .fbvr-faq-answer {
  max-height: 420px;
}

.fbvr-faq-answer > div {
  padding: 0 20px 18px;
}

.fbvr-faq-answer p {
  margin: 0;
  color: var(--fbvr-text);
  font-size: .86rem;
  line-height: 1.72;
}

.fbvr-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fbvr-cta-final-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 1.6rem;
}

.fbvr-lightbox-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 94vw;
}

.fbvr-lightbox-inner p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  text-align: center;
  font-size: .88rem;
  line-height: 1.55;
}

body.fbvr-lightbox-open {
  overflow: hidden;
}

.fbvr-order-dialog .modal-content {
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, .12);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
}

.fbvr-order-dialog .modal-header,
.fbvr-order-dialog .modal-footer {
  border-color: rgba(24, 119, 242, .1);
}

.fbvr-order-dialog .modal-title {
  color: var(--fbvr-heading);
  font-size: 1.08rem;
  font-weight: 850;
}

.fbvr-order-dialog .modal-body p {
  margin: 0;
  color: var(--fbvr-text);
  line-height: 1.65;
}

.fbvr-order-dialog-close {
  min-width: 110px;
  border: 0;
  border-radius: 10px;
  background: var(--fbvr-gradient-accent);
  color: #fff;
  font-weight: 800;
}

.fbvr-order-dialog-close:hover,
.fbvr-order-dialog-close:focus {
  color: #fff;
  box-shadow: 0 10px 24px rgba(24, 119, 242, .2);
}

.fbvr-order-dialog[data-state="error"] .modal-header {
  border-top: 4px solid #ef4444;
}

.fbvr-order-dialog[data-state="success"] .modal-header {
  border-top: 4px solid var(--fbvr-secondary);
}

@media (max-width: 1199.98px) {
  .fbvr-content-split {
    flex-direction: column;
  }

  .fbvr-content-split .fbvr-content1-img-wrap,
  .fbvr-content-split .fbvr-content1-img {
    min-height: 420px;
  }

  .fbvr-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .fbvr-content1-header-reverse {
    flex-direction: column;
  }

  .fbvr-scope-card {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .fbvr-stepper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2px;
    padding: 0;
  }

  .fbvr-step {
    min-width: 0;
    justify-content: center;
    gap: 2px;
    font-size: .55rem;
  }

  .fbvr-step-num {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    font-size: .55rem;
  }

  .fbvr-hero-feature-list,
  .fbvr-content-split .fbvr-strategy-grid,
  .fbvr-tracking-steps,
  .fbvr-scope-card,
  .fbvr-related-grid {
    grid-template-columns: 1fr;
  }

  .fbvr-hero-info-card {
    grid-template-columns: 1fr;
  }

  .fbvr-hero-feature-list {
    padding-left: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(24, 119, 242, .12);
    border-left: 0;
  }

  .fbvr-scope-column + .fbvr-scope-column {
    border-top: 1px solid var(--fbvr-card-border);
    border-left: 0;
  }

  .fbvr-content-split .fbvr-content1-img-wrap,
  .fbvr-content-split .fbvr-content1-img {
    min-height: 300px;
  }

  .fbvr-inline-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Keep the screenshot readable without squeezing the written instruction. */
.fbvr-content3-timeline {
  max-width: 1080px;
}

.fbvr-content3-step-thumb {
  width: 62%;
  flex: 0 0 62%;
  aspect-ratio: 3 / 2;
}

.fbvr-content3-step-info {
  flex: 1 1 38%;
  min-width: 0;
  padding: 8px 6px 4px 0;
}

@media (max-width: 767.98px) {
  .fbvr-content3-step-content {
    flex-direction: column;
  }

  .fbvr-content3-step-thumb {
    width: 100%;
    max-width: none;
    flex-basis: auto;
  }

  .fbvr-content3-step-info {
    width: 100%;
    padding: 2px 2px 4px;
  }
}

/* Preserve the complete 3:2 SEO image instead of cropping its subject and text. */
#cach-tang-view-reels-facebook-tu-nhien .fbvr-content1-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

#cach-tang-view-reels-facebook-tu-nhien .fbvr-content1-text-side {
  order: 2;
  width: 100%;
}

#cach-tang-view-reels-facebook-tu-nhien .fbvr-content1-img-side {
  order: 1;
  width: min(100%, 920px);
  margin: 0 auto;
}

#cach-tang-view-reels-facebook-tu-nhien .fbvr-strategy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
}

#cach-tang-view-reels-facebook-tu-nhien .fbvr-content1-img-wrap {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
}

#cach-tang-view-reels-facebook-tu-nhien .fbvr-content1-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 991.98px) {
  #cach-tang-view-reels-facebook-tu-nhien .fbvr-strategy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  #cach-tang-view-reels-facebook-tu-nhien .fbvr-content1-header {
    gap: 16px;
  }

  #cach-tang-view-reels-facebook-tu-nhien .fbvr-strategy-grid {
    grid-template-columns: 1fr;
  }
}
