body {
  overflow-x: hidden
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fbvsFloat1 {

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

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

@keyframes fbvsFloat2 {

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

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

@keyframes fbvsDotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

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

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

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

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

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

  50% {
    transform: scale(1.15)
  }

  100% {
    transform: scale(1)
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-col-form {
  order: 0
}

.fbvs-col-illustration {
  order: 0
}

.fbvs-anim-fadeIn {
  animation: fbvsFadeIn 0.8s ease both
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-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: all 0.35s ease;
  flex-shrink: 0
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-server-trigger {
  position: relative
}

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

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

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

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

.fbvs-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: all 0.3s ease;
  outline: none
}

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

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

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

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

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

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

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

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

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

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

.fbvs-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: all 0.3s ease
}

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

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

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

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

.fbvs-reaction-option {
  position: relative
}

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

.fbvs-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: all 0.25s ease;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500
}

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

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

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

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

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

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

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

.fbvs-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: fbvsShimmer 3s infinite
}

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

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

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

/* Glass form select override */
.fbvs-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: all 0.3s;
  font-size: 0.88rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 32px
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-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: all 0.3s ease
}

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

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

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

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

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

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

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

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

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

.fbvs-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: fbvsFeedSlideIn 0.5s ease-out
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-img-card {
  background: var(--fbvs-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: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-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: all 0.3s
}

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

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

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

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

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

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

.fbvs-testi-row-1 {
  animation: fbvsMarquee 60s linear infinite
}

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

.fbvs-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: all 0.3s
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-related-card {
  background: var(--fbvs-card-bg);
  border-radius: var(--fbvs-radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--fbvs-card-border);
  transition: all 0.35s;
  text-decoration: none;
  display: block
}

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

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

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

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

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

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

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

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

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

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

/* ========== LIGHTBOX ========== */
.fbvs-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: all 0.3s;
  cursor: pointer
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fbvs-fbadge {
    display: none
  }

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

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

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

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

  .fbvs-section {
    padding: 12px 0
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    transform: translateX(0)
  }
}

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

.fbvs-testi-track.fbvs-testi-row-2 {
  animation: fbvsTestiScrollReverse 80s linear infinite
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-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);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.fbvs-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(--fbvs-primary);
  font-size: 1.1rem;
  border: 1px solid rgba(24, 119, 242, 0.2);
}

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

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

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

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

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

.fbvs-seo-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"] .fbvs-seo-visual::before {
  background: radial-gradient(circle, rgba(24, 119, 242, 0.15) 0%, transparent 70%);
}

.fbvs-seo-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"] .fbvs-seo-img {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

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

  .fbvs-seo-visual {
    padding: 10px 0 0;
    margin-top: 10px;
  }
}

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

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

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

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

.fbvs-seo1-intro p {
  margin-bottom: 14px;
}

.fbvs-seo1-intro strong {
  color: var(--fbvs-heading);
}

.fbvs-seo1-img-side {
  position: relative;
  z-index: 1;
}

.fbvs-seo1-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: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  perspective: 1000px;
}

.fbvs-seo1-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;
}

.fbvs-seo1-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;
}

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

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

.fbvs-seo1-img-wrap:hover .fbvs-seo1-img {
  transform: scale(1.03);
}

/* Highlight Strip */
.fbvs-seo1-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(--fbvs-primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

.fbvs-seo1-highlight-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--fbvs-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);
}

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

.fbvs-seo1-highlight strong {
  color: var(--fbvs-heading);
}

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

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

.fbvs-seo1-crosslink a {
  color: var(--fbvs-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--fbvs-primary);
  transition: all 0.2s;
}

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

/* Algorithm Section */
.fbvs-seo1-algo {
  position: relative;
}

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

.fbvs-seo1-algo-title i {
  color: #fff;
  background: var(--fbvs-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;
}

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

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

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

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

.fbvs-seo1-algo-card:hover::before {
  opacity: 1;
}

.fbvs-seo1-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;
}

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

.fbvs-seo1-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(--fbvs-primary);
  font-size: 1.2rem;
  margin-bottom: 14px;
  border: 1px solid rgba(24, 119, 242, 0.15);
  transition: all 0.3s;
}

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

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

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

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

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

.fbvs-seo1-algo-card a:hover {
  text-decoration: underline;
}

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

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

[data-bs-theme="dark"] .fbvs-seo1-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"] .fbvs-seo1-highlight {
  background: rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.2);
}

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

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

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

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

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

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

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

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

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

  .fbvs-seo1-img-side {
    max-width: 480px;
    margin: 0 auto;
  }

  .fbvs-seo1-magazine {
    padding: 32px 0 28px;
  }
}

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

  .fbvs-seo1-text-side .fbvs-section-title {
    font-size: 1.3rem;
  }

  .fbvs-seo1-algo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fbvs-seo1-highlight {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .fbvs-seo1-magazine {
    padding: 24px 0 20px;
  }
}

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

.fbvs-seo2-intro {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: center;
  margin: 28px 0 36px;
  background: var(--fbvs-card-bg);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid var(--fbvs-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: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fbvs-seo2-intro-img {
  border-radius: 16px;
  overflow: hidden;
}

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

.fbvs-seo2-intro:hover .fbvs-seo2-intro-img img {
  transform: scale(1.04);
}

.fbvs-seo2-intro-text {
  padding: 8px 12px 8px 0;
}

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

.fbvs-seo2-intro-text strong {
  color: var(--fbvs-heading);
}

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

.fbvs-seo2-card {
  position: relative;
  background: var(--fbvs-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbvs-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

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

.fbvs-seo2-card:hover::before {
  opacity: 1;
}

.fbvs-seo2-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: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

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

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

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

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

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

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

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

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

  .fbvs-seo2-intro-img {
    max-width: 420px;
    margin: 0 auto;
  }

  .fbvs-seo2-intro-text {
    padding: 0 8px 8px;
  }

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

  .fbvs-seo2-benefits {
    padding: 32px 0 28px;
  }
}

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

  .fbvs-seo2-benefits {
    padding: 24px 0 20px;
  }

  .fbvs-seo2-card {
    padding: 22px 20px 20px;
  }
}

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

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

.fbvs-seo4-card {
  position: relative;
  background: var(--fbvs-card-bg);
  border-radius: 16px;
  padding: 24px 20px 20px;
  border: 1px solid var(--fbvs-card-border);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

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

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

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

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

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

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

.fbvs-seo4-card:hover::before {
  height: 6px;
}

.fbvs-seo4-card-header {
  margin-bottom: 12px;
}

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

.fbvs-seo4-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(--fbvs-primary);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

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

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

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

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

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

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

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

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

.fbvs-seo4-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fbvs-seo4-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;
}

.fbvs-seo4-detail span {
  color: var(--fbvs-text);
  opacity: 0.6;
}

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

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

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

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

.fbvs-seo4-best-badge i {
  font-size: 0.6rem;
}

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

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

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

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

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

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

.fbvs-seo4-formula-card {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--fbvs-text);
  line-height: 1.5;
  transition: all 0.3s;
}

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

.fbvs-seo4-formula-card strong {
  color: var(--fbvs-heading);
}

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

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

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

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

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

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

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

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

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

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

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

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

  .fbvs-seo4-formula-grid {
    grid-template-columns: 1fr;
  }

  .fbvs-seo4-pricing {
    padding: 32px 0 28px;
  }
}

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

  .fbvs-seo4-card {
    padding: 20px 18px 18px;
  }

  .fbvs-seo4-pricing {
    padding: 24px 0 20px;
  }
}

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

