body {
  overflow-x: hidden
}

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fbshrFloat1 {

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

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

@keyframes fbshrFloat2 {

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

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

@keyframes fbshrDotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbshr-col-form {
  order: 0
}

.fbshr-col-illustration {
  order: 0
}

.fbshr-anim-fadeIn {
  animation: fbshrFadeIn 0.8s ease both
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbshr-server-trigger {
  position: relative
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbshr-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.84rem;
  resize: vertical;
  min-height: 44px;
  outline: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

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

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

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

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

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

.fbshr-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparent;
  animation: none
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbshr-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: fbshrFeedSlideIn 0.5s ease-out
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbshr-howto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.2)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========== TESTIMONIALS MARQUEE ========== */
.fbshr-testimonials {
  padding: 76px 0 84px;
  background:
    radial-gradient(circle at 12% 18%, rgba(24, 119, 242, .24), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(66, 183, 42, .14), transparent 30%),
    linear-gradient(135deg, #071426 0%, #102e52 50%, #071426 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden
}

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

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

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

.fbshr-testi-row-1 {
  animation: none
}

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

.fbshr-testi-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s, opacity 0.3s;
}

.fbshr-testi-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(96, 165, 250, 0.7);
  transform: translateY(-3px)
}

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

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

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

.fbshr-testi-role {
  font-size: 0.7rem;
  color: #cbdcf0
}

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

.fbshr-testi-text {
  font-size: 0.82rem;
  color: #f2f7ff;
  line-height: 1.55;
  font-style: italic
}

.fbshr-testi-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(24, 119, 242, 0.32);
  color: #e5f1ff;
  border: 1px solid rgba(125, 180, 255, 0.58);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase
}

/* ========== FAQ ========== */
.fbshr-faq .accordion-item {
  border: 1px solid var(--fbshr-card-border);
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fbshr-fbadge {
    display: none
  }

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

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

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

  .fbshr-section {
    padding: 12px 0
  }

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    transform: translateX(0)
  }
}

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

.fbshr-testi-track.fbshr-testi-row-2 {
  animation: none
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbshr-mag-intro p {
  margin-bottom: 14px;
}

.fbshr-mag-intro strong {
  color: var(--fbshr-heading);
}

.fbshr-mag-img-side {
  position: relative;
  z-index: 1;
}

.fbshr-mag-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 119, 242, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(24, 119, 242, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  perspective: 1000px;
}

.fbshr-mag-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;
}

.fbshr-mag-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;
}

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

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

.fbshr-mag-img-wrap:hover .fbshr-mag-img {
  transform: scale(1.03);
}

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

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

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

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

.fbshr-mag-highlight strong {
  color: var(--fbshr-heading);
}

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

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

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

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

/* Algorithm Section */
.fbshr-mag-algo {
  position: relative;
}

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

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

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

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

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

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

.fbshr-mag-algo-card:hover::before {
  opacity: 1;
}

.fbshr-mag-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;
}

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

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

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

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

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

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

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

.fbshr-mag-algo-card a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .fbshr-mag-img-side {
    max-width: 480px;
    margin: 0 auto;
  }

  .fbshr-mag-magazine {
    padding: 32px 0 28px;
  }
}

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

  .fbshr-mag-text-side .fbshr-section-title {
    font-size: 1.3rem;
  }

  .fbshr-mag-algo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fbshr-mag-highlight {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .fbshr-mag-magazine {
    padding: 24px 0 20px;
  }
}

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

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

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

.fbshr-benefit-intro-img {
  border-radius: 16px;
  overflow: hidden;
}

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

.fbshr-benefit-intro:hover .fbshr-benefit-intro-img img {
  transform: scale(1.04);
}

.fbshr-benefit-intro-text {
  padding: 8px 12px 8px 0;
}

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

.fbshr-benefit-intro-text strong {
  color: var(--fbshr-heading);
}

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

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

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

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

.fbshr-benefit-card:hover::before {
  opacity: 1;
}

.fbshr-benefit-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s, opacity 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

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

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

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

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

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

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

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

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

  .fbshr-benefit-intro-img {
    max-width: 420px;
    margin: 0 auto;
  }

  .fbshr-benefit-intro-text {
    padding: 0 8px 8px;
  }

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

  .fbshr-benefit-benefits {
    padding: 32px 0 28px;
  }
}

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

  .fbshr-benefit-benefits {
    padding: 24px 0 20px;
  }

  .fbshr-benefit-card {
    padding: 22px 20px 20px;
  }
}

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

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

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

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

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

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

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

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

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

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

