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

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

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

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

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

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

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

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

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

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

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

@keyframes fbvvFloat1 {

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

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

@keyframes fbvvFloat2 {

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

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

@keyframes fbvvDotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

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

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

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

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

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

  50% {
    transform: scale(1.15)
  }

  100% {
    transform: scale(1)
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-col-form {
  order: 0
}

.fbvv-col-illustration {
  order: 0
}

.fbvv-anim-fadeIn {
  animation: fbvvFadeIn 0.8s ease both
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-server-trigger {
  position: relative
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-reaction-option {
  position: relative
}

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

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

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

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

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

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

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

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

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

.fbvv-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: fbvvShimmer 3s infinite
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-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: fbvvFeedSlideIn 0.5s ease-out
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-testi-row-1 {
  animation: fbvvMarquee 60s linear infinite
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-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(--fbvv-primary);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fbvv-fbadge {
    display: none
  }

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

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

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

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

  .fbvv-section {
    padding: 12px 0
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    transform: translateX(0)
  }
}

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

.fbvv-testi-track.fbvv-testi-row-2 {
  animation: fbvvTestiScrollReverse 80s linear infinite
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-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: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  perspective: 1000px;
}

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

.fbvv-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;
  opacity: 0.7;
}

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

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

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

/* Highlight Strip */
.fbvv-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(--fbvv-primary);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-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(--fbvv-primary);
  font-size: 1.2rem;
  margin-bottom: 14px;
  border: 1px solid rgba(24, 119, 242, 0.15);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-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: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Tip Icon */
.fbvv-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: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

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

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

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

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

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

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

/* CTA Callout Banner */
.fbvv-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(--fbvv-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-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: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-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: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-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: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* =========================================================
   FACEBOOK VIEW VIDEO V2 — CUSTOM CONTENT SYSTEM
   Base copied from fblk-v2.css; every service class uses fbvv.
   ========================================================= */

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

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

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

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

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

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

.fbvv-card-icon,
.fbvv-metric-icon,
.fbvv-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(--fbvv-primary);
  font-size: 1.05rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvv-mascot-stage .fbvv-robot-img-sm {
  animation: fbvvMascotImage 3.8s ease-in-out infinite;
  transform-origin: 50% 82%;
}

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

@keyframes fbvvMascotImage {
  0%, 100% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-5px) scale(1.025); }
  55% { transform: translateY(-5px) scale(1.025); }
}

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

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

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

.fbvv-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(--fbvv-primary);
  border-radius: 15px;
  background: linear-gradient(110deg, rgba(24, 119, 242, .075), rgba(66, 183, 42, .035));
}

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

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

.fbvv-media-frame,
.fbvv-usecase-image,
.fbvv-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;
}

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

.fbvv-media-frame img,
.fbvv-usecase-image img,
.fbvv-howto-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.fbvv-media-frame:hover img,
.fbvv-usecase-image:hover img,
.fbvv-howto-image:hover img {
  transform: scale(1.035);
}

.fbvv-media-label,
.fbvv-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;
}

.fbvv-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.fbvv-metric-card,
.fbvv-usecase-card,
.fbvv-server-flow-card {
  border: 1px solid var(--fbvv-card-border);
  border-radius: 18px;
  background: var(--fbvv-card-bg);
  box-shadow: 0 10px 30px rgba(19, 45, 80, .06);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.fbvv-metric-card:hover,
.fbvv-usecase-card:hover,
.fbvv-server-flow-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 119, 242, .24);
  box-shadow: 0 16px 42px rgba(24, 119, 242, .1);
}

.fbvv-metric-card {
  padding: 22px;
}

.fbvv-metric-card h3,
.fbvv-usecase-card h3,
.fbvv-server-flow-card h3,
.fbvv-evergreen-step h3,
.fbvv-check-item h3 {
  margin: 14px 0 7px;
  color: var(--fbvv-heading);
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.35;
}

.fbvv-metric-card p,
.fbvv-usecase-card p,
.fbvv-server-flow-card p,
.fbvv-evergreen-step p,
.fbvv-check-item p {
  margin: 0;
  color: var(--fbvv-text);
  font-size: .84rem;
  line-height: 1.68;
}

