body { overflow-x: hidden; }
.fbv2-hero,
.fbv2-breadcrumb,
.fbv2-toc,
.fbv2-cta-final {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

:root {
  --fb-primary: #1877F2;
  --fb-primary-dark: #1464CC;
  --fb-gradient: linear-gradient(135deg, #1877F2 0%, #0D47A1 50%, #1565C0 100%);
  --fb-gradient-light: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  --fb-accent: #00C853;
  --fb-accent2: #FF6D00;
  --fb-gold: #FFB300;
  --fb-dark: #1A1A2E;
  --fb-card-bg: rgba(255,255,255,0.95);
  --fb-glass: rgba(255,255,255,0.15);
  --fb-shadow: 0 8px 32px rgba(24,119,242,0.12);
  --fb-shadow-lg: 0 20px 60px rgba(24,119,242,0.15);
  --fb-radius: 16px;
  --fb-radius-lg: 24px;
}

/* --- Keyframe Animations --- */
@keyframes fbFloatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fbPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}
@keyframes fbSlideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fbGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes fbShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fbBounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); }
}
@keyframes fbGlow {
  0%,100% { box-shadow: 0 0 20px rgba(24,119,242,0.3); }
  50% { box-shadow: 0 0 40px rgba(24,119,242,0.6); }
}
@keyframes fbTypewriter {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes fbRotateIn {
  from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
  to { opacity: 1; transform: rotate(0deg) scale(1); }
}
@keyframes fbSlideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fbProgressBar {
  from { width: 0; }
  to { width: var(--progress-width, 100%); }
}
@keyframes fbRipple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes fbParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  50% { opacity: 1; transform: translateY(-20px) scale(1); }
  100% { opacity: 0; transform: translateY(-40px) scale(0); }
}

/* --- Scroll Reveal Classes --- */
.fb-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.fb-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.fb-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fb-reveal-left.revealed { opacity: 1; transform: translateX(0); }
.fb-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fb-reveal-right.revealed { opacity: 1; transform: translateX(0); }
.fb-reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
}
.fb-reveal-scale.revealed { opacity: 1; transform: scale(1); }
.fb-reveal-rotate {
  opacity: 0;
  transform: rotate(-5deg) translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34,1.56,0.64,1);
}
.fb-reveal-rotate.revealed { opacity: 1; transform: rotate(0) translateY(0); }

/* Stagger delays */
.fb-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.fb-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.fb-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.fb-stagger > *:nth-child(4) { transition-delay: 0.2s; }
.fb-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.fb-stagger > *:nth-child(6) { transition-delay: 0.3s; }
.fb-stagger > *:nth-child(7) { transition-delay: 0.35s; }
.fb-stagger > *:nth-child(8) { transition-delay: 0.4s; }
.fb-stagger > *:nth-child(9) { transition-delay: 0.45s; }

/* ========== HERO SECTION ========== */
.fbv2-hero {
  position: relative;
  background: var(--fb-gradient);
  background-size: 200% 200%;
  animation: fbGradientShift 8s ease infinite;
  padding: 80px 0 100px;
  overflow: visible;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.fbv2-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.fbv2-hero .hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.fbv2-hero .hero-orb-1 { width: 300px; height: 300px; top: -80px; right: -60px; animation: fbFloatUp 6s ease-in-out infinite; }
.fbv2-hero .hero-orb-2 { width: 200px; height: 200px; bottom: -50px; left: 5%; animation: fbFloatUp 8s ease-in-out infinite 1s; }
.fbv2-hero .hero-orb-3 { width: 120px; height: 120px; top: 30%; left: 15%; animation: fbFloatUp 5s ease-in-out infinite 0.5s; }

.fbv2-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: clamp(2.4rem, 5.5vw, 3.6rem);
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  white-space: nowrap;
}

/* ===== FLEX WRAPPER — H1 + keyword cùng dòng (desktop) ===== */
.fb-hero-headline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  flex-wrap: nowrap;
}

/* ===== KEYWORD ROTATOR — Slide Up & Glow ===== */
.fb-keyword-rotator {
  display: inline-block;
  height: clamp(2.2rem, 4.5vw, 3.2rem);
  overflow: hidden;
  position: relative;
  min-width: 380px;
}
.fb-keyword-rotator::after {
  display: none;
}

.fb-kw {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--kw-color, #FFFFFF);
  text-shadow: 0 0 20px var(--kw-glow, rgba(255,255,255,0.4)),
               0 0 40px var(--kw-glow, rgba(255,255,255,0.2)),
               0 2px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(100%);
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  animation: fbKwSlideUp 37.5s infinite;
}

@keyframes fbKwSlideUp {
  0%      { opacity: 0; transform: translateY(80%); }
  0.5%    { opacity: 1; transform: translateY(0); }
  6%      { opacity: 1; transform: translateY(0); }
  6.67%   { opacity: 0; transform: translateY(-80%); }
  100%    { opacity: 0; transform: translateY(-80%); }
}