.fbshr-catalog-card:hover::before {
  height: 6px;
}

.fbshr-catalog-card-header {
  margin-bottom: 12px;
}

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

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

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

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

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

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

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

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

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

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

.fbshr-catalog-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fbshr-catalog-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;
}

.fbshr-catalog-detail span {
  color: var(--fbshr-text);
  opacity: 0.6;
}

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

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

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

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

.fbshr-catalog-best-badge i {
  font-size: 0.6rem;
}

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

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

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

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

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

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

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

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

.fbshr-catalog-formula-card strong {
  color: var(--fbshr-heading);
}

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

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

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

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

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

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

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

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

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

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

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

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

  .fbshr-catalog-formula-grid {
    grid-template-columns: 1fr;
  }

  .fbshr-catalog-pricing {
    padding: 32px 0 28px;
  }
}

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

  .fbshr-catalog-card {
    padding: 20px 18px 18px;
  }

  .fbshr-catalog-pricing {
    padding: 24px 0 20px;
  }
}

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

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

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

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

.fbshr-organic-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;
}

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

.fbshr-organic-hero:hover .fbshr-organic-hero-img img {
  transform: scale(1.04);
}

.fbshr-organic-hero-text {
  padding: 8px 12px 8px 0;
}

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

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

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

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

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

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

.fbshr-organic-tip:hover::before {
  opacity: 1;
}

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

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

/* Tip Icon */
.fbshr-organic-tip-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s, opacity 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

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

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

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

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

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

.fbshr-organic-tip:hover .fbshr-organic-tip-img img {
  transform: scale(1.03);
}

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

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

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

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

.fbshr-organic-cta-body strong {
  color: var(--fbshr-heading);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fbshr-organic-hero-img {
    max-width: 420px;
    margin: 0 auto;
  }

  .fbshr-organic-hero-text {
    padding: 0 8px 8px;
  }

  .fbshr-organic-section {
    padding: 32px 0 28px;
  }
}

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

  .fbshr-organic-tip {
    padding: 22px 20px 20px;
  }

  .fbshr-organic-hero-text .fbshr-section-title {
    font-size: 1.25rem;
  }

  .fbshr-organic-cta {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .fbshr-organic-section {
    padding: 24px 0 20px;
  }
}

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

  .fbshr-organic-tip {
    padding: 18px 16px 16px;
  }
}

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

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

.fbshr-guide-step {
  display: flex;
  gap: 0;
  position: relative;
}

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

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

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

.fbshr-guide-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;
}

.fbshr-guide-step-last .fbshr-guide-step-line {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

  .fbshr-guide-step-content {
    gap: 14px;
    padding: 14px;
  }

  .fbshr-guide-howto {
    padding: 32px 0 24px;
  }

  .fbshr-guide-step-marker {
    width: 48px;
  }

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

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

  .fbshr-guide-step-thumb {
    width: 100%;
    max-width: 280px;
  }

  .fbshr-guide-step-marker {
    width: 40px;
  }

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

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

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

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

.fbshr-check-header-img {
  border-radius: 16px;
  overflow: hidden;
}

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

.fbshr-check-header:hover .fbshr-check-header-img img {
  transform: scale(1.04);
}

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

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

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

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

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

.fbshr-check-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s, opacity 0.3s;
}

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

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

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

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

.fbshr-check-item-body a:hover {
  border-bottom-style: solid;
}

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

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

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

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

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

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

  .fbshr-check-header-img {
    max-width: 380px;
    margin: 0 auto;
  }

  .fbshr-check-notes {
    padding: 32px 0 28px;
  }
}

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

  .fbshr-check-header {
    padding: 16px;
  }

  .fbshr-check-header-text .fbshr-section-title {
    font-size: 1.2rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.fbshr-compare-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s, opacity 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbshr-strategy-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s, color 0.3s, opacity 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================
   TĂNG SHARE FACEBOOK — PAGE-SPECIFIC CONTENT COMPONENTS
   The hero/form foundation above is copied from tang-like and
   retains the same desktop/mobile order and custom dropdown.
   ========================================================== */

.fbshr-hero-container {
  position: relative;
  z-index: 2;
}

.fbshr-pstat-num--text {
  min-height: 2.25em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  line-height: 1.2;
  text-wrap: balance;
}

.fbshr-section {
  position: relative;
  padding: 64px 0;
}

.fbshr-section:nth-of-type(2n + 1):not(.fbshr-testimonials) {
  background: var(--fbshr-section-bg-alt);
}

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

.fbshr-section-kicker i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  background: var(--fbshr-gradient-accent);
  box-shadow: 0 6px 18px rgba(24, 119, 242, .2);
}