/* Hero Card: Image + Text side-by-side */
.fbvs-seo5-hero {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--fbvs-card-bg);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--fbvs-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: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.fbvs-seo5-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;
}

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

.fbvs-seo5-hero:hover .fbvs-seo5-hero-img img {
  transform: scale(1.04);
}

.fbvs-seo5-hero-text {
  padding: 8px 12px 8px 0;
}

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

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

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

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

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

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

.fbvs-seo5-tip:hover::before {
  opacity: 1;
}

/* Tip Number Badge (watermark) */
.fbvs-seo5-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;
}

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

/* Tip Icon */
.fbvs-seo5-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: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

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

.fbvs-seo5-tip a {
  color: var(--fbvs-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--fbvs-primary);
  transition: all 0.2s;
}

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

/* Tip Inline Image (for Tip 1) */
.fbvs-seo5-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);
}

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

.fbvs-seo5-tip:hover .fbvs-seo5-tip-img img {
  transform: scale(1.03);
}

/* CTA Callout Banner */
.fbvs-seo5-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(--fbvs-primary);
  transition: all 0.3s ease;
}

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

.fbvs-seo5-cta-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--fbvs-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);
}

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

.fbvs-seo5-cta-body strong {
  color: var(--fbvs-heading);
}

.fbvs-seo5-cta-body a {
  color: var(--fbvs-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--fbvs-primary);
  transition: all 0.2s;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .fbvs-seo5-hero-img {
    max-width: 420px;
    margin: 0 auto;
  }

  .fbvs-seo5-hero-text {
    padding: 0 8px 8px;
  }

  .fbvs-seo5-organic {
    padding: 32px 0 28px;
  }
}

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

  .fbvs-seo5-tip {
    padding: 22px 20px 20px;
  }

  .fbvs-seo5-hero-text .fbvs-section-title {
    font-size: 1.25rem;
  }

  .fbvs-seo5-cta {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .fbvs-seo5-organic {
    padding: 24px 0 20px;
  }
}

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

  .fbvs-seo5-tip {
    padding: 18px 16px 16px;
  }
}

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

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

.fbvs-seo3-step {
  display: flex;
  gap: 0;
  position: relative;
}

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

.fbvs-seo3-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fbvs-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;
}

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

.fbvs-seo3-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;
}

.fbvs-seo3-step-last .fbvs-seo3-step-line {
  display: none;
}

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

.fbvs-seo3-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 */
.fbvs-seo3-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);
}

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

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

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

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

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

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

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

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

[data-bs-theme="dark"] .fbvs-seo3-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) {
  .fbvs-seo3-step-thumb {
    width: 120px;
  }

  .fbvs-seo3-step-content {
    gap: 14px;
    padding: 14px;
  }

  .fbvs-seo3-howto {
    padding: 32px 0 24px;
  }

  .fbvs-seo3-step-marker {
    width: 48px;
  }

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

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

  .fbvs-seo3-step-thumb {
    width: 100%;
    max-width: 280px;
  }

  .fbvs-seo3-step-marker {
    width: 40px;
  }

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

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

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

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

.fbvs-seo8-header-img {
  border-radius: 16px;
  overflow: hidden;
}

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

.fbvs-seo8-header:hover .fbvs-seo8-header-img img {
  transform: scale(1.04);
}

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

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

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

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

.fbvs-seo8-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(--fbvs-primary));
}

.fbvs-seo8-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: all 0.3s;
}

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

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

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

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

.fbvs-seo8-item-body a:hover {
  border-bottom-style: solid;
}

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

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

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

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

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

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

  .fbvs-seo8-header-img {
    max-width: 380px;
    margin: 0 auto;
  }

  .fbvs-seo8-notes {
    padding: 32px 0 28px;
  }
}

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

  .fbvs-seo8-header {
    padding: 16px;
  }

  .fbvs-seo8-header-text .fbvs-section-title {
    font-size: 1.2rem;
  }
}

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

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

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

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

/* Recommended Card — Special */
.fbvs-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);
}

.fbvs-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 */
.fbvs-compare-card--warning {
  border-color: rgba(255, 152, 0, 0.2);
}

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

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

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

/* Badge (Recommended) */
.fbvs-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 */
.fbvs-compare-card__header {
  padding: 28px 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--fbvs-card-border);
}

.fbvs-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: all 0.3s;
}

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

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

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

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

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

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

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

.fbvs-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(--fbvs-text);
  transition: background 0.2s;
}

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

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

.fbvs-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;
}

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

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

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

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

/* Verdict Footer */
.fbvs-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;
}

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

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

.fbvs-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 */
.fbvs-compare-img {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--fbvs-card-border);
  background: var(--fbvs-card-bg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[data-bs-theme="dark"] .fbvs-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"] .fbvs-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"] .fbvs-compare-img {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .fbvs-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) {
  .fbvs-compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-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(--fbvs-text);
  line-height: 1.55;
}

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

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

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

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

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

[data-bs-theme="dark"] .fbvs-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"] .fbvs-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) {
  .fbvs-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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

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

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

.fbvs-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;
}

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

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

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

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

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

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

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

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

.fbvs-calc-example {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
}

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

.fbvs-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-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: all 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvs-golden-hours__slot {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[data-bs-theme="dark"] .fbvs-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) {
  .fbvs-golden-hours__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

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

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

  .fbvs-golden-hours__time {
    font-size: 1rem;
  }
}

/* =========================================================
   FACEBOOK VIEW STORY V2 — CUSTOM CONTENT SYSTEM
   Base copied from fblk-v2.css; every service class uses fbvs.
   ========================================================= */

.fbvs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.fbvs-section {
  padding: 76px 0;
}

.fbvs-section > .fbvs-container,
.fbvs-testimonials > .fbvs-container {
  position: relative;
  z-index: 1;
}

.fbvs-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--fbvs-primary);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fbvs-section-kicker i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: rgba(24, 119, 242, .1);
  color: var(--fbvs-primary);
}

.fbvs-section-kicker-center {
  display: flex;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.fbvs-card-icon,
.fbvs-metric-icon,
.fbvs-compare-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(24, 119, 242, .12), rgba(66, 183, 42, .1));
  color: var(--fbvs-primary);
  font-size: 1.05rem;
}

.fbvs-hero-info-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 22px 24px 22px 28px;
}

.fbvs-hero-info-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.fbvs-hero-info-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 16px;
  border: 1px solid rgba(66, 183, 42, .28);
  border-radius: 999px;
  background: rgba(66, 183, 42, .1);
  color: #91e381;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.fbvs-hero-info-cta:hover {
  transform: translateY(-2px);
  background: rgba(66, 183, 42, .18);
  color: #fff;
}

.fbvs-hero-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fbvs-hero-feature {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 13px;
  background: rgba(255, 255, 255, .035);
}

