/* Facebook VIP Binh Luan V2 — copied visual foundation from reference stylesheet, namespace renamed to fbvipcmt. */
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 {
  --fbvipcmt-primary: #1877F2;
  --fbvipcmt-primary-dark: #1565C0;
  --fbvipcmt-accent: #42B72A;
  --fbvipcmt-accent-light: #69C253;
  --fbvipcmt-gold: #FFD700;
  --fbvipcmt-love-red: #F33E58;
  --fbvipcmt-glass: rgba(255, 255, 255, 0.08);
  --fbvipcmt-glass-border: rgba(255, 255, 255, 0.14);
  --fbvipcmt-gradient: linear-gradient(135deg, #0a1628 0%, #132d50 50%, #0a1628 100%);
  --fbvipcmt-gradient-accent: linear-gradient(135deg, #1877F2 0%, #42B72A 100%);
  --fbvipcmt-gradient-mix: linear-gradient(135deg, #1877F2 0%, #42B72A 100%);
  --fbvipcmt-dark: #0a1628;
  --fbvipcmt-dark2: #132d50;
  --fbvipcmt-radius: 16px;
  --fbvipcmt-radius-lg: 24px;
  --fbvipcmt-shadow: 0 8px 32px rgba(24, 119, 242, 0.12);
  --fbvipcmt-section-bg-alt: #f0f6ff;
  --fbvipcmt-text: #555;
  --fbvipcmt-heading: #1a1a2e;
  --fbvipcmt-card-bg: #fff;
  --fbvipcmt-card-border: rgba(0, 0, 0, 0.06);
  --fbvipcmt-list-border: #eee;
}

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

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

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

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

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

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

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

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

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

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

@keyframes fbvipcmtFloat1 {

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

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

@keyframes fbvipcmtFloat2 {

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

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

@keyframes fbvipcmtDotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

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

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

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

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

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

  50% {
    transform: scale(1.15)
  }

  100% {
    transform: scale(1)
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-col-form {
  order: 0
}

.fbvipcmt-col-illustration {
  order: 0
}

.fbvipcmt-anim-fadeIn {
  animation: fbvipcmtFadeIn 0.8s ease both
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-server-trigger {
  position: relative
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-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 .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.15)
}

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

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

.fbvipcmt-reaction-option {
  position: relative
}

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

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

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

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

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

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

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

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

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

.fbvipcmt-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: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-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 .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  border-color: rgba(24, 119, 242, 0.2);
  transform: none
}

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

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

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

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

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

.fbvipcmt-livefeed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
  animation: none;
}

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

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

.fbvipcmt-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: fbvipcmtFeedSlideIn 0.5s ease-out
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-img-card {
  background: var(--fbvipcmt-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 .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  position: relative;
  overflow: hidden
}

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

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

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

.fbvipcmt-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  transform: translateY(0)
}

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-guide-card {
  background: var(--fbvipcmt-card-bg);
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid var(--fbvipcmt-card-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  position: relative;
  overflow: hidden
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-howto-card {
  background: var(--fbvipcmt-card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--fbvipcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  box-shadow: 0 12px 36px rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.2)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-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 .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  font-weight: 700;
  color: var(--fbvipcmt-heading);
  margin-bottom: 8px
}

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

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

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

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

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

.fbvipcmt-testi-row-1 {
  animation: none;
}

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

.fbvipcmt-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 .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  border-color: rgba(24, 119, 242, 0.25);
  transform: translateY(-3px)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-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(--fbvipcmt-primary);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  color: #fff
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fbvipcmt-fbadge {
    display: none
  }

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

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

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

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

  .fbvipcmt-section {
    padding: 12px 0
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    transform: translateX(0)
  }
}

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

.fbvipcmt-testi-track.fbvipcmt-testi-row-2 {
  animation: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-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"] .fbvipcmt-feature-box {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-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 .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  perspective: 1000px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-seo1-algo-card {
  position: relative;
  background: var(--fbvipcmt-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbvipcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-seo2-card {
  position: relative;
  background: var(--fbvipcmt-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbvipcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  overflow: hidden;
}

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

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

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

.fbvipcmt-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 .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-seo4-card {
  position: relative;
  background: var(--fbvipcmt-card-bg);
  border-radius: 16px;
  padding: 24px 20px 20px;
  border: 1px solid var(--fbvipcmt-card-border);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-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 .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-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 .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-price-card {
  position: relative;
  background: var(--fbvipcmt-card-bg);
  border-radius: 20px;
  border: 1px solid var(--fbvipcmt-card-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-strategy-card {
  position: relative;
  background: var(--fbvipcmt-card-bg);
  border: 1px solid var(--fbvipcmt-card-border);
  border-radius: 20px;
  padding: 28px 22px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
  overflow: hidden;
}

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

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

.fbvipcmt-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 .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbvipcmt-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 .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fbvipcmt-golden-hours__time {
    font-size: 1rem;
  }
}

/* VIP Comment service-specific extensions. */
/* Facebook VIP Binh Luan V2 — namespace isolated from reference stylesheet */
/* Base structure follows reference stylesheet. This sheet intentionally contains no server-state copy. */
body { overflow-x: hidden; }

:root {
  --fbvipcmt-primary: #1877f2;
  --fbvipcmt-primary-dark: #1257b7;
  --fbvipcmt-accent: #42b72a;
  --fbvipcmt-gold: #ffd700;
  --fbvipcmt-dark: #0a1628;
  --fbvipcmt-dark2: #132d50;
  --fbvipcmt-heading: #15233b;
  --fbvipcmt-text: #4d5b70;
  --fbvipcmt-muted: #68758b;
  --fbvipcmt-card: #ffffff;
  --fbvipcmt-alt: #f0f6ff;
  --fbvipcmt-border: rgba(19, 45, 80, .12);
  --fbvipcmt-radius: 16px;
  --fbvipcmt-radius-lg: 24px;
  --fbvipcmt-shadow: 0 10px 32px rgba(24, 119, 242, .12);
  --fbvipcmt-gradient: linear-gradient(135deg, #1877f2, #42b72a);
}

/* Hero: HTML keeps illustration first; desktop moves the form to the left. */
.fbvipcmt-hero, .fbvipcmt-section, .fbvipcmt-cta-final, .fbvipcmt-testimonials-section { width: 100vw; margin-left: calc(-50vw + 50%); }
.fbvipcmt-hero { position: relative; overflow: hidden; padding: 16px 0 28px; color: #fff; background: linear-gradient(135deg, #0a1628 0%, #132d50 45%, #0d1f3c 100%); }
.fbvipcmt-hero::before { position: absolute; inset: 0; content: ''; pointer-events: none; background: radial-gradient(ellipse at 72% 48%, rgba(24,119,242,.12), transparent 58%); }
.fbvipcmt-hero > .container-fluid { position: relative; z-index: 2; padding-right: 24px; padding-left: 24px; }
.fbvipcmt-hero-grid { position: absolute; inset: 0; pointer-events: none; opacity: .8; background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 42px 42px; }
.fbvipcmt-hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.fbvipcmt-hero-orb-1 { top: -90px; right: -55px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(24,119,242,.16), transparent 70%); }
.fbvipcmt-hero-orb-2 { bottom: -80px; left: 5%; width: 250px; height: 250px; background: radial-gradient(circle, rgba(66,183,42,.14), transparent 70%); }
.fbvipcmt-hero-orb-3 { top: 32%; left: 18%; width: 120px; height: 120px; background: radial-gradient(circle, rgba(24,119,242,.13), transparent 70%); }
.fbvipcmt-hero-row { align-items: flex-start !important; }
.fbvipcmt-col-illustration { padding-top: 8px; }
.fbvipcmt-col-form { order: -1; margin-top: -8px; }

.fbvipcmt-breadcrumb { margin-bottom: 10px; }
.fbvipcmt-breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 0; margin: 0; list-style: none; font-size: .78rem; }
.fbvipcmt-breadcrumb a { color: rgba(255,255,255,.62); text-decoration: none; transition: color .2s ease; }
.fbvipcmt-breadcrumb a:hover { color: var(--fbvipcmt-accent); }
.fbvipcmt-breadcrumb .separator { color: rgba(255,255,255,.32); font-size: .6rem; }
.fbvipcmt-breadcrumb .current { color: rgba(255,255,255,.88); font-weight: 600; }
.fbvipcmt-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; margin-bottom: 12px; border: 1px solid rgba(24,119,242,.38); border-radius: 999px; color: var(--fbvipcmt-accent); font-size: .82rem; font-weight: 700; background: rgba(24,119,242,.16); box-shadow: 0 0 20px rgba(24,119,242,.25); animation: fbvipcmtBadgeIn .6s ease both; }
.fbvipcmt-hero-title { margin: 0 0 8px; color: #fff; font-size: clamp(1.55rem, 4vw, 2.25rem); font-weight: 800; line-height: 1.25; letter-spacing: -.3px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.fbvipcmt-hero-title .accent { background: var(--fbvipcmt-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fbvipcmt-kw-rotator { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.fbvipcmt-kw { display: inline-block; padding: 4px 11px; border: 1px solid rgba(24,119,242,.26); border-radius: 999px; color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 600; white-space: nowrap; background: rgba(24,119,242,.1); }
.fbvipcmt-hero-info-card { position: relative; padding: 14px; margin-top: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.035); }
.fbvipcmt-hero-desc, .fbvipcmt-hero-anchor { margin: 0; color: rgba(255,255,255,.82); font-size: .91rem; line-height: 1.65; }
.fbvipcmt-hero-desc { margin-bottom: 10px; }
.fbvipcmt-hero-desc strong, .fbvipcmt-hero-anchor a { color: var(--fbvipcmt-accent); }
.fbvipcmt-hero-anchor a { text-decoration: none; border-bottom: 1px dashed currentColor; }

/* Premium order form */
.fbvipcmt-glass-form { position: relative; padding: 24px 28px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--fbvipcmt-radius); background: linear-gradient(160deg, rgba(24,119,242,.1), rgba(10,22,40,.96) 40%, rgba(19,45,80,.98)); box-shadow: 0 0 22px rgba(24,119,242,.23), 0 0 42px rgba(24,119,242,.09); }
.fbvipcmt-glass-form::before { position: absolute; inset: -1px; z-index: 0; padding: 1px; border-radius: inherit; content: ''; pointer-events: none; background: linear-gradient(135deg, rgba(24,119,242,.42), rgba(66,183,42,.2), rgba(24,119,242,.28)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.fbvipcmt-glass-form > * { position: relative; z-index: 1; }
.fbvipcmt-form-header { display: flex; align-items: center; gap: 14px; padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.09); }
.fbvipcmt-form-header-icon { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 12px; color: #fff; font-size: 1.18rem; background: var(--fbvipcmt-gradient); box-shadow: 0 4px 14px rgba(24,119,242,.3); }
.fbvipcmt-form-header-title { color: #fff; font-size: 1rem; font-weight: 700; line-height: 1.3; }
.fbvipcmt-form-header-sub { margin: 2px 0 0; color: rgba(255,255,255,.55); font-size: .75rem; }
.fbvipcmt-stepper { display: flex; align-items: center; justify-content: space-between; gap: 5px; padding: 0 4px; margin-bottom: 18px; }
.fbvipcmt-step { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.35); font-size: .68rem; font-weight: 600; white-space: nowrap; }
.fbvipcmt-step-num { display: grid; width: 24px; height: 24px; place-items: center; border: 2px solid rgba(255,255,255,.16); border-radius: 50%; color: rgba(255,255,255,.45); font-size: .65rem; font-weight: 700; background: rgba(255,255,255,.08); }
.fbvipcmt-step.active { color: #fff; }
.fbvipcmt-step.active .fbvipcmt-step-num { border-color: var(--fbvipcmt-primary); color: #fff; background: var(--fbvipcmt-gradient); box-shadow: 0 0 12px rgba(24,119,242,.42); }
.fbvipcmt-step.completed { color: rgba(255,255,255,.68); }
.fbvipcmt-step.completed .fbvipcmt-step-num { border-color: #4caf50; color: #fff; background: #4caf50; }
.fbvipcmt-form-group { min-width: 0; margin-bottom: 16px; }
.fbvipcmt-form-label { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; color: rgba(255,255,255,.92); font-size: .82rem; font-weight: 600; }
.fbvipcmt-form-label i { color: var(--fbvipcmt-primary); font-size: .88rem; }
.fbvipcmt-input, .fbvipcmt-textarea { width: 100%; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; color: #fff; font-size: .88rem; outline: 0; box-sizing: border-box; background: rgba(255,255,255,.07); transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease; }
.fbvipcmt-input { padding: 12px 14px; }
.fbvipcmt-textarea { min-height: 44px; padding: 10px 14px; resize: vertical; }
.fbvipcmt-input::placeholder, .fbvipcmt-textarea::placeholder { color: rgba(255,255,255,.38); }
.fbvipcmt-input:focus, .fbvipcmt-textarea:focus { border-color: var(--fbvipcmt-primary); background: rgba(255,255,255,.1); box-shadow: 0 0 0 3px rgba(24,119,242,.15); }
.fbvipcmt-help { display: block; margin-top: 5px; color: rgba(255,255,255,.56); font-size: .72rem; line-height: 1.45; }
.fbvipcmt-skip-group, .fbvipcmt-skip-panel { padding: 12px; margin: 4px 0 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.035); }
.fbvipcmt-skip-item, .fbvipcmt-check { display: flex; align-items: center; gap: 8px; margin: 6px 0; color: rgba(255,255,255,.77); font-size: .8rem; cursor: pointer; }
.fbvipcmt-skip-item input, .fbvipcmt-check input { width: 16px; height: 16px; margin: 0; accent-color: var(--fbvipcmt-primary); }
.fbvipcmt-qty-row { display: flex; }
.fbvipcmt-qty-row .fbvipcmt-input { border-right: 0; border-radius: 10px 0 0 10px; }
.fbvipcmt-qty-suffix { display: flex; align-items: center; padding: 0 15px; border: 1px solid rgba(255,255,255,.15); border-left: 0; border-radius: 0 10px 10px 0; color: var(--fbvipcmt-primary); font-size: .82rem; font-weight: 700; white-space: nowrap; background: rgba(24,119,242,.14); }
.fbvipcmt-price-box { padding: 10px 13px; margin: 10px 0; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; background: rgba(255,255,255,.04); }
.fbvipcmt-price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 3px 0; }
.fbvipcmt-price-label { color: rgba(255,255,255,.63); font-size: .79rem; }
.fbvipcmt-price-value { color: #fff; font-size: .87rem; font-weight: 700; }
.fbvipcmt-price-total { color: var(--fbvipcmt-gold); font-size: 1.04rem; font-weight: 800; }
.fbvipcmt-cta-btn { position: relative; width: 100%; padding: 14px; overflow: hidden; border: 0; border-radius: 12px; color: #fff; cursor: pointer; font-size: 1rem; font-weight: 700; background: var(--fbvipcmt-gradient); box-shadow: 0 7px 18px rgba(24,119,242,.22); transition: transform .2s ease, box-shadow .2s ease; }
.fbvipcmt-cta-btn::after { position: absolute; top: 0; left: -110%; width: 70%; height: 100%; content: ''; background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent); animation: none; }
.fbvipcmt-cta-btn:hover { box-shadow: 0 10px 24px rgba(24,119,242,.35); transform: translateY(-2px); }
.fbvipcmt-trust-mini { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 16px; padding-top: 12px; }
.fbvipcmt-trust-mini-item { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,.61); font-size: .7rem; }
.fbvipcmt-trust-mini-item i { color: var(--fbvipcmt-accent); }

/* Mascot, statistics and recent activity */
.fbvipcmt-proof-panel { padding: 20px; margin-top: 14px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--fbvipcmt-radius-lg); background: rgba(10,22,40,.94); }
.fbvipcmt-proof-hero { display: flex; align-items: center; gap: 18px; padding-bottom: 16px; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.1); }
.fbvipcmt-proof-robot { position: relative; display: grid; width: 130px; height: 130px; flex: 0 0 130px; place-items: center; }
.fbvipcmt-cat-glow { position: absolute; width: 106px; height: 106px; border-radius: 50%; background: radial-gradient(circle, rgba(24,119,242,.27), transparent 70%); }
.fbvipcmt-robot-img-sm { position: relative; z-index: 1; width: 120px; max-height: 128px; object-fit: contain; filter: drop-shadow(0 6px 20px rgba(24,119,242,.3)); }
.fbvipcmt-fbadge { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border: 1px solid rgba(24,119,242,.35); border-radius: 12px; color: #fff; font-size: .56rem; font-weight: 700; white-space: nowrap; background: rgba(24,119,242,.2); box-shadow: 0 3px 10px rgba(24,119,242,.14); }
.fbvipcmt-fbadge i { color: var(--fbvipcmt-accent); }
.fbvipcmt-mini-1 { top: 0; right: -8px; animation: none; }
.fbvipcmt-mini-2 { bottom: 3px; left: -8px; animation: none; }
.fbvipcmt-mini-3 { top: 51%; right: -13px; opacity: .82; }
.fbvipcmt-proof-stats { display: grid; flex: 1; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.fbvipcmt-pstat { padding: 10px 6px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; text-align: center; background: rgba(255,255,255,.04); transition: border-color .2s ease, background-color .2s ease, transform .2s ease; }
.fbvipcmt-pstat:hover { border-color: rgba(24,119,242,.25); background: rgba(24,119,242,.09); transform: translateY(-2px); }
.fbvipcmt-pstat-icon { margin-bottom: 4px; color: var(--fbvipcmt-primary); font-size: .92rem; }
.fbvipcmt-pstat-num { color: #fff; font-size: 1.1rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.fbvipcmt-pstat-label { margin-top: 1px; color: rgba(255,255,255,.53); font-size: .62rem; letter-spacing: .35px; text-transform: uppercase; }
.fbvipcmt-livefeed { position: relative; max-height: 205px; overflow: hidden; }
.fbvipcmt-livefeed::after { position: absolute; right: 0; bottom: 0; left: 0; height: 36px; content: ''; pointer-events: none; background: linear-gradient(transparent, rgba(10,22,40,.98)); }
.fbvipcmt-livefeed-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.fbvipcmt-livefeed-dot { width: 8px; height: 8px; border-radius: 50%; background: #4caf50; box-shadow: 0 0 8px rgba(76,175,80,.6); animation: none; }
.fbvipcmt-livefeed-title { color: rgba(255,255,255,.68); font-size: .72rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.fbvipcmt-livefeed-list { display: flex; flex-direction: column; gap: 6px; }
.fbvipcmt-livefeed-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.06); border-radius: 10px; background: rgba(255,255,255,.035); animation: fbvipcmtFeedIn .45s ease-out; }
.fbvipcmt-livefeed-avatar { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #fff; font-size: .72rem; font-weight: 700; background: var(--fbvipcmt-gradient); }
.fbvipcmt-livefeed-info { min-width: 0; flex: 1; }
.fbvipcmt-livefeed-name { overflow: hidden; color: #fff; font-size: .75rem; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.fbvipcmt-livefeed-name span { color: #7cb9ff; font-weight: 700; }
.fbvipcmt-livefeed-detail { overflow: hidden; color: rgba(255,255,255,.48); font-size: .65rem; text-overflow: ellipsis; white-space: nowrap; }
.fbvipcmt-livefeed-time { flex: 0 0 auto; color: rgba(255,255,255,.52); font-size: .62rem; white-space: nowrap; }

/* SEO content, cards and images */
.fbvipcmt-section { position: relative; padding: 52px 0; color: var(--fbvipcmt-text); background: #fff; }
.fbvipcmt-section:nth-of-type(even) { background: var(--fbvipcmt-alt); }
.fbvipcmt-section-title { margin: 0 0 12px; color: var(--fbvipcmt-heading); font-size: clamp(1.35rem, 2.7vw, 1.75rem); font-weight: 800; line-height: 1.36; letter-spacing: -.2px; }
.fbvipcmt-section-title.center, .fbvipcmt-section-desc.center { text-align: center; }
.fbvipcmt-section-title.center::after { display: block; width: 58px; height: 3px; margin: 12px auto 0; border-radius: 3px; content: ''; background: var(--fbvipcmt-gradient); }
.fbvipcmt-section-desc { max-width: 760px; margin: 0 auto 28px; color: var(--fbvipcmt-muted); font-size: .94rem; line-height: 1.7; }
.fbvipcmt-section-text { color: var(--fbvipcmt-text); font-size: .94rem; line-height: 1.82; }
.fbvipcmt-section-text strong { color: var(--fbvipcmt-heading); }
.fbvipcmt-img-card, .fbvipcmt-seo-visual { overflow: hidden; border: 1px solid var(--fbvipcmt-border); border-radius: var(--fbvipcmt-radius); background: #fff; box-shadow: var(--fbvipcmt-shadow); }
.fbvipcmt-section-img, .fbvipcmt-img-card img, .fbvipcmt-seo-img { display: block; width: 100%; height: auto; cursor: zoom-in; transition: transform .35s ease; }
.fbvipcmt-img-card:hover img, .fbvipcmt-seo-visual:hover .fbvipcmt-seo-img { transform: scale(1.025); }
.fbvipcmt-guide-grid, .fbvipcmt-benefits-grid, .fbvipcmt-tips-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.fbvipcmt-guide-card, .fbvipcmt-tip-card, .fbvipcmt-benefit-card, .fbvipcmt-howto-card { overflow: hidden; border: 1px solid var(--fbvipcmt-border); border-radius: var(--fbvipcmt-radius); background: var(--fbvipcmt-card); box-shadow: 0 7px 20px rgba(19,45,80,.06); transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.fbvipcmt-guide-card:hover, .fbvipcmt-tip-card:hover, .fbvipcmt-benefit-card:hover, .fbvipcmt-howto-card:hover { border-color: rgba(24,119,242,.35); box-shadow: var(--fbvipcmt-shadow); transform: translateY(-4px); }
.fbvipcmt-guide-card-body, .fbvipcmt-howto-card-body, .fbvipcmt-tip-card-body { padding: 18px; }
.fbvipcmt-guide-card h3, .fbvipcmt-guide-card h4, .fbvipcmt-howto-card h3, .fbvipcmt-howto-card h4, .fbvipcmt-tip-card h4, .fbvipcmt-benefit-card h4 { color: var(--fbvipcmt-heading); font-size: 1rem; font-weight: 750; line-height: 1.45; }
.fbvipcmt-guide-card p, .fbvipcmt-howto-card p, .fbvipcmt-tip-card p, .fbvipcmt-benefit-card p { color: var(--fbvipcmt-text); font-size: .87rem; line-height: 1.65; }
.fbvipcmt-step-badge, .fbvipcmt-card-icon { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 12px; border-radius: 12px; color: #fff; font-weight: 800; background: var(--fbvipcmt-gradient); }
.fbvipcmt-highlight-box, .fbvipcmt-note-box { padding: 16px 18px; border-left: 4px solid var(--fbvipcmt-accent); border-radius: 0 12px 12px 0; color: #1f3c2b; background: rgba(66,183,42,.1); }
.fbvipcmt-reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.fbvipcmt-reveal.visible { opacity: 1; transform: translateY(0); }

/* Testimonials use their own contrast surface to avoid blending into the section background. */
.fbvipcmt-testimonials, .fbvipcmt-testimonials-section { overflow: hidden; padding: 56px 0; background: linear-gradient(135deg, #e8f1ff, #f7fbff); }
.fbvipcmt-testimonials .fbvipcmt-section-title, .fbvipcmt-testimonials-section .fbvipcmt-section-title { color: #102a4f; }
.fbvipcmt-testimonial-track, .fbvipcmt-marquee-track { display: flex; width: max-content; gap: 16px; padding: 8px 0; animation: none; }
.fbvipcmt-testimonial-card { width: min(350px, 82vw); padding: 20px; border: 1px solid rgba(24,119,242,.22); border-radius: 16px; color: #26384f; background: #fff; box-shadow: 0 9px 24px rgba(19,45,80,.13); }
.fbvipcmt-testimonial-top { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.fbvipcmt-testimonial-avatar { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: #fff; font-size: .82rem; font-weight: 800; background: var(--fbvipcmt-gradient); }
.fbvipcmt-testimonial-name { color: #152b4e; font-size: .9rem; font-weight: 800; }
.fbvipcmt-testimonial-role { color: #5a6980; font-size: .75rem; }
.fbvipcmt-testimonial-stars { margin-left: auto; color: #e2a500; font-size: .76rem; white-space: nowrap; }
.fbvipcmt-testimonial-card blockquote, .fbvipcmt-testimonial-card p { margin: 0; color: #3f5067; font-size: .87rem; line-height: 1.7; }
.fbvipcmt-testimonial-tag { display: inline-block; padding: 4px 8px; margin-top: 13px; border-radius: 999px; color: #0e5abe; font-size: .7rem; font-weight: 700; background: #e8f1ff; }
.fbvipcmt-testimonial-track:hover, .fbvipcmt-marquee-track:hover { animation-play-state: paused; }

/* FAQ, related services and final conversion panel */
.fbvipcmt-faq { max-width: 900px; margin: 0 auto; }
.fbvipcmt-faq .accordion-item, .fbvipcmt-faq-item { margin-bottom: 10px; overflow: hidden; border: 1px solid var(--fbvipcmt-border); border-radius: 12px !important; background: #fff; }
.fbvipcmt-faq .accordion-button, .fbvipcmt-faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 15px 18px; border: 0; color: var(--fbvipcmt-heading); cursor: pointer; font-size: .92rem; font-weight: 700; text-align: left; background: #fff; box-shadow: none; }
.fbvipcmt-faq .accordion-button:not(.collapsed), .fbvipcmt-faq-item.active .fbvipcmt-faq-q { color: var(--fbvipcmt-primary); background: #f6faff; }
.fbvipcmt-faq .accordion-body, .fbvipcmt-faq-a { padding: 0 18px 16px; color: var(--fbvipcmt-text); font-size: .88rem; line-height: 1.72; }
.fbvipcmt-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 22px; }
.fbvipcmt-related-card { display: block; padding: 22px 16px; border: 1px solid var(--fbvipcmt-border); border-radius: var(--fbvipcmt-radius); color: inherit; text-align: center; text-decoration: none; background: #fff; transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease; }
.fbvipcmt-related-card:hover { border-color: var(--fbvipcmt-primary); box-shadow: var(--fbvipcmt-shadow); transform: translateY(-4px); }
.fbvipcmt-related-icon { display: grid; width: 52px; height: 52px; place-items: center; margin: 0 auto 12px; border-radius: 50%; color: var(--fbvipcmt-primary); font-size: 1.35rem; background: rgba(24,119,242,.1); }
.fbvipcmt-related-card h3, .fbvipcmt-related-card h4 { color: var(--fbvipcmt-heading); font-size: .98rem; font-weight: 750; }
.fbvipcmt-related-card p { margin: 0; color: var(--fbvipcmt-text); font-size: .82rem; line-height: 1.6; }
.fbvipcmt-cta-final { padding: 54px 24px; color: #fff; text-align: center; background: linear-gradient(135deg, #0b2d60, #1877f2 55%, #248c34); }
.fbvipcmt-cta-final h3 { margin: 0 0 10px; color: #fff; font-size: clamp(1.45rem,3vw,1.8rem); font-weight: 800; }
.fbvipcmt-cta-final p { margin: 0 auto 20px; color: rgba(255,255,255,.9); font-size: .95rem; }
.fbvipcmt-cta-final-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border: 1px solid #fff; border-radius: 999px; color: var(--fbvipcmt-primary); font-weight: 750; text-decoration: none; background: #fff; transition: color .2s ease, background-color .2s ease, transform .2s ease; }
.fbvipcmt-cta-final-btn:hover { color: #fff; background: transparent; transform: translateY(-2px); }

.fbvipcmt-lightbox { position: fixed; z-index: 2000; inset: 0; display: grid; padding: 24px; place-items: center; opacity: 0; pointer-events: none; background: rgba(4,11,25,.9); transition: opacity .22s ease; }
.fbvipcmt-lightbox.active { opacity: 1; pointer-events: auto; }
.fbvipcmt-lightbox img { max-width: min(1100px, 94vw); max-height: 88vh; border-radius: 12px; box-shadow: 0 15px 50px rgba(0,0,0,.45); }
.fbvipcmt-lightbox-close { position: fixed; top: 18px; right: 20px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; cursor: pointer; background: rgba(255,255,255,.1); }
@keyframes fbvipcmtShimmer { 0% { left: -110%; } 50%, 100% { left: 120%; } }
@keyframes fbvipcmtBadgeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fbvipcmtFloatOne { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes fbvipcmtFloatTwo { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fbvipcmtDotBlink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes fbvipcmtFeedIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fbvipcmtMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 991.98px) {
  .fbvipcmt-col-form { order: 0; margin-top: 0; }
  .fbvipcmt-col-illustration { margin-top: 24px; }
  .fbvipcmt-proof-panel { max-width: 680px; }
  .fbvipcmt-guide-grid, .fbvipcmt-benefits-grid, .fbvipcmt-tips-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 767.98px) {
  .fbvipcmt-hero > .container-fluid { padding-right: 16px; padding-left: 16px; }
  .fbvipcmt-glass-form { padding: 20px 16px; }
  .fbvipcmt-stepper { overflow-x: auto; justify-content: flex-start; padding-bottom: 2px; }
  .fbvipcmt-step { flex: 0 0 auto; }
  .fbvipcmt-form-row-2col { grid-template-columns: 1fr; }
  .fbvipcmt-proof-hero { align-items: flex-start; gap: 12px; }
  .fbvipcmt-proof-robot { width: 104px; height: 112px; flex-basis: 104px; }
  .fbvipcmt-robot-img-sm { width: 98px; }
  .fbvipcmt-fbadge { font-size: .5rem; }
  .fbvipcmt-proof-stats { gap: 7px; }
  .fbvipcmt-pstat { padding: 8px 3px; }
  .fbvipcmt-section { padding: 42px 0; }
  .fbvipcmt-guide-grid, .fbvipcmt-benefits-grid, .fbvipcmt-tips-grid, .fbvipcmt-related-grid { grid-template-columns: 1fr; }
  .fbvipcmt-testimonials, .fbvipcmt-testimonials-section { padding: 42px 0; }
}
@media (max-width: 420px) {
  .fbvipcmt-hero-title { font-size: 1.5rem; }
  .fbvipcmt-kw { font-size: .68rem; }
  .fbvipcmt-proof-hero { display: block; }
  .fbvipcmt-proof-robot { margin: 0 auto 10px; }
  .fbvipcmt-trust-mini { justify-content: flex-start; }
}

[data-bs-theme="dark"] .fbvipcmt-section { background: #0a1020; }
[data-bs-theme="dark"] .fbvipcmt-section:nth-of-type(even) { background: #080d1a; }
[data-bs-theme="dark"] .fbvipcmt-section-title, [data-bs-theme="dark"] .fbvipcmt-guide-card h3, [data-bs-theme="dark"] .fbvipcmt-guide-card h4, [data-bs-theme="dark"] .fbvipcmt-howto-card h3, [data-bs-theme="dark"] .fbvipcmt-related-card h3, [data-bs-theme="dark"] .fbvipcmt-related-card h4 { color: #edf5ff; }
[data-bs-theme="dark"] .fbvipcmt-section-text, [data-bs-theme="dark"] .fbvipcmt-section-desc, [data-bs-theme="dark"] .fbvipcmt-guide-card p, [data-bs-theme="dark"] .fbvipcmt-howto-card p, [data-bs-theme="dark"] .fbvipcmt-related-card p { color: #c1cede; }
[data-bs-theme="dark"] .fbvipcmt-img-card, [data-bs-theme="dark"] .fbvipcmt-seo-visual, [data-bs-theme="dark"] .fbvipcmt-guide-card, [data-bs-theme="dark"] .fbvipcmt-tip-card, [data-bs-theme="dark"] .fbvipcmt-benefit-card, [data-bs-theme="dark"] .fbvipcmt-howto-card, [data-bs-theme="dark"] .fbvipcmt-related-card, [data-bs-theme="dark"] .fbvipcmt-faq .accordion-item, [data-bs-theme="dark"] .fbvipcmt-faq-item { border-color: rgba(255,255,255,.1); background: #121c30; }
[data-bs-theme="dark"] .fbvipcmt-faq .accordion-button, [data-bs-theme="dark"] .fbvipcmt-faq-q { color: #eef5ff; background: #121c30; }
[data-bs-theme="dark"] .fbvipcmt-faq .accordion-button:not(.collapsed), [data-bs-theme="dark"] .fbvipcmt-faq-item.active .fbvipcmt-faq-q { background: #162949; }
[data-bs-theme="dark"] .fbvipcmt-faq .accordion-body, [data-bs-theme="dark"] .fbvipcmt-faq-a { color: #c6d4e6; }
[data-bs-theme="dark"] .fbvipcmt-testimonials, [data-bs-theme="dark"] .fbvipcmt-testimonials-section { background: linear-gradient(135deg, #0d1930, #101e35); }
[data-bs-theme="dark"] .fbvipcmt-testimonials .fbvipcmt-section-title, [data-bs-theme="dark"] .fbvipcmt-testimonials-section .fbvipcmt-section-title { color: #f2f7ff; }
[data-bs-theme="dark"] .fbvipcmt-testimonial-card { border-color: rgba(102,170,255,.32); color: #dbe8f7; background: #172641; box-shadow: 0 10px 25px rgba(0,0,0,.24); }
[data-bs-theme="dark"] .fbvipcmt-testimonial-name { color: #fff; }
[data-bs-theme="dark"] .fbvipcmt-testimonial-role, [data-bs-theme="dark"] .fbvipcmt-testimonial-card blockquote, [data-bs-theme="dark"] .fbvipcmt-testimonial-card p { color: #c5d4e6; }

:root {
  --fbvipcmt-muted: #65758b;
  --fbvipcmt-border: #dfe8f3;
  --fbvipcmt-alt: #f6f9fd;
  --fbvipcmt-card: #fff;
}

.fbvipcmt-container {
  width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
}

.fbvipcmt-hero-row {
  flex-direction: row;
}

.fbvipcmt-col-form {
  order: 0;
}

.fbvipcmt-anim-rise {
  animation: fbvipcmtSlideUp .72s cubic-bezier(.16, 1, .3, 1) both;
}

.fbvipcmt-hero-headline {
  max-width: 720px;
}

.fbvipcmt-form-row-3col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fbvipcmt-form-row-3col > .fbvipcmt-form-group {
  margin-bottom: 0;
}

.fbvipcmt-label-break {
  display: block;
}

@media (min-width: 768px) {
  .fbvipcmt-form-row-3col .fbvipcmt-form-label {
    min-height: 2.5rem;
    align-items: flex-end;
  }
}

.fbvipcmt-input-suffix {
  display: flex;
  min-width: 0;
}

.fbvipcmt-input-suffix .fbvipcmt-input {
  min-width: 0;
  border-right: 0;
  border-radius: 10px 0 0 10px;
}

.fbvipcmt-input-suffix span {
  display: flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.15);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  background: rgba(255,255,255,.08);
}

.fbvipcmt-glass-form small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.56);
  font-size: .72rem;
  line-height: 1.45;
}

.fbvipcmt-keyword-box {
  margin-top: 9px;
}

.fbvipcmt-keyword-box:disabled {
  cursor: not-allowed;
  opacity: .48;
}

.fbvipcmt-section h2,
.fbvipcmt-ideas h2 {
  margin: 0 0 16px;
  color: var(--fbvipcmt-heading);
  font-size: clamp(1.35rem, 2.7vw, 1.82rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.2px;
}

.fbvipcmt-section h3,
.fbvipcmt-ideas h3 {
  color: var(--fbvipcmt-heading);
}

.fbvipcmt-section p,
.fbvipcmt-section li,
.fbvipcmt-ideas p {
  color: var(--fbvipcmt-text);
  font-size: .94rem;
  line-height: 1.78;
}

.fbvipcmt-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 9px !important;
  color: #1265cc !important;
  font-size: .74rem !important;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fbvipcmt-section-eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  content: '';
  background: var(--fbvipcmt-gradient-accent);
}

.fbvipcmt-section-heading {
  max-width: 850px;
  margin-bottom: 22px;
}

.fbvipcmt-editorial-grid,
.fbvipcmt-split-media {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.fbvipcmt-editorial-grid figure,
.fbvipcmt-split-media figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--fbvipcmt-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(19,45,80,.12);
}

.fbvipcmt-editorial-grid figure img,
.fbvipcmt-split-media figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.fbvipcmt-editorial-grid figcaption {
  padding: 11px 15px;
  color: var(--fbvipcmt-muted);
  font-size: .76rem;
  line-height: 1.55;
}

.fbvipcmt-editorial-grid.is-reverse > :first-child {
  grid-column: 2;
  grid-row: 1;
}

.fbvipcmt-editorial-grid.is-reverse > figure {
  grid-column: 1;
  grid-row: 1;
}

.fbvipcmt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.fbvipcmt-card-grid article,
.fbvipcmt-idea-grid article {
  padding: 24px 22px;
  border: 1px solid var(--fbvipcmt-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(19,45,80,.07);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.fbvipcmt-card-grid article:hover,
.fbvipcmt-idea-grid article:hover {
  border-color: rgba(24,119,242,.38);
  box-shadow: 0 13px 30px rgba(19,45,80,.11);
  transform: translateY(-4px);
}

.fbvipcmt-card-grid article > i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 1.1rem;
  background: var(--fbvipcmt-gradient-accent);
}

.fbvipcmt-card-grid h3,
.fbvipcmt-idea-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
}

.fbvipcmt-card-grid p,
.fbvipcmt-idea-grid p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.7;
}

.fbvipcmt-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--fbvipcmt-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(19,45,80,.08);
}

.fbvipcmt-table-wrap table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.fbvipcmt-table-wrap th,
.fbvipcmt-table-wrap td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--fbvipcmt-border);
  color: var(--fbvipcmt-text);
  font-size: .84rem;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.fbvipcmt-table-wrap th {
  color: #fff;
  font-weight: 800;
  background: #173b6c;
}

.fbvipcmt-table-wrap td:first-child {
  color: var(--fbvipcmt-heading);
  font-weight: 750;
  background: #f7faff;
}

.fbvipcmt-table-wrap tr:last-child td {
  border-bottom: 0;
}

.fbvipcmt-check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.fbvipcmt-check-list li {
  position: relative;
  padding-left: 29px;
}

.fbvipcmt-check-list li::before {
  position: absolute;
  top: .28em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  content: '✓';
  font-size: .68rem;
  font-weight: 900;
  background: #248c34;
}

.fbvipcmt-howto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.fbvipcmt-howto-card {
  height: 100%;
}

.fbvipcmt-howto-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.fbvipcmt-howto-card > div {
  padding: 18px 19px 20px;
}

.fbvipcmt-howto-card > div > span {
  display: inline-flex;
  padding: 4px 10px;
  margin-bottom: 9px;
  border-radius: 999px;
  color: #1265cc;
  font-size: .68rem;
  font-weight: 800;
  background: #e9f2ff;
}

.fbvipcmt-howto-card h3 {
  margin: 0 0 7px;
}

.fbvipcmt-howto-card p {
  margin: 0;
}

.fbvipcmt-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 30px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid #cfe0f5;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef6ff, #f9fcff);
  box-shadow: 0 12px 32px rgba(19,45,80,.08);
}

.fbvipcmt-callout ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fbvipcmt-callout li {
  position: relative;
  padding: 10px 12px 10px 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.78);
}

.fbvipcmt-callout li::before {
  position: absolute;
  top: 12px;
  left: 14px;
  color: #248c34;
  content: '✓';
  font-weight: 900;
}

.fbvipcmt-ideas {
  width: 100vw;
  padding: 48px 0;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(135deg, #0d2444, #173b6c);
}

.fbvipcmt-page > .fbvipcmt-section.fbvipcmt-ideas {
  background: linear-gradient(135deg, #0d2444, #173b6c);
}

.fbvipcmt-ideas h2,
.fbvipcmt-ideas .fbvipcmt-section-eyebrow,
.fbvipcmt-ideas .fbvipcmt-note {
  color: #fff !important;
}

.fbvipcmt-idea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.fbvipcmt-idea-grid article {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.96);
}

.fbvipcmt-note {
  margin: 18px 0 0 !important;
  color: rgba(255,255,255,.78) !important;
  font-size: .78rem !important;
}

.fbvipcmt-comment-count {
  display: block;
  margin-top: 6px;
  color: var(--fbvipcmt-primary);
  font-weight: 700;
}

[data-fbvipcmt-lightbox] {
  cursor: zoom-in;
}

body.fbvipcmt-lightbox-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .fbvipcmt-editorial-grid,
  .fbvipcmt-split-media,
  .fbvipcmt-callout {
    grid-template-columns: 1fr;
  }

  .fbvipcmt-editorial-grid.is-reverse > :first-child,
  .fbvipcmt-editorial-grid.is-reverse > figure {
    grid-column: auto;
    grid-row: auto;
  }

  .fbvipcmt-editorial-grid.is-reverse > figure {
    order: 2;
  }

  .fbvipcmt-card-grid,
  .fbvipcmt-idea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .fbvipcmt-label-break {
    display: none;
  }

  .fbvipcmt-form-row-3col,
  .fbvipcmt-card-grid,
  .fbvipcmt-howto-grid,
  .fbvipcmt-idea-grid {
    grid-template-columns: 1fr;
  }

  .fbvipcmt-form-row-3col > .fbvipcmt-form-group {
    margin-bottom: 2px;
  }

  .fbvipcmt-editorial-grid,
  .fbvipcmt-split-media,
  .fbvipcmt-callout {
    gap: 22px;
  }

  .fbvipcmt-table-wrap {
    margin-right: -4px;
    margin-left: -4px;
    border-radius: 14px;
  }
}

[data-bs-theme="dark"] .fbvipcmt-card-grid article,
[data-bs-theme="dark"] .fbvipcmt-idea-grid article,
[data-bs-theme="dark"] .fbvipcmt-editorial-grid figure,
[data-bs-theme="dark"] .fbvipcmt-split-media figure,
[data-bs-theme="dark"] .fbvipcmt-table-wrap,
[data-bs-theme="dark"] .fbvipcmt-callout {
  border-color: rgba(255,255,255,.11);
  background: #121c30;
}

[data-bs-theme="dark"] .fbvipcmt-section h2,
[data-bs-theme="dark"] .fbvipcmt-section h3,
[data-bs-theme="dark"] .fbvipcmt-card-grid h3,
[data-bs-theme="dark"] .fbvipcmt-idea-grid h3 {
  color: #eef5ff;
}

[data-bs-theme="dark"] .fbvipcmt-section p,
[data-bs-theme="dark"] .fbvipcmt-section li,
[data-bs-theme="dark"] .fbvipcmt-card-grid p,
[data-bs-theme="dark"] .fbvipcmt-idea-grid p,
[data-bs-theme="dark"] .fbvipcmt-editorial-grid figcaption {
  color: #c5d2e2;
}

[data-bs-theme="dark"] .fbvipcmt-table-wrap th {
  background: #173b6c;
}

[data-bs-theme="dark"] .fbvipcmt-table-wrap td {
  border-color: rgba(255,255,255,.09);
  color: #c5d2e2;
}

[data-bs-theme="dark"] .fbvipcmt-table-wrap td:first-child,
[data-bs-theme="dark"] .fbvipcmt-callout li {
  color: #eef5ff;
  background: rgba(255,255,255,.045);
}

/* Deliberate lightweight motion budget: mascot badges, live feed and testimonials. */
.fbvipcmt-mini-1 { animation: fbvipcmtFloatOne 3.5s ease-in-out infinite; }
.fbvipcmt-mini-2 { animation: fbvipcmtFloatTwo 4s ease-in-out .7s infinite; }
.fbvipcmt-livefeed-dot { animation: fbvipcmtDotBlink 1.5s ease-in-out infinite; }

/* === VIP COMMENT CONTENT REFINEMENT — 2026-07-25 === */
.fbvipcmt-hl-primary {
  color: #1265cc;
  font-weight: 800;
}

.fbvipcmt-section-lead {
  max-width: 900px;
  margin: 0 0 24px;
  color: var(--fbvipcmt-text);
  font-size: .96rem;
  line-height: 1.78;
}

.fbvipcmt-definition-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.fbvipcmt-definition-notes > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(24,119,242,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 7px 20px rgba(19,45,80,.06);
}

.fbvipcmt-definition-notes i {
  grid-row: 1 / 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--fbvipcmt-gradient);
}

.fbvipcmt-definition-notes strong {
  color: var(--fbvipcmt-heading);
  font-size: .9rem;
}

.fbvipcmt-definition-notes span {
  color: var(--fbvipcmt-muted);
  font-size: .77rem;
  line-height: 1.45;
}

.fbvipcmt-card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fbvipcmt-control-panel {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  margin-top: 26px;
  border: 1px solid rgba(24,119,242,.18);
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0d2444, #173b6c);
  box-shadow: 0 14px 36px rgba(13,36,68,.18);
}

.fbvipcmt-control-intro > span,
.fbvipcmt-ideas-heading > span {
  display: inline-block;
  margin-bottom: 8px;
  color: #7fbeff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fbvipcmt-control-intro h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.fbvipcmt-control-intro p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.fbvipcmt-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fbvipcmt-control-grid > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 13px;
  background: rgba(255,255,255,.055);
}

.fbvipcmt-control-grid b {
  grid-row: 1 / 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: .7rem;
  background: linear-gradient(135deg, #1877f2, #42b72a);
}

.fbvipcmt-control-grid strong {
  color: #fff;
  font-size: .84rem;
}

.fbvipcmt-control-grid span {
  color: rgba(255,255,255,.62);
  font-size: .73rem;
  line-height: 1.45;
}

.fbvipcmt-not-for {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 15px 18px;
  margin-top: 18px;
  border-left: 4px solid #f0a21b;
  border-radius: 0 12px 12px 0;
  color: #5a4521;
  background: #fff7e6;
}

.fbvipcmt-not-for strong {
  flex: 0 0 auto;
  color: #8a5b05;
}

.fbvipcmt-sba-test {
  padding: 16px 18px;
  margin-top: 18px;
  border: 1px solid rgba(24,119,242,.18);
  border-radius: 14px;
  background: #f2f7ff;
}

.fbvipcmt-sba-test > span {
  display: block;
  margin-bottom: 6px;
  color: #1265cc;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fbvipcmt-sba-test p {
  margin: 0;
  color: #41536d;
  font-size: .84rem;
  line-height: 1.65;
}

.fbvipcmt-comment-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.fbvipcmt-comment-examples article {
  padding: 20px;
  border: 1px solid var(--fbvipcmt-border);
  border-radius: 16px;
  background: #fff;
}

.fbvipcmt-comment-examples article.is-weak {
  border-top: 4px solid #de6262;
}

.fbvipcmt-comment-examples article.is-useful {
  border-top: 4px solid #2b963d;
}

.fbvipcmt-comment-examples span {
  display: block;
  margin-bottom: 8px;
  color: var(--fbvipcmt-heading);
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fbvipcmt-comment-examples p {
  margin: 0;
  line-height: 1.75;
}

.fbvipcmt-example-note {
  margin: 12px 0 0 !important;
  color: var(--fbvipcmt-muted) !important;
  font-size: .78rem !important;
}

.fbvipcmt-howto-card > img {
  border-bottom: 1px solid var(--fbvipcmt-border);
  background: #eef4fb;
}

.fbvipcmt-space-top {
  margin-top: clamp(30px, 5vw, 56px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(19,45,80,.12);
}

.fbvipcmt-editorial-grid h3 {
  margin: 0 0 14px;
  color: var(--fbvipcmt-heading);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  font-weight: 800;
  line-height: 1.38;
}

.fbvipcmt-ideas-lead {
  max-width: 880px;
  color: #e8f2ff !important;
  font-size: .95rem !important;
  line-height: 1.75 !important;
}

.fbvipcmt-maintenance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 24px;
}

.fbvipcmt-maintenance-grid article {
  padding: 20px;
  border: 1px solid rgba(139,194,255,.3);
  border-radius: 16px;
  background: rgba(6,18,35,.68);
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
}

.fbvipcmt-maintenance-grid b {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: .72rem;
  background: var(--fbvipcmt-gradient);
}

.fbvipcmt-maintenance-grid h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: .94rem;
}

.fbvipcmt-maintenance-grid p {
  margin: 0;
  color: #dbeafe !important;
  font-size: .8rem !important;
  line-height: 1.65 !important;
}

.fbvipcmt-ideas-heading {
  max-width: 830px;
  margin-top: 38px;
}

.fbvipcmt-ideas-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.4;
}

.fbvipcmt-idea-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Testimonials mirror the proven tang-like two-row marquee structure. */
.fbvipcmt-testimonials-section {
  overflow: hidden;
  padding: 48px 0 54px;
  color: #fff;
  background: linear-gradient(135deg, #0a1628 0%, #132d50 50%, #0a1628 100%);
}

.fbvipcmt-testimonials-section .fbvipcmt-section-title {
  color: #fff;
}

.fbvipcmt-testimonials-section .fbvipcmt-section-title::after {
  background: var(--fbvipcmt-gradient);
}

.fbvipcmt-testimonials-section .fbvipcmt-section-desc {
  max-width: 900px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.84);
}

.fbvipcmt-testimonial-wrapper {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.fbvipcmt-testi-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 6px 0;
  will-change: transform;
}

.fbvipcmt-testi-row-1 {
  animation: fbvipcmtTestiForward 72s linear infinite;
}

.fbvipcmt-testi-row-2,
.fbvipcmt-testi-track.fbvipcmt-testi-row-2 {
  margin-top: 16px;
  animation: fbvipcmtTestiReverse 78s linear infinite;
}

.fbvipcmt-testi-track:hover {
  animation-play-state: paused;
}

.fbvipcmt-testi-card,
.fbvipcmt-testi-row-2 .fbvipcmt-testi-card {
  display: flex;
  width: min(360px, 84vw);
  min-height: 250px;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.09);
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
  transform: none;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.fbvipcmt-testi-card:hover {
  border-color: rgba(96,165,250,.46);
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}

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

.fbvipcmt-testi-header > div {
  min-width: 0;
}

.fbvipcmt-testi-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  background: var(--fbvipcmt-gradient);
}

.fbvipcmt-testi-name,
.fbvipcmt-testi-role {
  display: block;
}

.fbvipcmt-testi-name {
  overflow: hidden;
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fbvipcmt-testi-role {
  margin-top: 2px;
  color: rgba(255,255,255,.76);
  font-size: .7rem;
}

.fbvipcmt-testi-tag {
  align-self: flex-start;
  padding: 4px 10px;
  margin-bottom: 9px;
  border: 1px solid rgba(96,165,250,.28);
  border-radius: 999px;
  color: #b9dbff;
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: rgba(24,119,242,.16);
}

.fbvipcmt-testi-stars {
  margin-bottom: 9px;
  color: #ffc107;
  font-size: .73rem;
}

.fbvipcmt-testi-text {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  font-style: normal;
  line-height: 1.68;
}

@keyframes fbvipcmtTestiForward {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes fbvipcmtTestiReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 991.98px) {
  .fbvipcmt-card-grid-four,
  .fbvipcmt-maintenance-grid,
  .fbvipcmt-idea-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fbvipcmt-control-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .fbvipcmt-definition-notes,
  .fbvipcmt-card-grid-four,
  .fbvipcmt-control-grid,
  .fbvipcmt-comment-examples,
  .fbvipcmt-maintenance-grid,
  .fbvipcmt-idea-grid-four {
    grid-template-columns: 1fr;
  }

  .fbvipcmt-not-for {
    display: block;
  }

  .fbvipcmt-not-for strong {
    display: block;
    margin-bottom: 5px;
  }

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

  .fbvipcmt-testi-card {
    width: min(340px, 88vw);
    min-height: 0;
  }
}

[data-bs-theme="dark"] .fbvipcmt-definition-notes > div,
[data-bs-theme="dark"] .fbvipcmt-comment-examples article,
[data-bs-theme="dark"] .fbvipcmt-sba-test {
  border-color: rgba(255,255,255,.1);
  background: #121c30;
}

[data-bs-theme="dark"] .fbvipcmt-definition-notes strong,
[data-bs-theme="dark"] .fbvipcmt-comment-examples span,
[data-bs-theme="dark"] .fbvipcmt-editorial-grid h3 {
  color: #eef5ff;
}

[data-bs-theme="dark"] .fbvipcmt-definition-notes span,
[data-bs-theme="dark"] .fbvipcmt-sba-test p {
  color: #c1cede;
}

[data-bs-theme="dark"] .fbvipcmt-not-for {
  color: #ecd9ae;
  background: rgba(240,162,27,.12);
}