.fbshr-section-lead {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--fbshr-text);
  font-size: 1rem;
  line-height: 1.75;
}

.fbshr-img-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--fbshr-card-border);
  border-radius: 22px;
  background: var(--fbshr-card-bg);
  box-shadow: 0 14px 42px rgba(24, 119, 242, .1);
}

.fbshr-img-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fbshr-img-card figcaption {
  padding: 12px 16px;
  color: var(--fbshr-text);
  font-size: .78rem;
  line-height: 1.55;
  border-top: 1px solid var(--fbshr-card-border);
}

.fbshr-definition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 40px;
  align-items: center;
}

.fbshr-definition-copy > p {
  color: var(--fbshr-text);
  font-size: .98rem;
  line-height: 1.8;
}

.fbshr-definition-copy > p strong {
  color: var(--fbshr-heading);
}

.fbshr-definition-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(24, 119, 242, .16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(24, 119, 242, .08), rgba(66, 183, 42, .05));
}

.fbshr-definition-note > i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: var(--fbshr-primary);
}

.fbshr-definition-note p {
  margin: 0;
  color: var(--fbshr-text);
  line-height: 1.65;
}

.fbshr-boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.fbshr-boundary-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--fbshr-card-border);
  border-radius: 20px;
  background: var(--fbshr-card-bg);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .04);
}

.fbshr-boundary-card--yes {
  border-top: 4px solid var(--fbshr-accent);
}

.fbshr-boundary-card--no {
  border-top: 4px solid #ff8a4c;
}

.fbshr-boundary-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: var(--fbshr-gradient-accent);
}

.fbshr-boundary-card--no .fbshr-boundary-icon {
  background: linear-gradient(135deg, #ff8a4c, #f45d48);
}

.fbshr-boundary-card h3,
.fbshr-type-card h3,
.fbshr-public-list h3,
.fbshr-choice-card h3,
.fbshr-decision-card h3,
.fbshr-aftercare-card h3 {
  margin: 0 0 9px;
  color: var(--fbshr-heading);
  font-size: 1.02rem;
  font-weight: 800;
}

.fbshr-boundary-card ul,
.fbshr-type-card ul,
.fbshr-decision-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fbshr-boundary-card li,
.fbshr-type-card li,
.fbshr-decision-card li {
  position: relative;
  padding-left: 20px;
  margin-top: 8px;
  color: var(--fbshr-text);
  line-height: 1.6;
}

.fbshr-boundary-card li::before,
.fbshr-type-card li::before,
.fbshr-decision-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fbshr-accent);
}

.fbshr-boundary-card--no li::before,
.fbshr-decision-card--wait li::before {
  background: #ff8a4c;
}

.fbshr-share-types {
  overflow: hidden;
}

.fbshr-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.fbshr-type-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--fbshr-card-border);
  border-radius: 24px;
  background: var(--fbshr-card-bg);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .05);
}

.fbshr-type-card::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 119, 242, .13), transparent 68%);
  pointer-events: none;
}

.fbshr-type-card--group::after {
  background: radial-gradient(circle, rgba(66, 183, 42, .14), transparent 68%);
}

.fbshr-type-visual {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 22px;
  color: #fff;
  font-size: 1.6rem;
  background: var(--fbshr-primary);
}

.fbshr-type-card--group .fbshr-type-visual {
  background: var(--fbshr-accent);
}

.fbshr-type-ring {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(24, 119, 242, .25);
  border-radius: 27px;
}

.fbshr-type-card--group .fbshr-type-ring {
  border-color: rgba(66, 183, 42, .3);
}

.fbshr-type-label {
  display: inline-flex;
  padding: 5px 11px;
  margin-bottom: 10px;
  border-radius: 999px;
  color: var(--fbshr-primary);
  background: rgba(24, 119, 242, .09);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fbshr-type-card--group .fbshr-type-label {
  color: #258c36;
  background: rgba(66, 183, 42, .1);
}

.fbshr-type-card > p {
  color: var(--fbshr-text);
  line-height: 1.7;
}

.fbshr-inline-callout {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 920px;
  margin: 28px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(255, 179, 0, .25);
  border-radius: 18px;
  background: rgba(255, 179, 0, .08);
}

.fbshr-inline-callout i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #9a6500;
  background: rgba(255, 179, 0, .18);
}