.fbvs-hero-feature > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: rgba(24, 119, 242, .15);
  color: #72aaff;
}

.fbvs-hero-feature strong,
.fbvs-hero-feature span {
  display: block;
}

.fbvs-hero-feature strong {
  color: #fff;
  font-size: .76rem;
  line-height: 1.35;
}

.fbvs-hero-feature span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .53);
  font-size: .68rem;
  line-height: 1.45;
}

.fbvs-pstat-word {
  min-height: 1.45em;
  font-size: .82rem !important;
  line-height: 1.25;
}

.fbvs-mascot-stage {
  isolation: isolate;
  animation: fbvsMascotStage 4.6s ease-in-out infinite;
}

.fbvs-mascot-fallback {
  position: relative;
  z-index: 2;
  display: flex;
  width: 104px;
  height: 104px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(24, 119, 242, .35);
  border-radius: 32px 32px 38px 38px;
  background: linear-gradient(145deg, rgba(24, 119, 242, .18), rgba(66, 183, 42, .08));
  color: #fff;
  box-shadow: 0 12px 36px rgba(24, 119, 242, .16);
}

.fbvs-mascot-fallback i {
  color: #75adff;
  font-size: 2rem;
}

.fbvs-mascot-fallback span {
  font-size: .58rem;
  font-weight: 800;
}

.fbvs-mascot-stage.has-mascot .fbvs-mascot-fallback {
  display: none;
}

.fbvs-mascot-stage .fbvs-robot-img-sm {
  transform-origin: 50% 82%;
}

@keyframes fbvsMascotStage {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

.fbvs-definition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 44px;
  align-items: center;
}

.fbvs-definition-copy > p,
.fbvs-evergreen-copy > p,
.fbvs-tracking-copy > p {
  color: var(--fbvs-text);
  font-size: .96rem;
  line-height: 1.82;
}

.fbvs-definition-copy > p strong,
.fbvs-evergreen-copy > p strong,
.fbvs-tracking-copy > p strong {
  color: var(--fbvs-heading);
}

.fbvs-definition-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(24, 119, 242, .14);
  border-left: 4px solid var(--fbvs-primary);
  border-radius: 15px;
  background: linear-gradient(110deg, rgba(24, 119, 242, .075), rgba(66, 183, 42, .035));
}

.fbvs-note-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--fbvs-gradient-accent);
  color: #fff;
}

.fbvs-definition-note p {
  margin: 0;
  color: var(--fbvs-text);
  font-size: .87rem;
  line-height: 1.7;
}

.fbvs-media-frame,
.fbvs-usecase-image,
.fbvs-howto-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(24, 119, 242, .15);
  border-radius: 22px;
  background: #dce9fb;
  box-shadow: 0 18px 48px rgba(19, 45, 80, .14);
  text-align: left;
}

.fbvs-media-frame {
  aspect-ratio: 3 / 2;
}

.fbvs-media-frame img,
.fbvs-usecase-image img,
.fbvs-howto-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.fbvs-media-frame:hover img,
.fbvs-usecase-image:hover img,
.fbvs-howto-image:hover img {
  transform: scale(1.035);
}

.fbvs-media-label,
.fbvs-howto-image > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 22, 40, .88);
  color: #fff;
  font-size: .7rem;
  font-weight: 750;
}

.fbvs-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.fbvs-metric-card,
.fbvs-usecase-card,
.fbvs-server-flow-card {
  border: 1px solid var(--fbvs-card-border);
  border-radius: 18px;
  background: var(--fbvs-card-bg);
  box-shadow: 0 10px 30px rgba(19, 45, 80, .06);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.fbvs-metric-card:hover,
.fbvs-usecase-card:hover,
.fbvs-server-flow-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 119, 242, .24);
  box-shadow: 0 16px 42px rgba(24, 119, 242, .1);
}

.fbvs-metric-card {
  padding: 22px;
}

.fbvs-metric-card h3,
.fbvs-usecase-card h3,
.fbvs-server-flow-card h3,
.fbvs-evergreen-step h3,
.fbvs-check-item h3 {
  margin: 14px 0 7px;
  color: var(--fbvs-heading);
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.35;
}

.fbvs-metric-card p,
.fbvs-usecase-card p,
.fbvs-server-flow-card p,
.fbvs-evergreen-step p,
.fbvs-check-item p {
  margin: 0;
  color: var(--fbvs-text);
  font-size: .84rem;
  line-height: 1.68;
}

.fbvs-usecases {
  background: linear-gradient(180deg, #f6f9ff, #eef5ff) !important;
}

.fbvs-usecase-feature {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  margin: 30px 0 22px;
  border: 1px solid rgba(24, 119, 242, .13);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(19, 45, 80, .09);
}

.fbvs-usecase-image {
  min-height: 320px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.fbvs-usecase-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
}

.fbvs-eyebrow {
  color: var(--fbvs-accent);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fbvs-usecase-feature h3 {
  margin: 10px 0 12px;
  color: var(--fbvs-heading);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.35;
}

.fbvs-usecase-feature p {
  margin: 0;
  color: var(--fbvs-text);
  font-size: .94rem;
  line-height: 1.78;
}

.fbvs-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fbvs-usecase-card {
  position: relative;
  padding: 23px;
}

.fbvs-usecase-card > span {
  display: block;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px dashed rgba(24, 119, 242, .16);
  color: var(--fbvs-primary);
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.5;
}

.fbvs-compare {
  background: linear-gradient(150deg, #0b1d36, #132d50) !important;
}

.fbvs-compare .fbvs-section-title,
.fbvs-compare .fbvs-section-kicker {
  color: #fff;
}

.fbvs-compare .fbvs-section-desc {
  color: rgba(255, 255, 255, .7);
}

.fbvs-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.fbvs-compare-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .16);
  transition: transform .3s ease, border-color .3s ease, background-color .3s ease;
}

.fbvs-compare-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, .35);
  background: rgba(255, 255, 255, .065);
}

.fbvs-compare-card-current {
  border-color: rgba(66, 183, 42, .34);
  background: linear-gradient(150deg, rgba(24, 119, 242, .14), rgba(66, 183, 42, .09));
}

.fbvs-compare-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fbvs-compare-top > span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .62);
  font-size: .65rem;
  font-weight: 750;
}

.fbvs-compare-card h3 {
  margin: 18px 0 9px;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 850;
}

.fbvs-compare-card > p {
  color: rgba(255, 255, 255, .7);
  font-size: .86rem;
  line-height: 1.7;
}

.fbvs-compare-card ul {
  margin: 6px 0 18px;
  padding: 0;
  list-style: none;
}

.fbvs-compare-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: .79rem;
  line-height: 1.55;
}

.fbvs-compare-card li::before {
  position: absolute;
  top: .5em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fbvs-accent);
  content: "";
}

.fbvs-compare-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #83b6ff;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.fbvs-evergreen {
  background: #fff !important;
}

.fbvs-evergreen-layout {
  display: grid;
  grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr);
  gap: 44px;
  align-items: start;
}

.fbvs-evergreen-copy {
  position: sticky;
  top: 90px;
}