/* 15 keywords — pastel colors with blue-toned glows */
.fb-kw:nth-child(1)  { animation-delay: 0s;      --kw-color: #FFFFFF;  --kw-glow: rgba(255,255,255,0.5); }
.fb-kw:nth-child(2)  { animation-delay: 2.5s;    --kw-color: #B3E5FC;  --kw-glow: rgba(129,212,250,0.5); }
.fb-kw:nth-child(3)  { animation-delay: 5s;      --kw-color: #BBDEFB;  --kw-glow: rgba(144,202,249,0.5); }
.fb-kw:nth-child(4)  { animation-delay: 7.5s;    --kw-color: #FFE0B2;  --kw-glow: rgba(255,204,128,0.5); }
.fb-kw:nth-child(5)  { animation-delay: 10s;     --kw-color: #FFF9C4;  --kw-glow: rgba(255,241,118,0.5); }
.fb-kw:nth-child(6)  { animation-delay: 12.5s;   --kw-color: #C8E6C9;  --kw-glow: rgba(165,214,167,0.5); }
.fb-kw:nth-child(7)  { animation-delay: 15s;     --kw-color: #E1BEE7;  --kw-glow: rgba(206,147,216,0.5); }
.fb-kw:nth-child(8)  { animation-delay: 17.5s;   --kw-color: #FFCDD2;  --kw-glow: rgba(239,154,154,0.5); }
.fb-kw:nth-child(9)  { animation-delay: 20s;     --kw-color: #B2EBF2;  --kw-glow: rgba(128,222,234,0.5); }
.fb-kw:nth-child(10) { animation-delay: 22.5s;   --kw-color: #FFCCBC;  --kw-glow: rgba(255,171,145,0.5); }
.fb-kw:nth-child(11) { animation-delay: 25s;     --kw-color: #F5F5F5;  --kw-glow: rgba(255,255,255,0.4); }
.fb-kw:nth-child(12) { animation-delay: 27.5s;   --kw-color: #D1C4E9;  --kw-glow: rgba(179,157,219,0.5); }
.fb-kw:nth-child(13) { animation-delay: 30s;     --kw-color: #80DEEA;  --kw-glow: rgba(0,242,234,0.5); }
.fb-kw:nth-child(14) { animation-delay: 32.5s;   --kw-color: #A5D6A7;  --kw-glow: rgba(129,199,132,0.5); }
.fb-kw:nth-child(15) { animation-delay: 35s;     --kw-color: #FFE082;  --kw-glow: rgba(255,213,79,0.5); }

/* Tagline — gradient text */
.fb-hero-tagline {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #42A5F5, #1877F2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fbv2-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  max-width: 600px;
}
.fbv2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fbPulse 3s ease-in-out infinite;
}
.fbv2-hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 2rem;
}
.fbv2-hero-stat { text-align: center; color: #fff; }
.fbv2-hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.fbv2-hero-stat-label { font-size: 0.8rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 1px; }
.fbv2-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--fb-primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.fbv2-hero-cta::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(24,119,242,0.1), transparent);
  animation: fbShimmer 3s ease-in-out infinite;
}
.fbv2-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  color: var(--fb-primary-dark);
}
/* ========== CAT ROBOT HERO SCENE (Elegant #5) ========== */
.fbv2-cat-scene {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  perspective: 900px;
}

/* Heart glow behind cat robot — synced with robot's chest LED */
.fbv2-cat-heart-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,200,227,0.4) 0%, rgba(168,216,234,0.15) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: catHeartPulse 2.5s ease-in-out infinite;
  z-index: 0;
}
.fbv2-cat-heart-glow::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 2px solid rgba(168,216,234,0.2);
  animation: catRingSpin 15s linear infinite;
}
.fbv2-cat-heart-glow::after {
  content: '';
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  border: 1px dashed rgba(212,165,116,0.15);
  animation: catRingSpin 25s linear infinite reverse;
}

/* Cat robot image */
.fbv2-cat-img {
  position: relative;
  z-index: 5;
  max-width: 280px;
  width: 100%;
  filter: drop-shadow(0 15px 40px rgba(0,0,0,0.25));
  animation: catFloat 4s ease-in-out infinite;
}

/* ===== 3D ORBIT RING ===== */
.fbv2-orbit-ring {
  position: absolute;
  width: 440px;
  height: 440px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(65deg);
  transform-style: preserve-3d;
  animation: orbitSpin 20s linear infinite;
  z-index: 4;
}

/* ===== FLIP CARD BADGES ===== */
.fbv2-flip-badge {
  position: absolute;
  width: 58px;
  height: 58px;
  perspective: 400px;
  /* Keep upright: counter-rotate the orbit spin */
  animation: badgeCounterSpin 20s linear infinite;
}

.fbv2-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: badgeAutoFlip 4s ease-in-out infinite;
}

.fbv2-flip-badge:nth-child(2) .fbv2-flip-inner { animation-delay: 0.5s; }
.fbv2-flip-badge:nth-child(3) .fbv2-flip-inner { animation-delay: 1.0s; }
.fbv2-flip-badge:nth-child(4) .fbv2-flip-inner { animation-delay: 1.5s; }
.fbv2-flip-badge:nth-child(5) .fbv2-flip-inner { animation-delay: 2.0s; }
.fbv2-flip-badge:nth-child(6) .fbv2-flip-inner { animation-delay: 2.5s; }
.fbv2-flip-badge:nth-child(7) .fbv2-flip-inner { animation-delay: 3.0s; }
.fbv2-flip-badge:nth-child(8) .fbv2-flip-inner { animation-delay: 3.5s; }

.fbv2-flip-front, .fbv2-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Front face = Icon */
.fbv2-flip-front {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.3), 0 0 15px rgba(168,216,234,0.2);
  color: #FFD54F;
  font-size: 1.1rem;
}

/* Back face = Keyword text */
.fbv2-flip-back {
  background: linear-gradient(135deg, rgba(168,216,234,0.35), rgba(212,165,116,0.2));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(212,165,116,0.35);
  box-shadow: 0 4px 24px rgba(168,216,234,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
  padding: 4px;
  transform: rotateY(180deg);
  border-radius: 14px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Hover: flip and grow */
.fbv2-flip-badge:hover .fbv2-flip-inner {
  animation-play-state: paused;
  transform: rotateY(180deg) scale(1.3);
}
.fbv2-flip-badge:hover {
  z-index: 10;
}

/* 8 positions on the circle (evenly spaced at 45° each) */
.fb-pos-1 { top: 0%;   left: 50%;  transform: translate(-50%, -50%); }
.fb-pos-2 { top: 14.6%; left: 85.4%; transform: translate(-50%, -50%); }
.fb-pos-3 { top: 50%;  left: 100%; transform: translate(-50%, -50%); }
.fb-pos-4 { top: 85.4%; left: 85.4%; transform: translate(-50%, -50%); }
.fb-pos-5 { top: 100%; left: 50%;  transform: translate(-50%, -50%); }
.fb-pos-6 { top: 85.4%; left: 14.6%; transform: translate(-50%, -50%); }
.fb-pos-7 { top: 50%;  left: 0%;   transform: translate(-50%, -50%); }
.fb-pos-8 { top: 14.6%; left: 14.6%; transform: translate(-50%, -50%); }

/* ===== PARTICLE TRAILS ===== */
.fbv2-trail {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(168,216,234,0.8) 0%, rgba(212,165,116,0.3) 60%, transparent 100%);
}
.t1 { width: 5px; height: 5px; top: 8%;   left: 25%;  animation: trailPath1 7s ease-in-out infinite; }
.t2 { width: 4px; height: 4px; top: 65%;  right: 15%; animation: trailPath2 9s ease-in-out infinite 0.5s; }
.t3 { width: 6px; height: 6px; bottom: 15%; left: 20%; animation: trailPath3 8s ease-in-out infinite 1s; }
.t4 { width: 3px; height: 3px; top: 30%;  right: 30%; animation: trailPath4 6s ease-in-out infinite 1.5s; }
.t5 { width: 5px; height: 5px; bottom: 35%; right: 25%; animation: trailPath1 10s ease-in-out infinite 2s; }
.t6 { width: 4px; height: 4px; top: 20%;  left: 40%; animation: trailPath2 7s ease-in-out infinite 2.5s; }
.t7 { width: 3px; height: 3px; top: 75%;  left: 35%; animation: trailPath3 8s ease-in-out infinite 0.8s; }
.t8 { width: 6px; height: 6px; bottom: 25%; right: 35%; animation: trailPath4 9s ease-in-out infinite 1.2s; }

/* ===== CAT ROBOT KEYFRAMES ===== */
@keyframes catFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(0.5deg); }
  50% { transform: translateY(-18px) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(-0.5deg); }
}

@keyframes catHeartPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

@keyframes catRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(0deg); }
  to { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg); }
}

@keyframes badgeCounterSpin {
  from { transform: rotateZ(0deg) rotateX(-65deg); }
  to { transform: rotateZ(-360deg) rotateX(-65deg); }
}

@keyframes badgeAutoFlip {
  0%, 35% { transform: rotateY(0deg); }
  40%, 75% { transform: rotateY(180deg); }
  80%, 100% { transform: rotateY(0deg); }
}

@keyframes trailPath1 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.9; }
  30% { transform: translate(30px, -40px); opacity: 0.7; }
  50% { transform: translate(-20px, -60px); opacity: 0.4; }
  70% { transform: translate(40px, -30px); opacity: 0.6; }
  90% { opacity: 0.1; }
}

