body {
  overflow-x: hidden
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fblkFloat1 {

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

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

@keyframes fblkFloat2 {

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

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

@keyframes fblkDotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

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

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

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

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

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

  50% {
    transform: scale(1.15)
  }

  100% {
    transform: scale(1)
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-col-form {
  order: 0
}

.fblk-col-illustration {
  order: 0
}

.fblk-anim-fadeIn {
  animation: fblkFadeIn 0.8s ease both
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-server-trigger {
  position: relative
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-reaction-option {
  position: relative
}

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

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

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

.fblk-reaction-option input:checked+label {
  background: rgba(24, 119, 242, 0.15);
  border-color: rgba(24, 119, 242, 0.5);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(24, 119, 242, 0.15)
}

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

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

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

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

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

.fblk-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: fblkShimmer 3s infinite
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-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: fblkFeedSlideIn 0.5s ease-out
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-tip-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: all 0.3s
}

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

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

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

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

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

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

.fblk-testi-row-1 {
  animation: fblkMarquee 60s linear infinite
}

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

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

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

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

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

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

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

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

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

.fblk-testi-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(24, 119, 242, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(24, 119, 242, 0.2);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fblk-fbadge {
    display: none
  }

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

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

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

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

  .fblk-section {
    padding: 12px 0
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    transform: translateX(0)
  }
}

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

.fblk-testi-track.fblk-testi-row-2 {
  animation: fblkTestiScrollReverse 80s linear infinite
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-seo1-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.4), rgba(66, 183, 42, 0.3), rgba(24, 119, 242, 0.2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 2;
}

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

.fblk-seo1-img-wrap:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 30px 80px rgba(24, 119, 242, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

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

/* Highlight Strip */
.fblk-seo1-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.06) 0%, rgba(66, 183, 42, 0.04) 100%);
  border-radius: 16px;
  border: 1px solid rgba(24, 119, 242, 0.12);
  border-left: 4px solid var(--fblk-primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-seo1-algo-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(24, 119, 242, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

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

.fblk-seo1-algo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(0, 212, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fblk-primary);
  font-size: 1.2rem;
  margin-bottom: 14px;
  border: 1px solid rgba(24, 119, 242, 0.15);
  transition: all 0.3s;
}

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

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

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

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

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

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

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

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

[data-bs-theme="dark"] .fblk-seo1-img-wrap {
  border-color: rgba(24, 119, 242, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-seo2-intro:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

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

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

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

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

.fblk-seo2-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-seo4-server-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  background: rgba(24, 119, 242, 0.08);
  color: var(--fblk-primary);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

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

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

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

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

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

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

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

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

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

.fblk-seo4-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  font-size: 0.82rem;
}

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

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

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

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

.fblk-seo4-best-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FFD700, #FF6B35);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-seo5-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(24, 119, 242, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.fblk-seo5-hero-img::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.3), rgba(66, 183, 42, 0.2), rgba(24, 119, 242, 0.15));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 2;
}

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

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

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

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

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

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

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

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

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

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

/* Tip Number Badge (watermark) */
.fblk-seo5-tip-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(24, 119, 242, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

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

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

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

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

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

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

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

/* Tip Inline Image (for Tip 1) */
.fblk-seo5-tip-img {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

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

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

/* CTA Callout Banner */
.fblk-seo5-cta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.06) 0%, rgba(66, 183, 42, 0.04) 100%);
  border-radius: 16px;
  border: 1px solid rgba(24, 119, 242, 0.12);
  border-left: 4px solid var(--fblk-primary);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-seo3-step-line {
  width: 3px;
  flex: 1;
  background: linear-gradient(180deg, rgba(24, 119, 242, 0.2), rgba(24, 119, 242, 0.05));
  border-radius: 3px;
  margin-top: 4px;
}

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

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

.fblk-seo3-step-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.15);
}

/* Thumbnail */
.fblk-seo3-step-thumb {
  width: 180px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

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

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

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

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

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

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

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

[data-bs-theme="dark"] .fblk-seo3-step-line {
  background: linear-gradient(180deg, rgba(24, 119, 242, 0.3), rgba(24, 119, 242, 0.1));
}

/* SEO-3 Responsive */
@media (max-width: 767px) {
  .fblk-seo3-step-thumb {
    width: 120px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-seo8-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(24, 119, 242, 0.08);
  border-color: rgba(24, 119, 242, 0.15);
  border-left-color: var(--item-accent, var(--fblk-primary));
}

.fblk-seo8-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-compare-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  transition: all 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fblk-strategy-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition: all 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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