.fbvs-evergreen-copy .fbvs-media-frame {
  margin-top: 24px;
}

.fbvs-evergreen-steps {
  display: grid;
  gap: 12px;
}

.fbvs-evergreen-step {
  display: grid;
  grid-template-columns: 42px 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(24, 119, 242, .11);
  border-radius: 18px;
  background: linear-gradient(100deg, #f8fbff, #fff);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.fbvs-evergreen-step:hover {
  transform: translateX(5px);
  border-color: rgba(24, 119, 242, .25);
  box-shadow: 0 12px 34px rgba(24, 119, 242, .08);
}

.fbvs-evergreen-step > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #0f2747;
  color: #fff;
  font-size: .72rem;
  font-weight: 850;
}

.fbvs-evergreen-step h3 {
  margin-top: 2px;
}

.fbvs-server-guide {
  background: linear-gradient(180deg, #edf5ff, #f9fbff) !important;
}

.fbvs-server-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.fbvs-server-flow::before {
  position: absolute;
  top: 44px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(24, 119, 242, .16), rgba(66, 183, 42, .35), rgba(24, 119, 242, .16));
  content: "";
}

.fbvs-server-flow-card {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.fbvs-flow-number {
  position: absolute;
  top: -13px;
  right: 18px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--fbvs-gradient-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 850;
  box-shadow: 0 6px 18px rgba(24, 119, 242, .2);
}

.fbvs-server-principle {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(24, 119, 242, .16);
  border-radius: 20px;
  background: #0f2747;
  box-shadow: 0 18px 46px rgba(15, 39, 71, .16);
}

.fbvs-server-principle-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 17px;
  background: rgba(255, 255, 255, .09);
  color: #79adfa;
  font-size: 1.25rem;
}

.fbvs-server-principle h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
}

.fbvs-server-principle p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: .83rem;
  line-height: 1.65;
}

.fbvs-server-principle a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--fbvs-primary);
  font-size: .75rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}

.fbvs-server-principle a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
}

.fbvs-howto {
  background: #fff !important;
}

.fbvs-howto-timeline {
  max-width: 1120px;
  margin: 36px auto 0;
}

.fbvs-howto-step {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
}

.fbvs-howto-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fbvs-howto-marker > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--fbvs-gradient-accent);
  color: #fff;
  font-size: .84rem;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(24, 119, 242, .2);
}

.fbvs-howto-marker > div {
  width: 2px;
  min-height: 100%;
  background: linear-gradient(var(--fbvs-primary), rgba(66, 183, 42, .18));
}

.fbvs-howto-step:last-child .fbvs-howto-marker > div {
  background: linear-gradient(var(--fbvs-primary), transparent);
}

.fbvs-howto-card {
  display: grid;
  grid-template-columns: minmax(300px, .94fr) minmax(0, 1.06fr);
  gap: 0;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(24, 119, 242, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(19, 45, 80, .08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.fbvs-howto-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 119, 242, .24);
  box-shadow: 0 20px 52px rgba(24, 119, 242, .12);
}

.fbvs-howto-image {
  min-height: 245px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.fbvs-howto-copy {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  align-content: center;
  padding: 28px 30px;
}

.fbvs-step-label {
  color: var(--fbvs-primary);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fbvs-howto-copy h3 {
  margin: 6px 0 9px;
  color: var(--fbvs-heading);
  font-size: 1.08rem;
  font-weight: 850;
}

.fbvs-howto-copy p {
  margin: 0;
  color: var(--fbvs-text);
  font-size: .87rem;
  line-height: 1.72;
}

.fbvs-checklist {
  background: linear-gradient(145deg, #0d213d, #132d50) !important;
}

.fbvs-checklist .fbvs-section-title,
.fbvs-checklist .fbvs-section-kicker {
  color: #fff;
}

.fbvs-checklist .fbvs-section-desc {
  color: rgba(255, 255, 255, .68);
}

.fbvs-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1080px;
  margin: 30px auto 0;
}

.fbvs-check-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 17px;
  background: rgba(255, 255, 255, .045);
  transition: transform .28s ease, border-color .28s ease, background-color .28s ease;
}

.fbvs-check-item:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 183, 42, .28);
  background: rgba(255, 255, 255, .065);
}

.fbvs-check-box {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(66, 183, 42, .32);
  border-radius: 13px;
  background: rgba(66, 183, 42, .12);
  color: #81df6e;
}

.fbvs-check-item h3 {
  margin-top: 1px;
  color: #fff;
}

.fbvs-check-item p {
  color: rgba(255, 255, 255, .66);
}

.fbvs-tracking {
  background: #f6f9ff !important;
}

.fbvs-tracking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: 34px;
  align-items: center;
}

.fbvs-order-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.fbvs-order-path > div {
  min-height: 94px;
  padding: 15px;
  border: 1px solid rgba(24, 119, 242, .13);
  border-radius: 15px;
  background: #fff;
}

.fbvs-order-path span,
.fbvs-order-path strong {
  display: block;
}

.fbvs-order-path span {
  margin-bottom: 6px;
  color: var(--fbvs-primary);
  font-size: .67rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fbvs-order-path strong {
  color: var(--fbvs-heading);
  font-size: .78rem;
  line-height: 1.5;
}

.fbvs-order-path > i {
  color: rgba(24, 119, 242, .4);
  font-size: .8rem;
}

.fbvs-scope-card {
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, .14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(19, 45, 80, .1);
}

.fbvs-scope-half {
  padding: 24px 26px;
}

.fbvs-scope-half + .fbvs-scope-half {
  border-top: 1px solid rgba(24, 119, 242, .1);
}

.fbvs-scope-in {
  background: linear-gradient(120deg, rgba(66, 183, 42, .07), transparent);
}

.fbvs-scope-out {
  background: linear-gradient(120deg, rgba(24, 119, 242, .055), transparent);
}

.fbvs-scope-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.fbvs-scope-heading > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(66, 183, 42, .12);
  color: var(--fbvs-accent);
}

.fbvs-scope-out .fbvs-scope-heading > i {
  background: rgba(24, 119, 242, .1);
  color: var(--fbvs-primary);
}

.fbvs-scope-heading h3 {
  margin: 0;
  color: var(--fbvs-heading);
  font-size: .93rem;
  font-weight: 850;
}

.fbvs-scope-half ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.fbvs-scope-half li {
  position: relative;
  margin: 9px 0;
  padding-left: 20px;
  color: var(--fbvs-text);
  font-size: .82rem;
  line-height: 1.55;
}

.fbvs-scope-half li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fbvs-accent);
  content: "";
}

.fbvs-scope-out li::before {
  background: var(--fbvs-primary);
}

.fbvs-insight-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(24, 119, 242, .13);
  border-radius: 18px;
  background: rgba(24, 119, 242, .13);
}

.fbvs-insight-strip > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 3px 10px;
  padding: 19px;
  background: #fff;
}

.fbvs-insight-strip i {
  grid-row: 1 / span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(24, 119, 242, .09);
  color: var(--fbvs-primary);
}

.fbvs-insight-strip span {
  color: var(--fbvs-heading);
  font-size: .75rem;
  font-weight: 850;
}