.fbvv-usecases {
  background: linear-gradient(180deg, #f6f9ff, #eef5ff) !important;
}

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

.fbvv-usecase-image {
  min-height: 320px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.fbvv-usecase-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
}

.fbvv-eyebrow {
  color: var(--fbvv-accent);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fbvv-usecase-feature h3 {
  margin: 10px 0 12px;
  color: var(--fbvv-heading);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.35;
}

.fbvv-usecase-feature p {
  margin: 0;
  color: var(--fbvv-text);
  font-size: .94rem;
  line-height: 1.78;
}

.fbvv-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fbvv-usecase-card {
  position: relative;
  padding: 23px;
}

.fbvv-usecase-card > span {
  display: block;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px dashed rgba(24, 119, 242, .16);
  color: var(--fbvv-primary);
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.5;
}

.fbvv-compare {
  background: linear-gradient(150deg, #0b1d36, #132d50) !important;
}

.fbvv-compare .fbvv-section-title,
.fbvv-compare .fbvv-section-kicker {
  color: #fff;
}

.fbvv-compare .fbvv-section-desc {
  color: rgba(255, 255, 255, .7);
}

.fbvv-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

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

.fbvv-compare-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, .35);
  background: rgba(255, 255, 255, .065);
}

.fbvv-compare-card-current {
  border-color: rgba(66, 183, 42, .34);
  background: linear-gradient(150deg, rgba(24, 119, 242, .14), rgba(66, 183, 42, .09));
}

.fbvv-compare-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.fbvv-compare-card h3 {
  margin: 18px 0 9px;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 850;
}

.fbvv-compare-card > p {
  color: rgba(255, 255, 255, .7);
  font-size: .86rem;
  line-height: 1.7;
}

.fbvv-compare-card ul {
  margin: 6px 0 18px;
  padding: 0;
  list-style: none;
}

.fbvv-compare-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: .79rem;
  line-height: 1.55;
}

.fbvv-compare-card li::before {
  position: absolute;
  top: .5em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fbvv-accent);
  content: "";
}

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

.fbvv-evergreen {
  background: #fff !important;
}

.fbvv-evergreen-layout {
  display: grid;
  grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr);
  gap: 44px;
  align-items: start;
}

.fbvv-evergreen-copy {
  position: sticky;
  top: 90px;
}

.fbvv-evergreen-copy .fbvv-media-frame {
  margin-top: 24px;
}

.fbvv-evergreen-steps {
  display: grid;
  gap: 12px;
}

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

.fbvv-evergreen-step:hover {
  transform: translateX(5px);
  border-color: rgba(24, 119, 242, .25);
  box-shadow: 0 12px 34px rgba(24, 119, 242, .08);
}

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

.fbvv-evergreen-step h3 {
  margin-top: 2px;
}

.fbvv-server-guide {
  background: linear-gradient(180deg, #edf5ff, #f9fbff) !important;
}

.fbvv-server-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.fbvv-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: "";
}

.fbvv-server-flow-card {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.fbvv-flow-number {
  position: absolute;
  top: -13px;
  right: 18px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--fbvv-gradient-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 850;
  box-shadow: 0 6px 18px rgba(24, 119, 242, .2);
}

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

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

.fbvv-server-principle h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
}

.fbvv-server-principle p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: .83rem;
  line-height: 1.65;
}

.fbvv-server-principle a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--fbvv-primary);
  font-size: .75rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}

.fbvv-server-principle a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
}

.fbvv-howto {
  background: #fff !important;
}

.fbvv-howto-timeline {
  max-width: 1120px;
  margin: 36px auto 0;
}

.fbvv-howto-step {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
}

.fbvv-howto-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fbvv-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(--fbvv-gradient-accent);
  color: #fff;
  font-size: .84rem;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(24, 119, 242, .2);
}

.fbvv-howto-marker > div {
  width: 2px;
  min-height: 100%;
  background: linear-gradient(var(--fbvv-primary), rgba(66, 183, 42, .18));
}

.fbvv-howto-step:last-child .fbvv-howto-marker > div {
  background: linear-gradient(var(--fbvv-primary), transparent);
}

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

.fbvv-howto-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 119, 242, .24);
  box-shadow: 0 20px 52px rgba(24, 119, 242, .12);
}