.fbshr-inline-callout p {
  margin: 0;
  color: var(--fbshr-text);
  line-height: 1.65;
}

.fbshr-public-layout {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: center;
}

.fbshr-public-figure {
  transform: rotate(-1.2deg);
}

.fbshr-public-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.fbshr-public-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--fbshr-card-border);
  border-radius: 16px;
  background: var(--fbshr-card-bg);
}

.fbshr-public-list li > span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  background: var(--fbshr-gradient-accent);
  font-size: .78rem;
  font-weight: 900;
}

.fbshr-public-list p {
  margin: 0;
  color: var(--fbshr-text);
  line-height: 1.6;
}

.fbshr-server-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 38px;
  align-items: center;
  margin-bottom: 30px;
}

.fbshr-server-head p {
  color: var(--fbshr-text);
  font-size: .98rem;
  line-height: 1.75;
}

.fbshr-choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.fbshr-choice-card {
  position: relative;
  min-height: 220px;
  padding: 24px 18px 18px;
  overflow: hidden;
  border: 1px solid var(--fbshr-card-border);
  border-radius: 18px;
  background: var(--fbshr-card-bg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.fbshr-choice-card > span {
  position: absolute;
  top: 10px;
  right: 13px;
  color: rgba(24, 119, 242, .12);
  font-size: 2.2rem;
  font-weight: 900;
}

.fbshr-choice-card > i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 15px;
  color: #fff;
  background: var(--fbshr-gradient-accent);
}

.fbshr-choice-card p {
  margin: 0;
  color: var(--fbshr-text);
  font-size: .86rem;
  line-height: 1.6;
}

.fbshr-choice-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(24, 119, 242, .16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24, 119, 242, .07), rgba(66, 183, 42, .05));
  color: var(--fbshr-text);
}

.fbshr-choice-action strong {
  color: var(--fbshr-heading);
}

.fbshr-inline-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--fbshr-primary);
  font-size: .83rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 7px 20px rgba(24, 119, 242, .22);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.fbshr-inline-btn:hover {
  color: #fff;
  background: var(--fbshr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(24, 119, 242, .28);
}

.fbshr-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 30px auto 0;
}

.fbshr-decision-card {
  padding: 28px;
  border: 1px solid var(--fbshr-card-border);
  border-radius: 22px;
  background: var(--fbshr-card-bg);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .05);
}

.fbshr-decision-card--ready {
  border-top: 5px solid var(--fbshr-accent);
}

.fbshr-decision-card--wait {
  border-top: 5px solid #ff8a4c;
}

.fbshr-decision-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.fbshr-decision-heading i {
  font-size: 1.35rem;
  color: var(--fbshr-accent);
}

.fbshr-decision-card--wait .fbshr-decision-heading i {
  color: #ff8a4c;
}

.fbshr-decision-heading h3 {
  margin: 0;
}

.fbshr-howto-prereq {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 32px;
}

.fbshr-howto-prereq > div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(24, 119, 242, .16);
  border-radius: 999px;
  color: var(--fbshr-text);
  background: var(--fbshr-card-bg);
}

.fbshr-howto-prereq i {
  color: var(--fbshr-primary);
}

.fbshr-guide-step-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fbshr-organic-tip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--fbshr-gradient-accent);
}

.fbshr-organic-tip h3 {
  color: var(--fbshr-heading);
}

.fbshr-organic-tip p {
  color: var(--fbshr-text);
}

.fbshr-aftercare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fbshr-aftercare-card {
  position: relative;
  min-height: 230px;
  padding: 28px 20px 20px;
  overflow: hidden;
  border: 1px solid var(--fbshr-card-border);
  border-radius: 20px;
  background: var(--fbshr-card-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.fbshr-aftercare-card > i {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #fff;
  background: var(--fbshr-gradient-accent);
}

.fbshr-aftercare-num {
  position: absolute;
  right: 14px;
  top: 8px;
  color: rgba(24, 119, 242, .11);
  font-size: 2.7rem;
  font-weight: 900;
}

.fbshr-aftercare-card p {
  margin: 0;
  color: var(--fbshr-text);
  line-height: 1.65;
}

.fbshr-aftercare-note {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 920px;
  margin: 26px auto 0;
  padding: 17px 20px;
  border: 1px solid rgba(255, 138, 76, .22);
  border-radius: 16px;
  color: var(--fbshr-text);
  background: rgba(255, 138, 76, .07);
}

.fbshr-aftercare-note > i {
  color: #d95e22;
  font-size: 1.2rem;
}

.fbshr-aftercare-note p {
  margin: 0;
  line-height: 1.6;
}

.fbshr-aftercare-note a {
  color: var(--fbshr-primary);
  font-weight: 700;
}

.fbshr-testi-heading {
  margin-bottom: 24px;
  text-align: center;
}

.fbshr-testi-heading > p {
  max-width: 760px;
  margin: 0 auto;
  color: #dbeafe;
  line-height: 1.65;
  font-size: .98rem;
}

.fbshr-testi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(147, 197, 253, .62);
  border-radius: 999px;
  color: #eff6ff;
  background: rgba(24, 119, 242, .34);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fbshr-testi-context {
  margin-bottom: 8px;
  color: #b9d6f7;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fbshr-testi-context i {
  margin-right: 5px;
  color: var(--fbshr-accent);
}

.fbshr-testi-card {
  width: 390px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.fbshr-testi-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--fbshr-primary), var(--fbshr-accent));
}