.fbvs-insight-strip strong {
  color: var(--fbvs-text);
  font-size: .67rem;
  font-weight: 600;
  line-height: 1.4;
}

.fbvs-testimonials {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: 72px 0;
  overflow: hidden;
}

.fbvs-testimonials .fbvs-section-kicker {
  color: #95bdff;
}

.fbvs-testimonials .fbvs-section-desc {
  color: rgba(255, 255, 255, .67);
}

.fbvs-testi-track {
  padding-left: 20px;
}

.fbvs-testi-card {
  width: min(390px, calc(100vw - 40px));
}

.fbvs-testi-text {
  margin-bottom: 0;
  font-style: normal;
  line-height: 1.72;
}

.fbvs-faq-section {
  background: linear-gradient(180deg, #f8fbff, #eef5ff) !important;
}

.fbvs-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 30px auto 0;
  align-items: start;
}

.fbvs-faq-item {
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, .12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(19, 45, 80, .05);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.fbvs-faq-item.active {
  border-color: rgba(24, 119, 242, .28);
  box-shadow: 0 12px 34px rgba(24, 119, 242, .09);
}

.fbvs-faq-heading {
  margin: 0;
}

.fbvs-faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--fbvs-heading);
  font-size: .87rem;
  font-weight: 800;
  line-height: 1.48;
  text-align: left;
}

.fbvs-faq-question i {
  flex: 0 0 auto;
  color: var(--fbvs-primary);
  font-size: .72rem;
  transition: transform .25s ease;
}

.fbvs-faq-item.active .fbvs-faq-question i {
  transform: rotate(180deg);
}

.fbvs-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .32s ease;
}

.fbvs-faq-item.active .fbvs-faq-answer {
  max-height: 420px;
}

.fbvs-faq-answer > div {
  padding: 0 20px 19px;
}

.fbvs-faq-answer p {
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid rgba(24, 119, 242, .09);
  color: var(--fbvs-text);
  font-size: .84rem;
  line-height: 1.72;
}

.fbvs-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fbvs-related-card h3 {
  margin: 0 0 7px;
  color: var(--fbvs-heading);
  font-size: .94rem;
  font-weight: 800;
}

.fbvs-related-and-cta {
  background: #fff !important;
}

.fbvs-related-and-cta .fbvs-cta-final {
  display: grid;
  width: auto;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 34px 0 0;
  padding: 28px 30px;
  border-radius: 24px;
  text-align: left;
  box-shadow: 0 20px 54px rgba(24, 119, 242, .18);
}

.fbvs-cta-final-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 20px;
  background: rgba(255, 255, 255, .13);
  color: #fff;
  font-size: 1.45rem;
}

.fbvs-cta-final h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 850;
  line-height: 1.35;
}

.fbvs-cta-final p {
  margin: 0;
}

.fbvs-lightbox-inner {
  display: flex;
  max-width: 94vw;
  max-height: 94vh;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fbvs-lightbox-inner p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .8rem;
  text-align: center;
}

.fbvs-order-dialog .modal-content {
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, .16);
  border-radius: 18px;
}

.fbvs-order-dialog-close {
  border-radius: 999px;
  background: var(--fbvs-primary);
  color: #fff;
}

body.fbvs-lightbox-open {
  overflow: hidden;
}

[data-bs-theme="dark"] .fbvs-usecases,
[data-bs-theme="dark"] .fbvs-evergreen,
[data-bs-theme="dark"] .fbvs-server-guide,
[data-bs-theme="dark"] .fbvs-howto,
[data-bs-theme="dark"] .fbvs-tracking,
[data-bs-theme="dark"] .fbvs-faq-section,
[data-bs-theme="dark"] .fbvs-related-and-cta {
  background: #15172a !important;
}

[data-bs-theme="dark"] .fbvs-definition-copy > p,
[data-bs-theme="dark"] .fbvs-evergreen-copy > p,
[data-bs-theme="dark"] .fbvs-tracking-copy > p,
[data-bs-theme="dark"] .fbvs-metric-card p,
[data-bs-theme="dark"] .fbvs-usecase-card p,
[data-bs-theme="dark"] .fbvs-server-flow-card p,
[data-bs-theme="dark"] .fbvs-evergreen-step p,
[data-bs-theme="dark"] .fbvs-howto-copy p,
[data-bs-theme="dark"] .fbvs-check-item p,
[data-bs-theme="dark"] .fbvs-scope-half li,
[data-bs-theme="dark"] .fbvs-faq-answer p {
  color: rgba(255, 255, 255, .68);
}

[data-bs-theme="dark"] .fbvs-definition-copy > p strong,
[data-bs-theme="dark"] .fbvs-evergreen-copy > p strong,
[data-bs-theme="dark"] .fbvs-metric-card h3,
[data-bs-theme="dark"] .fbvs-usecase-card h3,
[data-bs-theme="dark"] .fbvs-server-flow-card h3,
[data-bs-theme="dark"] .fbvs-evergreen-step h3,
[data-bs-theme="dark"] .fbvs-howto-copy h3,
[data-bs-theme="dark"] .fbvs-scope-heading h3,
[data-bs-theme="dark"] .fbvs-faq-question,
[data-bs-theme="dark"] .fbvs-related-card h3 {
  color: #fff;
}

[data-bs-theme="dark"] .fbvs-metric-card,
[data-bs-theme="dark"] .fbvs-usecase-card,
[data-bs-theme="dark"] .fbvs-server-flow-card,
[data-bs-theme="dark"] .fbvs-evergreen-step,
[data-bs-theme="dark"] .fbvs-howto-card,
[data-bs-theme="dark"] .fbvs-scope-card,
[data-bs-theme="dark"] .fbvs-faq-item,
[data-bs-theme="dark"] .fbvs-order-path > div,
[data-bs-theme="dark"] .fbvs-insight-strip > div,
[data-bs-theme="dark"] .fbvs-usecase-feature {
  border-color: rgba(255, 255, 255, .08);
  background: #20243b;
}

[data-bs-theme="dark"] .fbvs-definition-note {
  background: rgba(24, 119, 242, .08);
}

[data-bs-theme="dark"] .fbvs-definition-note p,
[data-bs-theme="dark"] .fbvs-usecase-feature p,
[data-bs-theme="dark"] .fbvs-order-path strong,
[data-bs-theme="dark"] .fbvs-insight-strip strong {
  color: rgba(255, 255, 255, .67);
}

[data-bs-theme="dark"] .fbvs-usecase-feature h3,
[data-bs-theme="dark"] .fbvs-order-path span,
[data-bs-theme="dark"] .fbvs-insight-strip span {
  color: #fff;
}

@media (max-width: 1199px) {
  .fbvs-definition-grid,
  .fbvs-evergreen-layout,
  .fbvs-tracking-grid {
    gap: 30px;
  }

  .fbvs-metric-grid,
  .fbvs-server-flow,
  .fbvs-insight-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fbvs-server-flow::before {
    display: none;
  }

  .fbvs-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .fbvs-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .fbvs-section {
    padding: 62px 0;
  }

  .fbvs-hero-info-card,
  .fbvs-definition-grid,
  .fbvs-evergreen-layout,
  .fbvs-tracking-grid {
    grid-template-columns: 1fr;
  }

  .fbvs-hero-feature-list,
  .fbvs-usecase-grid,
  .fbvs-compare-grid,
  .fbvs-faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fbvs-evergreen-copy {
    position: static;
  }

  .fbvs-howto-card {
    grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  }
}