.fbvv-howto-image {
  min-height: 245px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.fbvv-howto-copy {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  align-content: center;
  padding: 28px 30px;
}

.fbvv-step-label {
  color: var(--fbvv-primary);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fbvv-howto-copy h3 {
  margin: 6px 0 9px;
  color: var(--fbvv-heading);
  font-size: 1.08rem;
  font-weight: 850;
}

.fbvv-howto-copy p {
  margin: 0;
  color: var(--fbvv-text);
  font-size: .87rem;
  line-height: 1.72;
}

.fbvv-checklist {
  background: linear-gradient(145deg, #0d213d, #132d50) !important;
}

.fbvv-checklist .fbvv-section-title,
.fbvv-checklist .fbvv-section-kicker {
  color: #fff;
}

.fbvv-checklist .fbvv-section-desc {
  color: rgba(255, 255, 255, .68);
}

.fbvv-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1080px;
  margin: 30px auto 0;
}

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

.fbvv-check-item:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 183, 42, .28);
  background: rgba(255, 255, 255, .065);
}

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

.fbvv-check-item h3 {
  margin-top: 1px;
  color: #fff;
}

.fbvv-check-item p {
  color: rgba(255, 255, 255, .66);
}

.fbvv-tracking {
  background: #f6f9ff !important;
}

.fbvv-tracking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: 34px;
  align-items: center;
}

.fbvv-order-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.fbvv-order-path > div {
  min-height: 94px;
  padding: 15px;
  border: 1px solid rgba(24, 119, 242, .13);
  border-radius: 15px;
  background: #fff;
}

.fbvv-order-path span,
.fbvv-order-path strong {
  display: block;
}

.fbvv-order-path span {
  margin-bottom: 6px;
  color: var(--fbvv-primary);
  font-size: .67rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fbvv-order-path strong {
  color: var(--fbvv-heading);
  font-size: .78rem;
  line-height: 1.5;
}

.fbvv-order-path > i {
  color: rgba(24, 119, 242, .4);
  font-size: .8rem;
}

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

.fbvv-scope-half {
  padding: 24px 26px;
}

.fbvv-scope-half + .fbvv-scope-half {
  border-top: 1px solid rgba(24, 119, 242, .1);
}

.fbvv-scope-in {
  background: linear-gradient(120deg, rgba(66, 183, 42, .07), transparent);
}

.fbvv-scope-out {
  background: linear-gradient(120deg, rgba(24, 119, 242, .055), transparent);
}

.fbvv-scope-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.fbvv-scope-heading > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(66, 183, 42, .12);
  color: var(--fbvv-accent);
}

.fbvv-scope-out .fbvv-scope-heading > i {
  background: rgba(24, 119, 242, .1);
  color: var(--fbvv-primary);
}

.fbvv-scope-heading h3 {
  margin: 0;
  color: var(--fbvv-heading);
  font-size: .93rem;
  font-weight: 850;
}

.fbvv-scope-half ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.fbvv-scope-half li {
  position: relative;
  margin: 9px 0;
  padding-left: 20px;
  color: var(--fbvv-text);
  font-size: .82rem;
  line-height: 1.55;
}

.fbvv-scope-half li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fbvv-accent);
  content: "";
}

.fbvv-scope-out li::before {
  background: var(--fbvv-primary);
}

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

.fbvv-insight-strip > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 3px 10px;
  padding: 19px;
  background: #fff;
}

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

.fbvv-insight-strip span {
  color: var(--fbvv-heading);
  font-size: .75rem;
  font-weight: 850;
}

.fbvv-insight-strip strong {
  color: var(--fbvv-text);
  font-size: .67rem;
  font-weight: 600;
  line-height: 1.4;
}

.fbvv-testimonials {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: 72px 0;
  overflow: hidden;
}

.fbvv-testimonials .fbvv-section-kicker {
  color: #95bdff;
}

.fbvv-testimonials .fbvv-section-desc {
  color: rgba(255, 255, 255, .67);
}

.fbvv-testi-track {
  padding-left: 20px;
}

.fbvv-testi-card {
  width: min(390px, calc(100vw - 40px));
}

.fbvv-testi-text {
  margin-bottom: 0;
  font-style: normal;
  line-height: 1.72;
}

.fbvv-faq-section {
  background: linear-gradient(180deg, #f8fbff, #eef5ff) !important;
}

.fbvv-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 30px auto 0;
  align-items: start;
}

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

.fbvv-faq-item.active {
  border-color: rgba(24, 119, 242, .28);
  box-shadow: 0 12px 34px rgba(24, 119, 242, .09);
}

.fbvv-faq-heading {
  margin: 0;
}