.fbshr-testi-name {
  font-size: .92rem;
  color: #fff;
}

.fbshr-testi-role {
  margin-top: 2px;
  font-size: .74rem;
}

.fbshr-testi-text {
  margin: 0;
  font-style: normal;
  font-size: .86rem;
  line-height: 1.68;
}

.fbshr-testi-track.fbshr-testi-row-1 {
  animation: fbshrMarquee 68s linear infinite;
}

.fbshr-testi-track.fbshr-testi-row-2 {
  animation: fbshrTestiScrollReverse 82s linear infinite;
}

.fbshr-testimonials:hover .fbshr-testi-track,
.fbshr-testimonials:focus-within .fbshr-testi-track {
  animation-play-state: paused;
}

/* Keep testimonial contrast stable against the shared light/dark page shell. */
.fbshr-section.fbshr-testimonials {
  background:
    radial-gradient(circle at 12% 18%, rgba(24, 119, 242, .24), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(66, 183, 42, .14), transparent 30%),
    linear-gradient(135deg, #071426 0%, #102e52 50%, #071426 100%) !important;
}

.fbshr-section[id] {
  scroll-margin-top: 156px;
}

.fbshr-testimonials .fbshr-testi-card {
  background: rgba(255, 255, 255, .11) !important;
  border-color: rgba(255, 255, 255, .24) !important;
}

.fbshr-testimonials .fbshr-section-title,
.fbshr-testimonials .fbshr-testi-name {
  color: #fff !important;
}

.fbshr-testimonials .fbshr-testi-heading > p {
  color: #dbeafe !important;
}

.fbshr-testimonials .fbshr-testi-role,
.fbshr-testimonials .fbshr-testi-context {
  color: #c8dcf3 !important;
}

.fbshr-testimonials .fbshr-testi-text {
  color: #f2f7ff !important;
}

.fbshr-faq-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(24, 119, 242, .08), transparent 30%),
    var(--fbshr-section-bg-alt);
}

.fbshr-related-card h3 {
  margin: 0 0 7px;
  color: var(--fbshr-heading);
  font-size: .96rem;
  font-weight: 800;
}

.fbshr-related-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fbshr-related-card {
  padding: 22px 16px;
}

.fbshr-related-card p {
  min-height: 4.5em;
}

.fbshr-cta-final {
  margin-top: 48px;
}

.fbshr-robot-img-sm {
  animation: fbshrMascotEnter .85s cubic-bezier(.16, 1, .3, 1) both;
  transform-origin: 50% 80%;
}

@keyframes fbshrMascotEnter {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(.9);
  }

  70% {
    opacity: 1;
    transform: translateY(-3px) scale(1.02);
  }

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

/* Disable the permanent button sheen; the two mascot badges, live dot and
   two testimonial rows are the only continuously animated page elements. */
.fbshr-cta-btn::after {
  animation: none;
  display: none;
}

[data-bs-theme="dark"] .fbshr-section:nth-of-type(2n + 1):not(.fbshr-testimonials),
[data-bs-theme="dark"] .fbshr-faq-section {
  background: #10182a !important;
}

[data-bs-theme="dark"] .fbshr-img-card,
[data-bs-theme="dark"] .fbshr-boundary-card,
[data-bs-theme="dark"] .fbshr-type-card,
[data-bs-theme="dark"] .fbshr-public-list li,
[data-bs-theme="dark"] .fbshr-choice-card,
[data-bs-theme="dark"] .fbshr-decision-card,
[data-bs-theme="dark"] .fbshr-howto-prereq > div,
[data-bs-theme="dark"] .fbshr-aftercare-card {
  border-color: rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .045);
}