@media (max-width: 767px) {
  .fbvs-container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .fbvs-section {
    padding: 52px 0;
  }

  .fbvs-hero-feature-list,
  .fbvs-metric-grid,
  .fbvs-usecase-grid,
  .fbvs-compare-grid,
  .fbvs-server-flow,
  .fbvs-checklist-grid,
  .fbvs-faq,
  .fbvs-related-grid,
  .fbvs-insight-strip {
    grid-template-columns: 1fr;
  }

  .fbvs-usecase-feature,
  .fbvs-howto-card {
    grid-template-columns: 1fr;
  }

  .fbvs-usecase-image,
  .fbvs-howto-image {
    min-height: 230px;
  }

  .fbvs-usecase-feature > div {
    padding: 26px 24px;
  }

  .fbvs-order-path {
    grid-template-columns: 1fr;
  }

  .fbvs-order-path > i {
    transform: rotate(90deg);
    justify-self: center;
  }

  .fbvs-server-principle,
  .fbvs-related-and-cta .fbvs-cta-final {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fbvs-server-principle-icon,
  .fbvs-cta-final-icon {
    margin: 0 auto;
  }

  .fbvs-server-principle a,
  .fbvs-related-and-cta .fbvs-cta-final-btn {
    justify-self: center;
  }
}

@media (max-width: 575px) {
  .fbvs-container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .fbvs-section {
    padding: 44px 0;
  }

  .fbvs-section-title {
    font-size: 1.3rem;
  }

  .fbvs-hero-info-card {
    padding: 18px;
  }

  .fbvs-hero-feature-list {
    gap: 8px;
  }

  .fbvs-definition-note {
    grid-template-columns: 1fr;
  }

  .fbvs-evergreen-step {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .fbvs-evergreen-step .fbvs-card-icon {
    display: none;
  }

  .fbvs-howto-step {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
  }

  .fbvs-howto-marker > span {
    width: 40px;
    height: 40px;
    border-width: 4px;
  }

  .fbvs-howto-copy {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .fbvs-howto-copy .fbvs-card-icon {
    width: 42px;
    height: 42px;
  }

  .fbvs-testimonials {
    padding: 52px 0;
  }

  .fbvs-testi-card {
    width: calc(100vw - 36px);
  }

  .fbvs-faq-question {
    padding: 16px;
    font-size: .82rem;
  }

  .fbvs-faq-answer > div {
    padding: 0 16px 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbvs-mascot-stage,
  .fbvs-mini-1,
  .fbvs-mini-2,
  .fbvs-testi-row-1,
  .fbvs-testi-row-2 {
    animation: none !important;
  }
}

/* =========================================================
   FACEBOOK VIEW STORY V2 — STORY-SPECIFIC LAYOUT
   The hero and form retain the copied fblk-v2 structure.
   ========================================================= */

.fbvs-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(236, 72, 153, .16), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(168, 85, 247, .15), transparent 34%),
    linear-gradient(145deg, #071325 0%, #10274a 48%, #151734 100%);
}

.fbvs-hero .fbvs-container {
  position: relative;
  z-index: 2;
}

.fbvs-hero-badge {
  border-color: rgba(192, 132, 252, .35);
  background: rgba(168, 85, 247, .12);
  color: #e8d5ff;
}

.fbvs-hero-title .accent,
.fbvs-kw {
  background-image: linear-gradient(135deg, #79aefa 0%, #c084fc 54%, #f472b6 100%);
}

.fbvs-kw-rotator {
  min-height: 32px;
  height: auto;
  overflow: visible;
  white-space: normal;
}

.fbvs-hero-info-card {
  display: block;
  margin: 18px 0;
  padding: 20px;
  border-color: rgba(168, 85, 247, .2);
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(168, 85, 247, .055));
}

.fbvs-hero-info-card .fbvs-hero-desc,
.fbvs-hero-info-card .fbvs-hero-anchor {
  max-width: none;
}

.fbvs-hero-feature-list {
  margin-top: 16px;
}

.fbvs-hero-feature {
  border-color: rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .045);
}

.fbvs-hero-feature > i {
  background: linear-gradient(145deg, rgba(24, 119, 242, .22), rgba(168, 85, 247, .2));
  color: #c7a5ff;
}

.fbvs-proof-panel {
  border-color: rgba(168, 85, 247, .2);
  background: rgba(5, 14, 31, .68);
}

.fbvs-mascot-fallback {
  border-color: rgba(168, 85, 247, .42);
  background: linear-gradient(145deg, rgba(24, 119, 242, .22), rgba(168, 85, 247, .18));
}

.fbvs-mascot-fallback i {
  color: #d8b4fe;
}

.fbvs-mascot-stage {
  position: relative;
}

.fbvs-mini-1 {
  animation: fbvsStoryBadgeOne 4.2s ease-in-out infinite;
}

.fbvs-mini-2 {
  animation: fbvsStoryBadgeTwo 4.8s ease-in-out infinite;
}

.fbvs-mini-3 {
  animation: fbvsStoryBadgeThree 5.2s ease-in-out infinite;
}

@keyframes fbvsStoryBadgeOne {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50% { transform: translate(4px, -7px) rotate(2deg); }
}

@keyframes fbvsStoryBadgeTwo {
  0%, 100% { transform: translate(0, 0) rotate(2deg); }
  50% { transform: translate(-5px, -5px) rotate(-2deg); }
}

@keyframes fbvsStoryBadgeThree {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.04); }
}

.fbvs-pstat-word {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5em;
  font-size: .78rem !important;
}

.fbvs-form-header-icon,
.fbvs-step.active .fbvs-step-num,
.fbvs-cta-btn {
  background: linear-gradient(135deg, #1877f2, #a855f7);
}

.fbvs-section:nth-of-type(even) {
  position: relative;
}

.fbvs-definition {
  background:
    radial-gradient(circle at 8% 15%, rgba(24, 119, 242, .08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
}

.fbvs-definition-note {
  border-color: rgba(168, 85, 247, .18);
  background: linear-gradient(135deg, rgba(24, 119, 242, .07), rgba(168, 85, 247, .07));
}

.fbvs-compare {
  background:
    linear-gradient(180deg, #f7f9ff 0%, #fff 16%, #fff 100%);
}

.fbvs-compare-banner,
.fbvs-readiness-media,
.fbvs-tracking-media {
  position: relative;
  display: block;
  width: 100%;
  margin: 30px 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, .12);
  border-radius: 24px;
  background: #0d1b33;
  box-shadow: 0 18px 50px rgba(18, 51, 92, .14);
  cursor: zoom-in;
}

.fbvs-compare-banner {
  max-height: 480px;
}

.fbvs-compare-banner img,
.fbvs-readiness-media img,
.fbvs-tracking-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform .45s ease;
}

.fbvs-compare-banner:hover img,
.fbvs-readiness-media:hover img,
.fbvs-tracking-media:hover img {
  transform: scale(1.025);
}

.fbvs-compare-banner > span,
.fbvs-readiness-media > span,
.fbvs-tracking-media > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(7, 19, 37, .78);
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.fbvs-compare-card-current {
  border-color: rgba(168, 85, 247, .34);
  background: linear-gradient(155deg, rgba(24, 119, 242, .08), rgba(168, 85, 247, .09));
  box-shadow: 0 20px 45px rgba(79, 70, 229, .1);
}

.fbvs-compare-card-current .fbvs-compare-top > span {
  background: linear-gradient(135deg, #1877f2, #a855f7);
  color: #fff;
}

.fbvs-readiness {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(168, 85, 247, .12), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(236, 72, 153, .1), transparent 28%),
    #f8f7ff;
}

.fbvs-readiness-grid {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 32px;
}

.fbvs-readiness-media {
  min-height: 100%;
  margin: 0;
}

.fbvs-readiness-steps {
  display: grid;
  gap: 14px;
}

.fbvs-readiness-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(95, 75, 139, .11);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(73, 53, 112, .08);
}

.fbvs-readiness-card > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #1877f2, #a855f7);
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(91, 91, 210, .22);
}