.fbvv-faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--fbvv-heading);
  font-size: .87rem;
  font-weight: 800;
  line-height: 1.48;
  text-align: left;
}

.fbvv-faq-question i {
  flex: 0 0 auto;
  color: var(--fbvv-primary);
  font-size: .72rem;
  transition: transform .25s ease;
}

.fbvv-faq-item.active .fbvv-faq-question i {
  transform: rotate(180deg);
}

.fbvv-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .32s ease;
}

.fbvv-faq-item.active .fbvv-faq-answer {
  max-height: 420px;
}

.fbvv-faq-answer > div {
  padding: 0 20px 19px;
}

.fbvv-faq-answer p {
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid rgba(24, 119, 242, .09);
  color: var(--fbvv-text);
  font-size: .84rem;
  line-height: 1.72;
}

.fbvv-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fbvv-related-card h3 {
  margin: 0 0 7px;
  color: var(--fbvv-heading);
  font-size: .94rem;
  font-weight: 800;
}

.fbvv-related-and-cta {
  background: #fff !important;
}

.fbvv-related-and-cta .fbvv-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);
}

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

.fbvv-cta-final h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 850;
  line-height: 1.35;
}

.fbvv-cta-final p {
  margin: 0;
}

.fbvv-lightbox-inner {
  display: flex;
  max-width: 94vw;
  max-height: 94vh;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fbvv-lightbox-inner p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .8rem;
  text-align: center;
}

.fbvv-order-dialog .modal-content {
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, .16);
  border-radius: 18px;
}

.fbvv-order-dialog-close {
  border-radius: 999px;
  background: var(--fbvv-primary);
  color: #fff;
}

body.fbvv-lightbox-open {
  overflow: hidden;
}

[data-bs-theme="dark"] .fbvv-usecases,
[data-bs-theme="dark"] .fbvv-evergreen,
[data-bs-theme="dark"] .fbvv-server-guide,
[data-bs-theme="dark"] .fbvv-howto,
[data-bs-theme="dark"] .fbvv-tracking,
[data-bs-theme="dark"] .fbvv-faq-section,
[data-bs-theme="dark"] .fbvv-related-and-cta {
  background: #15172a !important;
}

[data-bs-theme="dark"] .fbvv-definition-copy > p,
[data-bs-theme="dark"] .fbvv-evergreen-copy > p,
[data-bs-theme="dark"] .fbvv-tracking-copy > p,
[data-bs-theme="dark"] .fbvv-metric-card p,
[data-bs-theme="dark"] .fbvv-usecase-card p,
[data-bs-theme="dark"] .fbvv-server-flow-card p,
[data-bs-theme="dark"] .fbvv-evergreen-step p,
[data-bs-theme="dark"] .fbvv-howto-copy p,
[data-bs-theme="dark"] .fbvv-check-item p,
[data-bs-theme="dark"] .fbvv-scope-half li,
[data-bs-theme="dark"] .fbvv-faq-answer p {
  color: rgba(255, 255, 255, .68);
}

[data-bs-theme="dark"] .fbvv-definition-copy > p strong,
[data-bs-theme="dark"] .fbvv-evergreen-copy > p strong,
[data-bs-theme="dark"] .fbvv-metric-card h3,
[data-bs-theme="dark"] .fbvv-usecase-card h3,
[data-bs-theme="dark"] .fbvv-server-flow-card h3,
[data-bs-theme="dark"] .fbvv-evergreen-step h3,
[data-bs-theme="dark"] .fbvv-howto-copy h3,
[data-bs-theme="dark"] .fbvv-scope-heading h3,
[data-bs-theme="dark"] .fbvv-faq-question,
[data-bs-theme="dark"] .fbvv-related-card h3 {
  color: #fff;
}

[data-bs-theme="dark"] .fbvv-metric-card,
[data-bs-theme="dark"] .fbvv-usecase-card,
[data-bs-theme="dark"] .fbvv-server-flow-card,
[data-bs-theme="dark"] .fbvv-evergreen-step,
[data-bs-theme="dark"] .fbvv-howto-card,
[data-bs-theme="dark"] .fbvv-scope-card,
[data-bs-theme="dark"] .fbvv-faq-item,
[data-bs-theme="dark"] .fbvv-order-path > div,
[data-bs-theme="dark"] .fbvv-insight-strip > div,
[data-bs-theme="dark"] .fbvv-usecase-feature {
  border-color: rgba(255, 255, 255, .08);
  background: #20243b;
}