@keyframes trailPath2 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  15% { opacity: 0.8; }
  35% { transform: translate(-25px, 35px); opacity: 0.6; }
  55% { transform: translate(15px, 50px); opacity: 0.3; }
  75% { transform: translate(-35px, 20px); opacity: 0.7; }
  95% { opacity: 0.1; }
}

@keyframes trailPath3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
  20% { opacity: 1; transform: translate(20px, -15px) scale(1.3); }
  50% { transform: translate(-15px, -40px) scale(0.8); opacity: 0.5; }
  80% { transform: translate(25px, -20px) scale(1.1); opacity: 0.3; }
}

@keyframes trailPath4 {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  12% { opacity: 0.7; }
  40% { transform: translate(-30px, -25px); opacity: 0.9; }
  60% { transform: translate(10px, -50px); opacity: 0.4; }
  85% { transform: translate(-20px, -15px); opacity: 0.2; }
}

/* ========== BREADCRUMB ========== */
.fbv2-breadcrumb {
  padding: 16px 0;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}
.fbv2-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}
.fbv2-breadcrumb a { color: var(--fb-primary); text-decoration: none; }
.fbv2-breadcrumb a:hover { text-decoration: underline; }
.fbv2-breadcrumb .separator { color: #aaa; }
.fbv2-breadcrumb .current { color: #666; font-weight: 600; }

/* ========== TABLE OF CONTENTS ========== */
.fbv2-toc {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  position: sticky;
  top: 130px;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.fbv2-toc.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.fbv2-toc-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.fbv2-toc-inner::-webkit-scrollbar { display: none; }
.fbv2-toc-label {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--fb-primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fbv2-toc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #475569;
  background: #f1f5f9;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  border: 1px solid transparent;
}
.fbv2-toc-link:hover, .fbv2-toc-link.active {
  background: var(--fb-gradient-light);
  color: var(--fb-primary);
  border-color: rgba(24,119,242,0.2);
  transform: translateY(-2px);
}

/* ========== SECTION COMMON ========== */
.fbv2-section {
  padding: 80px 0;
  position: relative;
}
.fbv2-section-alt { background: #f8fafc; }
.fbv2-section-dark { background: var(--fb-dark); color: #fff; }
.fbv2-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 0.5rem;
}
.fbv2-section-dark .fbv2-section-title { color: #fff; }
.fbv2-section-desc {
  text-align: center;
  color: #64748b;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.fbv2-section-dark .fbv2-section-desc { color: rgba(255,255,255,0.7); }
.fbv2-gradient-line {
  width: 80px;
  height: 4px;
  background: var(--fb-gradient);
  border-radius: 2px;
  margin: 12px auto 1.5rem;
}

/* ========== INTRO "DICH VU FACEBOOK LA GI" ========== */
.fbv2-intro-text {
  font-size: 1rem;
  color: #334155;
  line-height: 1.9;
}
.fbv2-intro-text p { margin-bottom: 1rem; }
.fbv2-intro-highlight {
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  border-radius: var(--fb-radius);
  padding: 24px;
  border-left: 4px solid var(--fb-primary);
  margin: 1.5rem 0;
}
.fbv2-intro-highlight strong { color: var(--fb-primary); }
.fbv2-intro-img-wrap {
  position: relative;
  border-radius: var(--fb-radius-lg);
  overflow: hidden;
  box-shadow: var(--fb-shadow-lg);
}
.fbv2-intro-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(24,119,242,0.08) 100%);
  pointer-events: none;
}
.fbv2-intro-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.fbv2-intro-img-wrap:hover img { transform: scale(1.03); }

/* Sub heading within sections */
.fbv2-sub-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

/* Benefit item rows */
.fbv2-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.fbv2-benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24,119,242,0.12);
  border-color: rgba(24,119,242,0.15);
}
.fbv2-benefit-item > i {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Commitment cards */
.fbv2-commit-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 24px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.fbv2-commit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(24,119,242,0.12);
  border-color: rgba(24,119,242,0.12);
}
.fbv2-commit-card strong {
  font-size: 1rem;
  color: #1a1a2e;
}
.fbv2-commit-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
}

/* ========== SERVICE CARDS ========== */
.fbv2-svc-card {
  background: var(--fb-card-bg);
  border-radius: var(--fb-radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fbv2-svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--fb-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.fbv2-svc-card:hover::before { opacity: 1; }
.fbv2-svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--fb-shadow-lg);
  border-color: transparent;
}
.fbv2-svc-card > * { position: relative; z-index: 1; }
.fbv2-svc-card:hover .fbv2-svc-icon { color: #fff; background: rgba(255,255,255,0.2); }
.fbv2-svc-card:hover .fbv2-svc-name,
.fbv2-svc-card:hover .fbv2-svc-desc { color: #fff; }
.fbv2-svc-card:hover .fbv2-svc-link { background: #fff; color: var(--fb-primary); }

.fbv2-svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--fb-gradient-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--fb-primary);
  margin: 0 auto 16px;
  transition: all 0.4s ease;
}
.fbv2-svc-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}
.fbv2-svc-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
  transition: color 0.4s ease;
}
.fbv2-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--fb-gradient-light);
  color: var(--fb-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ========== TOP 6 FEATURED SERVICES ========== */
.fbv2-featured-card {
  background: #fff;
  border-radius: var(--fb-radius);
  padding: 28px;
  border: 1px solid #eef2f7;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.fbv2-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--fb-gradient);
  transition: height 0.5s ease;
}
.fbv2-featured-card:hover::before { height: 100%; }
.fbv2-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fb-shadow-lg);
  border-color: rgba(24,119,242,0.15);
}
.fbv2-featured-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.fbv2-featured-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.fbv2-featured-card:hover .fbv2-featured-icon { transform: scale(1.15) rotate(5deg); }
.fbv2-featured-title { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin: 0; }
.fbv2-featured-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 14px;
}
.fbv2-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: #94a3b8;
}
.fbv2-featured-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 50px;
  background: #FFF3E0;
  color: #E65100;
  font-weight: 700;
  font-size: 0.8rem;
}
.fbv2-featured-link {
  color: var(--fb-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
  font-size: 0.85rem;
}
.fbv2-featured-link:hover { gap: 8px; }

/* ========== STATS COUNTER ========== */
.fbv2-stats {
  background: var(--fb-gradient);
  background-size: 200% 200%;
  animation: fbGradientShift 8s ease infinite;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.fbv2-stat-item { text-align: center; padding: 20px; color: #fff; }
.fbv2-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.fbv2-stat-label { font-size: 0.9rem; opacity: 0.85; font-weight: 500; }

/* ========== WHY CHOOSE US ========== */
.fbv2-why-card {
  background: #fff;
  border-radius: var(--fb-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eef2f7;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.fbv2-why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--fb-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.fbv2-why-card:hover::after { transform: scaleX(1); }
.fbv2-why-card:hover { transform: translateY(-6px); box-shadow: var(--fb-shadow); }
.fbv2-why-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.fbv2-why-card:hover .fbv2-why-icon-wrap { transform: scale(1.1) rotate(5deg); }
.fbv2-why-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.fbv2-why-text { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

/* ========== COMPARISON TABLE ========== */
.fbv2-compare-wrap {
  border-radius: var(--fb-radius-lg);
  overflow: hidden;
  box-shadow: var(--fb-shadow-lg);
}
.fbv2-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.fbv2-compare-table thead th {
  padding: 20px 16px;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
  vertical-align: bottom;
}
.fbv2-compare-table thead th:first-child { text-align: left; background: #f8fafc; color: #475569; }
.fbv2-compare-table .col-boost {
  background: linear-gradient(180deg, #1877F2 0%, #1565C0 100%);
  color: #fff;
  position: relative;
}
.fbv2-compare-table .col-boost::before {
  content: '⭐ KHUYẾN NGHỊ';
  display: block;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  opacity: 0.85;
  margin-bottom: 6px;
}
.fbv2-compare-table .col-ads { background: #FFF3E0; color: #E65100; }
.fbv2-compare-table .col-spam { background: #FFEBEE; color: #C62828; }
.fbv2-compare-table tbody td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  transition: background 0.2s ease;
}
.fbv2-compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #334155;
  background: #fafbfc;
}
.fbv2-compare-table tbody tr:hover td { background: #f8fafc; }
.fbv2-compare-table tbody tr:hover td:first-child { background: #f1f5f9; }
.compare-yes { color: #16a34a; font-weight: 700; font-size: 1.1rem; }
.compare-no { color: #dc2626; font-weight: 700; font-size: 1.1rem; }
.compare-mid { color: #f59e0b; font-weight: 700; font-size: 1.1rem; }
.fbv2-compare-desc {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
}

/* ========== PRICING TABLE ========== */
.fbv2-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--fb-radius);
  overflow: hidden;
  box-shadow: var(--fb-shadow);
  font-size: 0.9rem;
}
.fbv2-price-table thead th {
  background: var(--fb-gradient);
  color: #fff;
  padding: 16px 14px;
  font-weight: 600;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fbv2-price-table tbody td {
  padding: 14px;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  vertical-align: middle;
  transition: background 0.2s ease;
}
.fbv2-price-table tbody tr:hover td { background: #f8fafc; }
.fbv2-price-table .price-highlight { background: #FFF3E0 !important; font-weight: 600; }

/* ========== HOW IT WORKS ========== */
.fbv2-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border-radius: var(--fb-radius);
  border: 1px solid #eef2f7;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  margin-bottom: 16px;
  position: relative;
}
.fbv2-step::after {
  content: '';
  position: absolute;
  left: 44px;
  bottom: -16px;
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, var(--fb-primary) 0%, transparent 100%);
}
.fbv2-step:last-child::after { display: none; }
.fbv2-step:hover { box-shadow: var(--fb-shadow); transform: translateX(6px); }
.fbv2-step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: var(--fb-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform 0.3s ease;
}
.fbv2-step:hover .fbv2-step-num { transform: scale(1.1); }
.fbv2-step-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.fbv2-step-text { font-size: 0.88rem; color: #64748b; line-height: 1.6; margin: 0; }

/* ========== TIPS SECTION ========== */
.fbv2-tip-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid #eef2f7;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.fbv2-tip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--fb-gradient);
  border-radius: 16px 16px 0 0;
}
.fbv2-tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(24,119,242,0.15);
  border-color: rgba(24,119,242,0.2);
}
.fbv2-tip-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fb-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(24,119,242,0.3);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.fbv2-tip-card:hover .fbv2-tip-num { transform: scale(1.15) rotate(8deg); }
.fbv2-tip-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.fbv2-tip-text { font-size: 0.85rem; color: #64748b; line-height: 1.65; margin: 0; }
@media (max-width: 576px) {
  .fbv2-tip-card { padding: 20px 14px; border-radius: 14px; }
  .fbv2-tip-num { width: 36px; height: 36px; font-size: 0.8rem; margin-bottom: 10px; }
  .fbv2-tip-title { font-size: 0.85rem; margin-bottom: 5px; }
  .fbv2-tip-text { font-size: 0.75rem; line-height: 1.5; }
}

/* ========== FAQ ========== */
.fbv2-faq-item {
  background: #fff;
  border-radius: var(--fb-radius);
  border: 1px solid #eef2f7;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.fbv2-faq-item:hover { border-color: var(--fb-primary); box-shadow: 0 4px 15px rgba(24,119,242,0.08); }
.fbv2-faq-q {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: #1a1a2e;
  transition: color 0.3s ease;
}
.fbv2-faq-q:hover { color: var(--fb-primary); }
.fbv2-faq-q i { transition: transform 0.3s ease; color: var(--fb-primary); font-size: 0.8rem; }
.fbv2-faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.fbv2-faq-a { padding: 0 24px 18px; font-size: 0.9rem; color: #64748b; line-height: 1.7; }

/* ========== TESTIMONIALS MARQUEE (Instagram V2 Layout) ========== */
@keyframes fbMarqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fbMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.fbv2-testimonial-wrapper {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.fbv2-testimonial-row {
  display: flex; gap: 20px; width: max-content; padding: 10px 0;
}
.fbv2-testimonial-row.row-1 { animation: fbMarqueeLeft 50s linear infinite; }
.fbv2-testimonial-row.row-2 { animation: fbMarqueeRight 55s linear infinite; margin-top: 16px; }
.fbv2-testimonial-row:hover { animation-play-state: paused; }
.fbv2-testimonial-card {
  width: 340px; flex-shrink: 0; padding: 20px;
  background: #fff; border-radius: var(--fb-radius);
  border: 1px solid #eef2f7; transition: all 0.3s ease;
}
.fbv2-testimonial-card:hover { border-color: var(--fb-primary); box-shadow: var(--fb-shadow); }
.fbv2-testimonial-tag {
  display: inline-block; padding: 3px 10px; border-radius: 10px;
  font-size: 0.7rem; font-weight: 700; margin-bottom: 8px;
}
/* Facebook tag colors — 15 services */
.fbv2-tag-like { background: #E3F2FD; color: #1565C0; }
.fbv2-tag-vip { background: #FFF3E0; color: #E65100; }
.fbv2-tag-follow { background: #E8F5E9; color: #2E7D32; }
.fbv2-tag-page { background: #F3E5F5; color: #7B1FA2; }
.fbv2-tag-view { background: #E0F7FA; color: #00838F; }
.fbv2-tag-live { background: #FFEBEE; color: #C62828; }
.fbv2-tag-comment { background: #FFF8E1; color: #F57F17; }
.fbv2-tag-share { background: #E8EAF6; color: #283593; }
.fbv2-tag-review { background: #FBE9E7; color: #BF360C; }
.fbv2-tag-reels { background: #FCE4EC; color: #AD1457; }
.fbv2-tag-story { background: #F1F8E9; color: #558B2F; }
.fbv2-tag-reaction { background: #FFFDE7; color: #F9A825; }
.fbv2-tag-group { background: #E0F2F1; color: #00695C; }
.fbv2-tag-likecomment { background: #EDE7F6; color: #4527A0; }
.fbv2-tag-bot { background: #ECEFF1; color: #37474F; }

.fbv2-testimonial-stars { color: #FFD700; font-size: 0.85rem; margin-bottom: 8px; }
.fbv2-testimonial-text { font-size: 0.85rem; color: #555; line-height: 1.6; margin-bottom: 12px; min-height: 80px; }
.fbv2-testimonial-author { display: flex; align-items: center; gap: 10px; }
.fbv2-testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--fb-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.fbv2-testimonial-name { font-weight: 700; font-size: 0.85rem; color: #1a1a2e; }
.fbv2-testimonial-role { font-size: 0.75rem; color: #888; }
.fbv2-testimonial-svc { font-size: 0.7rem; color: var(--fb-primary); font-weight: 600; }

/* Marquee nav buttons */
.fbv2-testimonial-nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 1.5rem;
}
.fbv2-testimonial-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--fb-primary); background: #fff; color: var(--fb-primary);
  font-size: 1rem; cursor: pointer; transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.fbv2-testimonial-nav-btn:hover {
  background: var(--fb-primary); color: #fff; transform: scale(1.1);
}

/* ========== CTA SECTION ========== */
.fbv2-cta {
  background: var(--fb-gradient);
  background-size: 200% 200%;
  animation: fbGradientShift 8s ease infinite;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fbv2-cta-title { color: #fff; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; margin-bottom: 1rem; }
.fbv2-cta-desc { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 550px; margin: 0 auto 2rem; }
.fbv2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--fb-primary);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.fbv2-cta-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(24,119,242,0.15), transparent);
  animation: fbShimmer 2.5s ease-in-out infinite;
}
.fbv2-cta-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 40px rgba(0,0,0,0.2); color: var(--fb-primary-dark); }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .fbv2-hero { padding: 60px 0 80px; min-height: auto; }
  .fb-keyword-rotator { min-width: 350px; }
  .fbv2-cat-scene { height: 380px; }
  .fbv2-cat-img { max-width: 200px; }
  .fbv2-orbit-ring { width: 340px; height: 340px; }
  .fbv2-flip-badge { width: 48px; height: 48px; }
  .fbv2-flip-front { font-size: 0.9rem; }
  .fbv2-flip-back { font-size: 0.5rem; }
  .fbv2-cat-heart-glow { width: 200px; height: 200px; }
  .fbv2-hero-stats { justify-content: center; flex-wrap: wrap; }
  .fbv2-section { padding: 60px 0; }
  .fbv2-toc { display: none; }
}
@media (max-width: 767px) {
  .fbv2-hero { padding: 40px 0 60px; text-align: center; }
  .fb-hero-headline { flex-direction: column; align-items: center; gap: 0; }
  .fbv2-hero-title { text-align: center; white-space: normal; }
  .fb-keyword-rotator { height: 2.6rem; min-width: auto; width: 100%; overflow: visible; text-align: center; display: block; }
  .fb-kw {
    font-size: 1.8rem; line-height: 2.6rem;
    left: 50%;
    animation-name: fbKwSlideUpCenter;
  }
  .fb-hero-tagline { font-size: 1.3rem; text-align: center; }
  .fbv2-hero-sub { margin: 0 auto; }
  .fbv2-hero-stats { gap: 20px; }
  .fbv2-hero-stat-num { font-size: 1.5rem; }
  .fbv2-hero-cta { width: 100%; justify-content: center; }
  .fbv2-cat-scene { height: 320px; margin-top: 1rem; }
  .fbv2-cat-img { max-width: 160px; }
  .fbv2-orbit-ring { width: 280px; height: 280px; animation-duration: 30s; }
  .fbv2-flip-badge { width: 40px; height: 40px; animation-duration: 30s; }
  .fbv2-flip-front { font-size: 0.75rem; }
  .fbv2-flip-back { font-size: 0.45rem; padding: 2px; border-radius: 10px; }
  .fbv2-cat-heart-glow { width: 150px; height: 150px; }
  .fbv2-trail { display: none; }
  .fbv2-section { padding: 50px 0; }
  .fbv2-price-table { font-size: 0.8rem; }
  .fbv2-price-table thead th, .fbv2-price-table tbody td { padding: 10px 8px; }
  .fbv2-compare-table { font-size: 0.75rem; }
  .fbv2-compare-table thead th, .fbv2-compare-table tbody td { padding: 10px; }
  .fbv2-testimonial-card { width: 280px; }
}
@keyframes fbKwSlideUpCenter {
  0%      { opacity: 0; transform: translateX(-50%) translateY(80%); }
  0.5%    { opacity: 1; transform: translateX(-50%) translateY(0); }
  6%      { opacity: 1; transform: translateX(-50%) translateY(0); }
  6.67%   { opacity: 0; transform: translateX(-50%) translateY(-80%); }
  100%    { opacity: 0; transform: translateX(-50%) translateY(-80%); }
}
#fb-so-sanh-nen-tang {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
#fb-so-sanh-nen-tang::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(24,119,242,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(233,30,99,0.08) 0%, transparent 50%);
  animation: fbFloatOrb 20s ease-in-out infinite;
  pointer-events: none;
}
@keyframes fbFloatOrb {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(5deg); }
  66% { transform: translate(-20px, 15px) rotate(-3deg); }
}
#fb-so-sanh-nen-tang .fbv2-section-title,
#fb-so-sanh-nen-tang .fbv2-section-desc { color: #fff; }
#fb-so-sanh-nen-tang .fbv2-section-desc { color: rgba(255,255,255,0.75); }
#fb-so-sanh-nen-tang .fbv2-gradient-line { background: linear-gradient(90deg, transparent, #1877F2, transparent); }

.fb-wow-img-frame {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  position: relative;
  border-radius: 24px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(24,119,242,0.4), rgba(233,30,99,0.2), rgba(255,193,7,0.3));
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(24,119,242,0.15);
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
}
.fb-wow-img-frame:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 120px rgba(24,119,242,0.25);
}
.fb-wow-img-frame img { width: 100%; display: block; border-radius: 20px; }
.fb-wow-img-frame::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: fbShimmer 4s ease-in-out infinite;
  border-radius: 24px;
  pointer-events: none;
}
@keyframes fbShimmer { 0% { left: -100%; } 100% { left: 200%; } }

/* Comparison benefit cards — glassmorphism on dark */
.fb-wow-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.fb-wow-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.4s ease;
}
.fb-wow-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(24,119,242,0.3);
  box-shadow: 0 12px 36px rgba(24,119,242,0.15);
}
.fb-wow-card .fb-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(24,119,242,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.fb-wow-card:hover .fb-card-icon { transform: scale(1.1) rotate(8deg); }
.fb-wow-card strong { color: #fff; font-size: 0.95rem; display: block; margin-bottom: 0.4rem; }
.fb-wow-card p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin: 0; line-height: 1.5; }

/* ============ UNIQUE SECTION B: ECOMMERCE — ZIGZAG LAYOUT ============ */
#fb-ecommerce {
  background: linear-gradient(180deg, #f0f4ff 0%, #e3ecff 50%, #f0f4ff 100%);
  position: relative;
  padding: 60px 0;
}
.fb-ecom-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.fb-ecom-cards-col { display: flex; flex-direction: column; gap: 1rem; }
.fb-ecom-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid rgba(24,119,242,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.fb-ecom-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #1877F2, #E91E63, #FF6D00);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.fb-ecom-card:hover {
  transform: translateY(-8px) translateX(8px);
  box-shadow: 0 20px 60px rgba(24,119,242,0.15);
  border-color: rgba(24,119,242,0.15);
}
.fb-ecom-card:hover::after { transform: scaleX(1); }
.fb-ecom-card .fb-ecom-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.fb-ecom-card:hover .fb-ecom-icon { transform: scale(1.15) rotate(8deg); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.fb-ecom-card h4 { font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem; color: #1a1a2e; }
.fb-ecom-card p { font-size: 0.88rem; color: #666; margin: 0; line-height: 1.5; }
.fb-ecom-img-col { position: relative; display: flex; align-items: center; justify-content: center; }
.fb-ecom-img-col .fb-wow-img-frame {
  background: linear-gradient(135deg, rgba(24,119,242,0.3), rgba(233,30,99,0.15), rgba(255,109,0,0.2));
  box-shadow: 0 20px 60px rgba(24,119,242,0.12);
  max-width: 100%;
}
.fb-float-badge {
  position: absolute;
  bottom: -20px; right: -10px;
  background: linear-gradient(135deg, #1877F2, #1565C0);
  color: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(24,119,242,0.4);
  z-index: 2;
  animation: fbBadgePulse 3s ease-in-out infinite;
}
@keyframes fbBadgePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* ============ UNIQUE SECTION C: CẨM NANG FANPAGE ============ */
#fb-cam-nang {
  background: linear-gradient(180deg, #fefefe 0%, #f8faff 50%, #f0f5ff 100%);
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
#fb-cam-nang::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(24,119,242,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.fb-guide-showcase { max-width: 680px; margin: 0 auto 3rem; }
.fb-guide-showcase .fb-wow-img-frame {
  box-shadow: 0 16px 48px rgba(24,119,242,0.12);
  background: linear-gradient(135deg, rgba(24,119,242,0.2), rgba(233,30,99,0.1), rgba(255,193,7,0.15));
}
.fb-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.fb-guide-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(24,119,242,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fb-guide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--card-accent, linear-gradient(180deg, #1877F2, #42A5F5));
  border-radius: 0 4px 4px 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.fb-guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(24,119,242,0.12);
  border-color: rgba(24,119,242,0.15);
}
.fb-guide-card:hover::before { opacity: 1; }
.fb-guide-card .fb-card-num {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: #fff;
  background: var(--card-accent-solid, #1877F2);
  box-shadow: 0 4px 12px rgba(24,119,242,0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.fb-guide-card:hover .fb-card-num { transform: scale(1.08) rotate(3deg); }
.fb-guide-card h4 { font-size: 0.95rem; font-weight: 700; margin: 0 0 0.4rem; color: #1a1a2e; line-height: 1.3; }
.fb-guide-card p { font-size: 0.84rem; color: #64748b; margin: 0; line-height: 1.55; }

/* ============ IMG injection in existing sections ============ */
.fb-section-img-center {
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.fb-section-img-center .fb-wow-img-frame {
  background: linear-gradient(135deg, rgba(24,119,242,0.15), rgba(233,30,99,0.08), rgba(255,193,7,0.1));
  box-shadow: 0 12px 36px rgba(24,119,242,0.1);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .fb-wow-cards { grid-template-columns: 1fr; }
  .fb-ecom-layout { grid-template-columns: 1fr; }
  .fb-ecom-img-col { order: -1; }
  .fb-guide-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 576px) {
  .fb-guide-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .fb-guide-card { padding: 0.9rem 0.75rem; gap: 10px; flex-direction: column; }
  .fb-guide-card .fb-card-num { width: 32px; height: 32px; min-width: 32px; font-size: 0.7rem; border-radius: 10px; }
  .fb-guide-card h4 { font-size: 0.8rem; }
  .fb-guide-card p { font-size: 0.72rem; line-height: 1.45; }
  .fb-guide-showcase { max-width: 100%; margin-bottom: 2rem; }
  .fb-section-img-center { max-width: 100%; }
  .fb-float-badge { bottom: -10px; right: 10px; font-size: 0.85rem; padding: 10px 16px; }
}