.fbvs-readiness-card h3,
.fbvs-link-guide h3,
.fbvs-story-frame h3 {
  margin: 0 0 7px;
  color: var(--fbvs-heading);
  font-size: 1rem;
  font-weight: 850;
}

.fbvs-readiness-card p,
.fbvs-link-guide p,
.fbvs-story-frame p {
  margin: 0;
  color: var(--fbvs-text);
  font-size: .85rem;
  line-height: 1.72;
}

.fbvs-link-guide {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  border: 1px solid rgba(24, 119, 242, .14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(36, 52, 88, .08);
}

.fbvs-link-guide code {
  display: block;
  max-width: 100%;
  margin-top: 16px;
  padding: 12px 14px;
  overflow-wrap: anywhere;
  border: 1px dashed rgba(24, 119, 242, .28);
  border-radius: 12px;
  background: #f4f8ff;
  color: #1556a0;
  font-size: .78rem;
}

.fbvs-link-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fbvs-link-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 11px 13px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(24, 119, 242, .07), rgba(168, 85, 247, .04));
}

.fbvs-link-steps li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: #1877f2;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}

.fbvs-link-steps p {
  font-size: .8rem;
}

.fbvs-usecase-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fbvs-usecase-card {
  position: relative;
  overflow: hidden;
}

.fbvs-usecase-card::after {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, .1), transparent 70%);
  content: "";
}

.fbvs-server-guide {
  background:
    radial-gradient(circle at 90% 8%, rgba(24, 119, 242, .08), transparent 26%),
    #f7faff;
}

.fbvs-server-principle {
  border-color: rgba(168, 85, 247, .17);
  background: linear-gradient(135deg, #102648, #221c43);
}

.fbvs-server-principle a {
  border-color: rgba(192, 132, 252, .3);
  background: rgba(168, 85, 247, .13);
  color: #eadcff;
}

.fbvs-howto {
  background: #fff;
}

.fbvs-howto-card {
  border-color: rgba(24, 119, 242, .11);
}

.fbvs-howto-marker > span {
  background: linear-gradient(145deg, #1877f2, #a855f7);
}

.fbvs-story-planning {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(9, 25, 49, .98), rgba(27, 25, 65, .98)),
    #0b1730;
}

.fbvs-story-planning .fbvs-section-title,
.fbvs-story-planning .fbvs-section-desc,
.fbvs-story-planning .fbvs-section-kicker {
  color: #fff;
}

.fbvs-story-planning .fbvs-section-desc {
  color: rgba(255, 255, 255, .68);
}

.fbvs-story-sequence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.fbvs-story-frame {
  position: relative;
  min-height: 310px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 26px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: 0 22px 55px rgba(0, 0, 0, .18);
}

.fbvs-story-frame::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.fbvs-story-frame-number {
  display: block;
  color: rgba(255, 255, 255, .22);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.fbvs-story-frame-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 18px 0;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #1877f2, #a855f7);
  color: #fff;
}

.fbvs-story-frame h3 {
  color: #fff;
}

.fbvs-story-frame p {
  color: rgba(255, 255, 255, .68);
}

.fbvs-story-frame small {
  display: block;
  margin-top: 16px;
  color: #d8b4fe;
  font-size: .76rem;
  font-weight: 750;
}

.fbvs-story-planning-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 17px 20px;
  border: 1px solid rgba(192, 132, 252, .2);
  border-radius: 16px;
  background: rgba(168, 85, 247, .09);
  color: rgba(255, 255, 255, .74);
}

.fbvs-story-planning-note i {
  color: #c084fc;
}

.fbvs-story-planning-note p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.65;
}

.fbvs-tracking {
  background:
    radial-gradient(circle at 5% 90%, rgba(168, 85, 247, .09), transparent 26%),
    #f7faff;
}

.fbvs-tracking-media {
  min-height: 430px;
  margin: 0;
}

.fbvs-scope-card {
  margin-top: 24px;
}

.fbvs-insight-strip {
  margin-top: 28px;
}

.fbvs-testimonials {
  background:
    radial-gradient(circle at 9% 25%, rgba(168, 85, 247, .18), transparent 30%),
    radial-gradient(circle at 90% 72%, rgba(24, 119, 242, .18), transparent 28%),
    linear-gradient(150deg, #09172d, #171633);
}

.fbvs-testimonials .fbvs-section-title {
  color: #fff;
}

.fbvs-testimonials .fbvs-section-desc {
  color: rgba(255, 255, 255, .7);
}

.fbvs-testimonials .fbvs-section-kicker {
  color: #d8b4fe;
}

.fbvs-testi-card {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .2);
}