[data-bs-theme="dark"] .fbvv-definition-note {
  background: rgba(24, 119, 242, .08);
}

[data-bs-theme="dark"] .fbvv-definition-note p,
[data-bs-theme="dark"] .fbvv-usecase-feature p,
[data-bs-theme="dark"] .fbvv-order-path strong,
[data-bs-theme="dark"] .fbvv-insight-strip strong {
  color: rgba(255, 255, 255, .67);
}

[data-bs-theme="dark"] .fbvv-usecase-feature h3,
[data-bs-theme="dark"] .fbvv-order-path span,
[data-bs-theme="dark"] .fbvv-insight-strip span {
  color: #fff;
}

@media (max-width: 1199px) {
  .fbvv-definition-grid,
  .fbvv-evergreen-layout,
  .fbvv-tracking-grid {
    gap: 30px;
  }

  .fbvv-metric-grid,
  .fbvv-server-flow,
  .fbvv-insight-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fbvv-server-flow::before {
    display: none;
  }

  .fbvv-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .fbvv-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .fbvv-section {
    padding: 62px 0;
  }

  .fbvv-hero-info-card,
  .fbvv-definition-grid,
  .fbvv-evergreen-layout,
  .fbvv-tracking-grid {
    grid-template-columns: 1fr;
  }

  .fbvv-hero-feature-list,
  .fbvv-usecase-grid,
  .fbvv-compare-grid,
  .fbvv-faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fbvv-evergreen-copy {
    position: static;
  }

  .fbvv-howto-card {
    grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  }
}

@media (max-width: 767px) {
  .fbvv-container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .fbvv-section {
    padding: 52px 0;
  }

  .fbvv-hero-feature-list,
  .fbvv-metric-grid,
  .fbvv-usecase-grid,
  .fbvv-compare-grid,
  .fbvv-server-flow,
  .fbvv-checklist-grid,
  .fbvv-faq,
  .fbvv-related-grid,
  .fbvv-insight-strip {
    grid-template-columns: 1fr;
  }

  .fbvv-usecase-feature,
  .fbvv-howto-card {
    grid-template-columns: 1fr;
  }

  .fbvv-usecase-image,
  .fbvv-howto-image {
    min-height: 230px;
  }

  .fbvv-usecase-feature > div {
    padding: 26px 24px;
  }

  .fbvv-order-path {
    grid-template-columns: 1fr;
  }

  .fbvv-order-path > i {
    transform: rotate(90deg);
    justify-self: center;
  }

  .fbvv-server-principle,
  .fbvv-related-and-cta .fbvv-cta-final {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fbvv-server-principle-icon,
  .fbvv-cta-final-icon {
    margin: 0 auto;
  }

  .fbvv-server-principle a,
  .fbvv-related-and-cta .fbvv-cta-final-btn {
    justify-self: center;
  }
}

@media (max-width: 575px) {
  .fbvv-container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .fbvv-section {
    padding: 44px 0;
  }

  .fbvv-section-title {
    font-size: 1.3rem;
  }

  .fbvv-hero-info-card {
    padding: 18px;
  }

  .fbvv-hero-feature-list {
    gap: 8px;
  }

  .fbvv-definition-note {
    grid-template-columns: 1fr;
  }

  .fbvv-evergreen-step {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .fbvv-evergreen-step .fbvv-card-icon {
    display: none;
  }

  .fbvv-howto-step {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
  }

  .fbvv-howto-marker > span {
    width: 40px;
    height: 40px;
    border-width: 4px;
  }

  .fbvv-howto-copy {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .fbvv-howto-copy .fbvv-card-icon {
    width: 42px;
    height: 42px;
  }

  .fbvv-testimonials {
    padding: 52px 0;
  }

  .fbvv-testi-card {
    width: calc(100vw - 36px);
  }

  .fbvv-faq-question {
    padding: 16px;
    font-size: .82rem;
  }

  .fbvv-faq-answer > div {
    padding: 0 16px 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbvv-mascot-stage,
  .fbvv-mascot-stage .fbvv-robot-img-sm,
  .fbvv-mini-1,
  .fbvv-mini-2,
  .fbvv-testi-row-1,
  .fbvv-testi-row-2 {
    animation: none !important;
  }
}