[data-bs-theme="dark"] .fbshr-boundary-card h3,
[data-bs-theme="dark"] .fbshr-type-card h3,
[data-bs-theme="dark"] .fbshr-public-list h3,
[data-bs-theme="dark"] .fbshr-choice-card h3,
[data-bs-theme="dark"] .fbshr-decision-card h3,
[data-bs-theme="dark"] .fbshr-aftercare-card h3,
[data-bs-theme="dark"] .fbshr-related-card h3,
[data-bs-theme="dark"] .fbshr-choice-action strong,
[data-bs-theme="dark"] .fbshr-definition-copy > p strong {
  color: #fff;
}

[data-bs-theme="dark"] .fbshr-definition-copy > p,
[data-bs-theme="dark"] .fbshr-definition-note p,
[data-bs-theme="dark"] .fbshr-boundary-card li,
[data-bs-theme="dark"] .fbshr-type-card > p,
[data-bs-theme="dark"] .fbshr-type-card li,
[data-bs-theme="dark"] .fbshr-inline-callout p,
[data-bs-theme="dark"] .fbshr-public-list p,
[data-bs-theme="dark"] .fbshr-server-head p,
[data-bs-theme="dark"] .fbshr-choice-card p,
[data-bs-theme="dark"] .fbshr-choice-action,
[data-bs-theme="dark"] .fbshr-decision-card li,
[data-bs-theme="dark"] .fbshr-aftercare-card p,
[data-bs-theme="dark"] .fbshr-aftercare-note,
[data-bs-theme="dark"] .fbshr-img-card figcaption,
[data-bs-theme="dark"] .fbshr-section-lead {
  color: rgba(255, 255, 255, .7);
}

[data-bs-theme="dark"] .fbshr-definition-note,
[data-bs-theme="dark"] .fbshr-choice-action {
  border-color: rgba(96, 165, 250, .18);
  background: linear-gradient(135deg, rgba(24, 119, 242, .1), rgba(66, 183, 42, .06));
}

@media (max-width: 1199.98px) {
  .fbshr-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fbshr-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .fbshr-section {
    padding: 52px 0;
  }

  .fbshr-definition-grid,
  .fbshr-public-layout,
  .fbshr-server-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fbshr-definition-grid .fbshr-img-card {
    max-width: 720px;
  }

  .fbshr-public-figure {
    max-width: 720px;
    transform: none;
  }

  .fbshr-server-head .fbshr-img-card {
    max-width: 680px;
  }

  .fbshr-aftercare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fbshr-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .fbshr-section {
    padding: 44px 0;
  }

  .fbshr-kw {
    white-space: normal;
    line-height: 1.35;
  }

  .fbshr-boundary-grid,
  .fbshr-type-grid,
  .fbshr-decision-grid {
    grid-template-columns: 1fr;
  }

  .fbshr-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fbshr-choice-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .fbshr-testi-card {
    width: min(86vw, 350px);
  }
}

@media (max-width: 575.98px) {
  .fbshr-section {
    padding: 38px 0;
  }

  .fbshr-section-title {
    text-wrap: balance;
  }

  .fbshr-definition-grid,
  .fbshr-public-layout,
  .fbshr-server-head {
    gap: 22px;
  }

  .fbshr-boundary-card,
  .fbshr-type-card,
  .fbshr-decision-card {
    padding: 21px 18px;
  }

  .fbshr-boundary-card {
    grid-template-columns: 42px 1fr;
  }

  .fbshr-boundary-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .fbshr-public-list li {
    grid-template-columns: 42px 1fr;
    padding: 14px;
  }

  .fbshr-public-list li > span {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .fbshr-choice-grid,
  .fbshr-aftercare-grid,
  .fbshr-related-grid {
    grid-template-columns: 1fr;
  }

  .fbshr-choice-card,
  .fbshr-aftercare-card {
    min-height: 0;
  }

  .fbshr-aftercare-note {
    align-items: flex-start;
  }

  .fbshr-related-card p {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbshr-anim-fadeIn,
  .fbshr-anim-slideUp,
  .fbshr-robot-img-sm,
  .fbshr-mini-1,
  .fbshr-mini-2,
  .fbshr-livefeed-dot,
  .fbshr-livefeed-item,
  .fbshr-testi-track {
    animation: none !important;
  }

  .fbshr-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  html {
    scroll-behavior: auto !important;
  }
}