.fbvs-faq-section {
  background:
    linear-gradient(180deg, #f6f4ff 0%, #fff 100%);
}

.fbvs-faq-item {
  border-color: rgba(86, 64, 128, .11);
  box-shadow: 0 10px 28px rgba(62, 51, 93, .06);
}

.fbvs-faq-item.active {
  border-color: rgba(168, 85, 247, .28);
  box-shadow: 0 16px 36px rgba(109, 75, 170, .1);
}

.fbvs-related-and-cta {
  background: #fff;
}

.fbvs-related-card:hover {
  border-color: rgba(168, 85, 247, .3);
}

.fbvs-related-and-cta .fbvs-cta-final {
  background: linear-gradient(135deg, #0d2852 0%, #38235b 65%, #5b2452 100%);
}

.fbvs-lightbox {
  backdrop-filter: blur(12px);
}

[data-bs-theme="dark"] .fbvs-definition,
[data-bs-theme="dark"] .fbvs-compare,
[data-bs-theme="dark"] .fbvs-readiness,
[data-bs-theme="dark"] .fbvs-server-guide,
[data-bs-theme="dark"] .fbvs-howto,
[data-bs-theme="dark"] .fbvs-tracking,
[data-bs-theme="dark"] .fbvs-faq-section,
[data-bs-theme="dark"] .fbvs-related-and-cta {
  background: #0a1628;
}

[data-bs-theme="dark"] .fbvs-readiness-card,
[data-bs-theme="dark"] .fbvs-link-guide {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
}

[data-bs-theme="dark"] .fbvs-readiness-card h3,
[data-bs-theme="dark"] .fbvs-link-guide h3,
[data-bs-theme="dark"] .fbvs-link-guide code {
  color: #fff;
}

[data-bs-theme="dark"] .fbvs-readiness-card p,
[data-bs-theme="dark"] .fbvs-link-guide p {
  color: rgba(255, 255, 255, .62);
}

[data-bs-theme="dark"] .fbvs-link-guide code {
  background: rgba(24, 119, 242, .1);
}

@media (max-width: 1199px) {
  .fbvs-usecase-grid-six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .fbvs-readiness-grid,
  .fbvs-link-guide {
    grid-template-columns: 1fr;
  }

  .fbvs-story-sequence {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .fbvs-story-frame {
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  .fbvs-hero-info-card {
    padding: 16px;
  }

  .fbvs-hero-feature-list,
  .fbvs-usecase-grid-six {
    grid-template-columns: 1fr;
  }

  .fbvs-compare-banner img,
  .fbvs-readiness-media img,
  .fbvs-tracking-media img {
    min-height: 230px;
  }

  .fbvs-readiness-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 17px;
  }

  .fbvs-readiness-card > span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .fbvs-link-guide {
    padding: 20px;
  }

  .fbvs-story-sequence {
    grid-template-columns: repeat(3, minmax(80vw, 1fr));
  }

  .fbvs-story-frame {
    min-height: 285px;
  }

  .fbvs-story-planning-note {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .fbvs-kw-rotator {
    min-height: 28px;
    font-size: .76rem;
  }

  .fbvs-hero-feature {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 10px;
  }

  .fbvs-hero-feature > i {
    width: 34px;
    height: 34px;
  }

  .fbvs-compare-banner,
  .fbvs-readiness-media,
  .fbvs-tracking-media {
    border-radius: 18px;
  }

  .fbvs-link-steps li {
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbvs-mini-3,
  .fbvs-story-frame,
  .fbvs-compare-banner img,
  .fbvs-readiness-media img,
  .fbvs-tracking-media img {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
   FINAL VISUAL QA FIXES — 2026-07-24
   ========================================================= */

@media (min-width: 992px) {
  .fbvs-hero-row {
    align-items: stretch !important;
  }

  .fbvs-col-form,
  .fbvs-col-illustration {
    display: flex;
    flex-direction: column;
  }
}

.fbvs-col-illustration .fbvs-proof-hero {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.fbvs-form-livefeed {
  min-height: 238px;
  max-height: none;
  margin-top: 16px;
  padding: 18px;
  flex: 1 1 auto;
  border: 1px solid rgba(168, 85, 247, .2);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 0%, rgba(168, 85, 247, .18), transparent 35%),
    rgba(5, 14, 31, .76);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .14);
}

.fbvs-form-livefeed::after {
  height: 34px;
  background: linear-gradient(transparent, rgba(5, 14, 31, .96));
}

.fbvs-form-livefeed .fbvs-livefeed-title {
  color: rgba(255, 255, 255, .82);
}

.fbvs-form-livefeed .fbvs-livefeed-item {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .08);
}

.fbvs-readiness-media {
  background: #fff;
}

.fbvs-readiness-media img {
  object-fit: contain;
}

.fbvs-section.fbvs-story-planning {
  padding: 66px 0;
  background:
    radial-gradient(circle at 10% 16%, rgba(24, 119, 242, .2), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(168, 85, 247, .18), transparent 30%),
    linear-gradient(145deg, #091a34, #1c1944) !important;
}

.fbvs-story-planning .fbvs-section-kicker {
  color: #f3e8ff;
}

.fbvs-story-planning .fbvs-section-kicker i {
  background: rgba(192, 132, 252, .16);
  color: #d8b4fe;
}

.fbvs-story-planning .fbvs-section-desc {
  max-width: 760px;
  color: rgba(255, 255, 255, .84);
}

.fbvs-story-frame {
  min-height: 270px;
  background: linear-gradient(165deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
}

.fbvs-story-sequence {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.fbvs-story-sequence::-webkit-scrollbar {
  display: none;
}

.fbvs-story-frame h3 {
  color: #fff;
}

.fbvs-story-frame p {
  color: rgba(255, 255, 255, .84);
}

.fbvs-story-frame small {
  color: #eadcff;
}

.fbvs-story-planning-note {
  background: rgba(168, 85, 247, .16);
  color: rgba(255, 255, 255, .88);
}

.fbvs-scope-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-color: rgba(24, 119, 242, .18);
  background: linear-gradient(135deg, #fff, #f6f9ff);
}

.fbvs-scope-half {
  min-width: 0;
  padding: 30px;
}

.fbvs-scope-half + .fbvs-scope-half {
  border-top: 0;
  border-left: 1px solid rgba(24, 119, 242, .12);
}

.fbvs-scope-in {
  background: linear-gradient(145deg, rgba(66, 183, 42, .09), rgba(255, 255, 255, .72));
}

.fbvs-scope-out {
  background: linear-gradient(145deg, rgba(24, 119, 242, .09), rgba(255, 255, 255, .72));
}

.fbvs-scope-intro {
  min-height: 48px;
  margin: 14px 0 0;
  color: #53627a;
  font-size: .82rem;
  line-height: 1.65;
}

.fbvs-scope-half ul {
  margin-top: 14px;
}

.fbvs-testimonials .fbvs-section-desc {
  color: rgba(255, 255, 255, .86);
}

.fbvs-testimonials .fbvs-section-kicker {
  color: #eadcff;
}

.fbvs-testimonials .fbvs-section-kicker i {
  background: rgba(192, 132, 252, .18);
  color: #e9d5ff;
}

.fbvs-testimonials .fbvs-testi-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(24, 119, 242, .16);
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

.fbvs-testimonials .fbvs-testi-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #1877f2, #a855f7, #ec4899);
  content: "";
}

.fbvs-testimonials .fbvs-testi-name {
  color: #10223f;
}

.fbvs-testimonials .fbvs-testi-role {
  color: #64738a;
}

.fbvs-testimonials .fbvs-testi-text {
  color: #2d3f58;
}

.fbvs-testimonials .fbvs-testi-tag {
  border-color: rgba(24, 119, 242, .2);
  background: rgba(24, 119, 242, .09);
  color: #155fc4;
}

@media (max-width: 991px) {
  .fbvs-form-livefeed {
    min-height: 220px;
    max-height: 250px;
    margin-bottom: 20px;
  }

  .fbvs-scope-card {
    grid-template-columns: 1fr;
  }

  .fbvs-scope-half + .fbvs-scope-half {
    border-top: 1px solid rgba(24, 119, 242, .12);
    border-left: 0;
  }
}

@media (max-width: 575px) {
  .fbvs-section.fbvs-story-planning {
    padding: 50px 0;
  }

  .fbvs-story-frame {
    min-height: 255px;
  }

  .fbvs-scope-half {
    padding: 22px;
  }

  .fbvs-scope-intro {
    min-height: 0;
  }
}

