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

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

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

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

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

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

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

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

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

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

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

@keyframes fbtaFloat1 {

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

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

@keyframes fbtaFloat2 {

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

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

@keyframes fbtaDotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

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

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

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

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

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

  50% {
    transform: scale(1.15)
  }

  100% {
    transform: scale(1)
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-col-form {
  order: 0
}

.fbta-col-illustration {
  order: 0
}

.fbta-anim-fadeIn {
  animation: fbtaFadeIn 0.8s ease both
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-server-trigger {
  position: relative
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-reaction-option {
  position: relative
}

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

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

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

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

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

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

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

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

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

.fbta-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: fbtaShimmer 3s infinite
}

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

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

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

/* Glass form select override */
.fbta-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
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-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: fbtaFeedSlideIn 0.5s ease-out
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-img-card {
  background: var(--fbta-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
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-guide-card {
  background: var(--fbta-card-bg);
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid var(--fbta-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
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-howto-card {
  background: var(--fbta-card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--fbta-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)
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-tip-card {
  background: var(--fbta-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(--fbta-card-border);
  border-top: 3px solid var(--fbta-primary)
}

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

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

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

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

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

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

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

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

.fbta-testi-row-1 {
  animation: fbtaMarquee 60s linear infinite
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  background: #fff;
  color: var(--fbta-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)
}

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

/* ========== LIGHTBOX ========== */
.fbta-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
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fbta-fbadge {
    display: none
  }

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

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

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

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

  .fbta-section {
    padding: 12px 0
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    transform: translateX(0)
  }
}

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

.fbta-testi-track.fbta-testi-row-2 {
  animation: fbtaTestiScrollReverse 80s linear infinite
}

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

.fbta-step-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--fbta-card-bg);
  border-radius: 20px;
  padding: 16px;
  border: 1px solid var(--fbta-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"] .fbta-step-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-content1-intro p {
  margin-bottom: 14px;
}

.fbta-content1-intro strong {
  color: var(--fbta-heading);
}

.fbta-content1-img-side {
  position: relative;
  z-index: 1;
}

.fbta-content1-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;
}

.fbta-content1-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;
}

.fbta-content1-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;
}

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

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

.fbta-content1-img-wrap:hover .fbta-content1-img {
  transform: scale(1.03);
}

/* Highlight Strip */
.fbta-content1-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(--fbta-primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

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

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

.fbta-content1-highlight strong {
  color: var(--fbta-heading);
}

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

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

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

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

/* Algorithm Section */
.fbta-content1-algo {
  position: relative;
}

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

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

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

.fbta-content1-algo-card {
  position: relative;
  background: var(--fbta-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbta-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;
}

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

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

.fbta-content1-algo-card:hover::before {
  opacity: 1;
}

.fbta-content1-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;
}

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

.fbta-content1-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(--fbta-primary);
  font-size: 1.2rem;
  margin-bottom: 14px;
  border: 1px solid rgba(24, 119, 242, 0.15);
  transition: all 0.3s;
}

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

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

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

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

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

.fbta-content1-algo-card a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .fbta-content1-img-side {
    max-width: 480px;
    margin: 0 auto;
  }

  .fbta-content1-magazine {
    padding: 32px 0 28px;
  }
}

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

  .fbta-content1-text-side .fbta-section-title {
    font-size: 1.3rem;
  }

  .fbta-content1-algo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fbta-content1-highlight {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .fbta-content1-magazine {
    padding: 24px 0 20px;
  }
}

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

.fbta-content2-intro {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: center;
  margin: 28px 0 36px;
  background: var(--fbta-card-bg);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid var(--fbta-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);
}

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

.fbta-content2-intro-img {
  border-radius: 16px;
  overflow: hidden;
}

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

.fbta-content2-intro:hover .fbta-content2-intro-img img {
  transform: scale(1.04);
}

.fbta-content2-intro-text {
  padding: 8px 12px 8px 0;
}

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

.fbta-content2-intro-text strong {
  color: var(--fbta-heading);
}

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

.fbta-content2-card {
  position: relative;
  background: var(--fbta-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbta-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;
}

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

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

.fbta-content2-card:hover::before {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

  .fbta-content2-intro-img {
    max-width: 420px;
    margin: 0 auto;
  }

  .fbta-content2-intro-text {
    padding: 0 8px 8px;
  }

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

  .fbta-content2-benefits {
    padding: 32px 0 28px;
  }
}

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

  .fbta-content2-benefits {
    padding: 24px 0 20px;
  }

  .fbta-content2-card {
    padding: 22px 20px 20px;
  }
}

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

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

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

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

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

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

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

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

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

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

.fbta-content4-card:hover::before {
  height: 6px;
}

.fbta-content4-card-header {
  margin-bottom: 12px;
}

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

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

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

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

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

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

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

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

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

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

.fbta-content4-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fbta-content4-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;
}

.fbta-content4-detail span {
  color: var(--fbta-text);
  opacity: 0.6;
}

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

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

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

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

.fbta-content4-best-badge i {
  font-size: 0.6rem;
}

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

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

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

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

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

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

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

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

.fbta-content4-formula-card strong {
  color: var(--fbta-heading);
}

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

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

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

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

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

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

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

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

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

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

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

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

  .fbta-content4-formula-grid {
    grid-template-columns: 1fr;
  }

  .fbta-content4-pricing {
    padding: 32px 0 28px;
  }
}

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

  .fbta-content4-card {
    padding: 20px 18px 18px;
  }

  .fbta-content4-pricing {
    padding: 24px 0 20px;
  }
}

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

/* Hero Card: Image + Text side-by-side */
.fbta-content5-hero {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--fbta-card-bg);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--fbta-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);
}

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

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

.fbta-content5-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;
}

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

.fbta-content5-hero:hover .fbta-content5-hero-img img {
  transform: scale(1.04);
}

.fbta-content5-hero-text {
  padding: 8px 12px 8px 0;
}

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

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

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

/* Individual Tip Card */
.fbta-content5-tip {
  position: relative;
  background: var(--fbta-card-bg);
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid var(--fbta-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;
}

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

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

.fbta-content5-tip:hover::before {
  opacity: 1;
}

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

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

/* Tip Icon */
.fbta-content5-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);
}

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

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

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

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

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

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

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

.fbta-content5-tip:hover .fbta-content5-tip-img img {
  transform: scale(1.03);
}

/* CTA Callout Banner */
.fbta-content5-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(--fbta-primary);
  transition: all 0.3s ease;
}

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

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

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

.fbta-content5-cta-body strong {
  color: var(--fbta-heading);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fbta-content5-hero-img {
    max-width: 420px;
    margin: 0 auto;
  }

  .fbta-content5-hero-text {
    padding: 0 8px 8px;
  }

  .fbta-content5-organic {
    padding: 32px 0 28px;
  }
}

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

  .fbta-content5-tip {
    padding: 22px 20px 20px;
  }

  .fbta-content5-hero-text .fbta-section-title {
    font-size: 1.25rem;
  }

  .fbta-content5-cta {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .fbta-content5-organic {
    padding: 24px 0 20px;
  }
}

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

  .fbta-content5-tip {
    padding: 18px 16px 16px;
  }
}

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

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

.fbta-content3-step {
  display: flex;
  gap: 0;
  position: relative;
}

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

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

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

.fbta-content3-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;
}

.fbta-content3-step-last .fbta-content3-step-line {
  display: none;
}

/* Content Card */
.fbta-content3-step-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
  background: var(--fbta-card-bg);
  border-radius: 16px;
  padding: 16px;
  margin: 0 0 20px 16px;
  border: 1px solid var(--fbta-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);
}

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

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

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

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

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

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

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

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

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

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

  .fbta-content3-step-content {
    gap: 14px;
    padding: 14px;
  }

  .fbta-content3-howto {
    padding: 32px 0 24px;
  }

  .fbta-content3-step-marker {
    width: 48px;
  }

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

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

  .fbta-content3-step-thumb {
    width: 100%;
    max-width: 280px;
  }

  .fbta-content3-step-marker {
    width: 40px;
  }

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

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

/* Header Card: Image + Text */
.fbta-content8-header {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--fbta-card-bg);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid var(--fbta-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);
}

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

.fbta-content8-header-img {
  border-radius: 16px;
  overflow: hidden;
}

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

.fbta-content8-header:hover .fbta-content8-header-img img {
  transform: scale(1.04);
}

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

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

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

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

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

.fbta-content8-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;
}

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

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

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

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

.fbta-content8-item-body a:hover {
  border-bottom-style: solid;
}

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

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

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

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

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

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

  .fbta-content8-header-img {
    max-width: 380px;
    margin: 0 auto;
  }

  .fbta-content8-notes {
    padding: 32px 0 28px;
  }
}

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

  .fbta-content8-header {
    padding: 16px;
  }

  .fbta-content8-header-text .fbta-section-title {
    font-size: 1.2rem;
  }
}

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

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

/* Base Card */
.fbta-compare-card {
  position: relative;
  background: var(--fbta-card-bg);
  border-radius: 20px;
  padding: 0;
  border: 1px solid var(--fbta-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-price-card {
  position: relative;
  background: var(--fbta-card-bg);
  border-radius: 20px;
  border: 1px solid var(--fbta-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fbta-strategy-card {
  position: relative;
  background: var(--fbta-card-bg);
  border: 1px solid var(--fbta-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* =========================================================
   SEO INTENT V3 — TĂNG LIKE BÀI VIẾT FACEBOOK
   ========================================================= */
.fbta-v3-section {
  position: relative;
  padding-top: clamp(48px, 6vw, 82px);
  padding-bottom: clamp(48px, 6vw, 82px);
}

.fbta-v3-soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(24, 119, 242, .08), transparent 34%),
    linear-gradient(180deg, rgba(240, 246, 255, .9), rgba(255, 255, 255, .96));
}

.fbta-v3-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--fbta-primary);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fbta-v3-kicker::before {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--fbta-gradient-accent);
  content: "";
}

.fbta-v3-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.fbta-v3-heading .fbta-v3-kicker {
  justify-content: center;
}

.fbta-v3-heading > p {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--fbta-text);
  font-size: .98rem;
  line-height: 1.8;
}

.fbta-v3-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.fbta-v3-split-reverse {
  grid-template-columns: minmax(360px, .98fr) minmax(0, 1.02fr);
}

.fbta-v3-copy > p {
  color: var(--fbta-text);
  font-size: .98rem;
  line-height: 1.82;
}

.fbta-v3-copy > p + p {
  margin-top: 14px;
}

.fbta-v3-copy strong {
  color: var(--fbta-heading);
}

.fbta-v3-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(24, 119, 242, .16);
  border-radius: 16px;
  background: rgba(24, 119, 242, .06);
}

.fbta-v3-note > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--fbta-primary);
  color: #fff;
}

.fbta-v3-note p {
  margin: 0;
  color: var(--fbta-text);
  font-size: .9rem;
  line-height: 1.7;
}

.fbta-v3-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(24, 119, 242, .14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 57, 107, .13);
}

.fbta-v3-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.fbta-v3-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .45s ease;
}

.fbta-v3-media:hover img {
  transform: scale(1.025);
}

.fbta-v3-media figcaption {
  padding: 13px 18px;
  color: var(--fbta-text);
  font-size: .78rem;
  line-height: 1.5;
}

.fbta-v3-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.fbta-v3-scope-card {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  padding: 24px 20px;
  border: 1px solid var(--fbta-card-border);
  border-radius: 18px;
  background: var(--fbta-card-bg);
  box-shadow: 0 10px 35px rgba(17, 57, 107, .06);
}

.fbta-v3-scope-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 86px;
  border-radius: 0 0 0 86px;
  background: linear-gradient(135deg, rgba(24, 119, 242, .1), rgba(66, 183, 42, .08));
  content: "";
}

.fbta-v3-scope-card > i {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: var(--fbta-primary);
  font-size: 1.45rem;
}

.fbta-v3-scope-card h3 {
  margin-bottom: 8px;
  color: var(--fbta-heading);
  font-size: 1rem;
}

.fbta-v3-scope-card p {
  margin: 0;
  color: var(--fbta-text);
  font-size: .84rem;
  line-height: 1.62;
}

.fbta-v3-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fbta-v3-feature-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 28px 22px 24px;
  border: 1px solid rgba(24, 119, 242, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 50px rgba(17, 57, 107, .07);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.fbta-v3-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 119, 242, .3);
  box-shadow: 0 24px 60px rgba(17, 57, 107, .12);
}

.fbta-v3-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(24, 119, 242, .11);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.fbta-v3-feature-card > i {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(24, 119, 242, .14), rgba(66, 183, 42, .1));
  color: var(--fbta-primary);
  font-size: 1.3rem;
}

.fbta-v3-feature-card h3 {
  margin-bottom: 10px;
  color: var(--fbta-heading);
  font-size: 1rem;
}

.fbta-v3-feature-card p {
  margin: 0;
  color: var(--fbta-text);
  font-size: .86rem;
  line-height: 1.7;
}

.fbta-v3-do-dont {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.fbta-v3-do-dont > div {
  padding: 24px 26px;
  border: 1px solid rgba(24, 119, 242, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
}

.fbta-v3-do-dont > div:last-child {
  border-color: rgba(243, 62, 88, .16);
}

.fbta-v3-do-dont h3 {
  margin-bottom: 14px;
  color: var(--fbta-heading);
  font-size: 1rem;
}

.fbta-v3-do-dont h3 i {
  margin-right: 7px;
  color: var(--fbta-success, #42B72A);
}

.fbta-v3-do-dont > div:last-child h3 i {
  color: var(--fbta-danger, #F33E58);
}

.fbta-v3-do-dont ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--fbta-text);
  font-size: .87rem;
  line-height: 1.6;
}

.fbta-v3-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fbta-v3-benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  min-height: 174px;
  padding: 24px;
  border: 1px solid var(--fbta-card-border);
  border-radius: 20px;
  background: var(--fbta-card-bg);
  box-shadow: 0 14px 45px rgba(17, 57, 107, .06);
  transition: transform .3s ease, border-color .3s ease;
}

.fbta-v3-benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 119, 242, .3);
}

.fbta-v3-benefit > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--fbta-gradient-accent);
  color: #fff;
  font-size: 1.15rem;
}

.fbta-v3-benefit h3 {
  margin: 2px 0 8px;
  color: var(--fbta-heading);
  font-size: .98rem;
}

.fbta-v3-benefit p {
  margin: 0;
  color: var(--fbta-text);
  font-size: .84rem;
  line-height: 1.65;
}

.fbta-v3-comparison-block {
  margin-top: clamp(48px, 6vw, 76px);
  padding-top: clamp(40px, 5vw, 62px);
  border-top: 1px solid var(--fbta-card-border);
}

.fbta-v3-price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .75fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.fbta-v3-formula {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(24, 119, 242, .15);
  border-radius: 16px;
  background: rgba(24, 119, 242, .055);
}

.fbta-v3-formula span,
.fbta-v3-formula strong {
  padding: 9px 13px;
  border-radius: 10px;
  background: #fff;
  color: var(--fbta-heading);
  font-size: .88rem;
  box-shadow: 0 5px 15px rgba(17, 57, 107, .07);
}

.fbta-v3-formula strong {
  background: var(--fbta-gradient-accent);
  color: #fff;
}

.fbta-v3-formula i {
  color: var(--fbta-primary);
}

.fbta-v3-inline-cta {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--fbta-gradient-accent);
  color: #fff;
  font-size: .88rem;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(24, 119, 242, .2);
  transition: transform .25s ease, box-shadow .25s ease;
}

.fbta-v3-inline-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(24, 119, 242, .28);
  color: #fff;
}

.fbta-v3-price-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(145deg, #0a1628, #153b68);
  box-shadow: 0 28px 75px rgba(8, 37, 72, .26);
}

.fbta-v3-price-panel::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(24, 119, 242, .24);
  content: "";
}

.fbta-v3-price-panel h3 {
  position: relative;
  margin-bottom: 22px;
  color: #fff;
  font-size: 1.1rem;
}

.fbta-v3-price-panel ol {
  position: relative;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fbta-v3-price-panel li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  background: rgba(255, 255, 255, .055);
}

.fbta-v3-price-panel li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--fbta-gradient-accent);
  color: #fff;
  font-weight: 800;
}

.fbta-v3-price-panel strong {
  color: #fff;
  font-size: .9rem;
}

.fbta-v3-price-panel p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: .8rem;
  line-height: 1.55;
}

.fbta-v3-organic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fbta-v3-organic-card {
  position: relative;
  padding: 26px 24px;
  border: 1px solid rgba(24, 119, 242, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 42px rgba(17, 57, 107, .06);
}

.fbta-v3-organic-card > i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(24, 119, 242, .1);
  color: var(--fbta-primary);
  font-size: 1.1rem;
}

.fbta-v3-organic-card h3 {
  margin-bottom: 9px;
  color: var(--fbta-heading);
  font-size: .98rem;
}

.fbta-v3-organic-card p {
  margin: 0;
  color: var(--fbta-text);
  font-size: .84rem;
  line-height: 1.7;
}

.fbta-v3-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(24, 119, 242, .14);
  border-radius: 22px;
  background: var(--fbta-card-bg);
  box-shadow: 0 18px 58px rgba(17, 57, 107, .08);
}

.fbta-v3-table {
  width: 100%;
  min-width: 790px;
  border-collapse: collapse;
}

.fbta-v3-table th,
.fbta-v3-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--fbta-card-border);
  text-align: left;
  vertical-align: top;
}

.fbta-v3-table thead th {
  background: linear-gradient(135deg, #0e2d53, #174e86);
  color: #fff;
  font-size: .82rem;
  letter-spacing: .02em;
}

.fbta-v3-table tbody th {
  width: 20%;
  color: var(--fbta-heading);
  font-size: .88rem;
}

.fbta-v3-table tbody td {
  color: var(--fbta-text);
  font-size: .84rem;
  line-height: 1.55;
}

.fbta-v3-table tbody tr:last-child th,
.fbta-v3-table tbody tr:last-child td {
  border-bottom: 0;
}

.fbta-v3-table tbody tr:hover {
  background: rgba(24, 119, 242, .035);
}

.fbta-v3-table-note {
  max-width: 900px;
  margin: 18px auto 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(24, 119, 242, .065);
  color: var(--fbta-text);
  font-size: .85rem;
  line-height: 1.65;
}

.fbta-v3-table-note i {
  margin-right: 7px;
  color: var(--fbta-primary);
}

.fbta-v3-checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fbta-v3-checklist li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(24, 119, 242, .11);
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
}

.fbta-v3-checklist li > i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(66, 183, 42, .12);
  color: var(--fbta-success, #42B72A);
}

.fbta-v3-checklist strong {
  color: var(--fbta-heading);
  font-size: .9rem;
}

.fbta-v3-checklist p {
  margin: 3px 0 0;
  color: var(--fbta-text);
  font-size: .81rem;
  line-height: 1.55;
}

.fbta-v3-warning {
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(243, 62, 88, .14);
  border-radius: 14px;
  background: rgba(243, 62, 88, .06);
  color: var(--fbta-text);
  font-size: .84rem;
  line-height: 1.6;
}

.fbta-v3-warning i {
  margin-right: 7px;
  color: var(--fbta-danger, #F33E58);
}

.fbta-section.fbta-v3-testimonials {
  padding: clamp(52px, 6vw, 82px) 0;
  background:
    radial-gradient(circle at 18% 0, rgba(24, 119, 242, .28), transparent 34%),
    radial-gradient(circle at 82% 100%, rgba(66, 183, 42, .18), transparent 30%),
    linear-gradient(135deg, #071425, #102f55 52%, #071425);
}

.fbta-v3-testimonials .fbta-v3-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.fbta-v3-testimonials .fbta-v3-kicker {
  color: #78b6ff;
}

.fbta-v3-testimonials .fbta-v3-heading > p {
  color: rgba(255, 255, 255, .72);
}

.fbta-testimonial-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.fbta-testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-left: 18px;
  animation: fbtaV3TestimonialMarquee 120s linear infinite;
}

.fbta-testimonial-marquee:hover .fbta-testimonial-track,
.fbta-testimonial-marquee:focus-within .fbta-testimonial-track {
  animation-play-state: paused;
}

.fbta-testimonial-card {
  display: flex;
  width: min(390px, 86vw);
  min-height: 250px;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 22px;
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}

.fbta-testimonial-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.fbta-testimonial-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  background: var(--fbta-gradient-accent);
  color: #fff;
  font-size: .83rem;
  font-weight: 800;
}

.fbta-testimonial-top h3 {
  margin: 0 0 3px;
  color: #fff;
  font-size: .94rem;
}

.fbta-testimonial-top p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .73rem;
}

.fbta-testimonial-text {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: .85rem;
  line-height: 1.72;
}

@keyframes fbtaV3TestimonialMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.fbta-related-card h3 {
  margin-bottom: 8px;
  color: var(--fbta-heading);
  font-size: 1rem;
}

.fbta-related-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 14px;
  color: var(--fbta-primary);
  font-size: .78rem;
  font-weight: 750;
}

.fbta-cta-final h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
}

.fbta-order-dialog {
  width: min(420px, 90vw);
  padding: 32px;
  border-radius: 18px;
  background: var(--bs-body-bg, #fff);
  text-align: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

.fbta-order-dialog > i {
  margin-bottom: 16px;
  font-size: 48px;
}

.fbta-order-dialog h3 {
  margin: 0 0 10px;
  color: var(--fbta-heading);
  font-size: 1.2rem;
}

.fbta-order-dialog p {
  margin: 0 0 22px;
  color: var(--fbta-text);
  font-size: .9rem;
  line-height: 1.6;
}

.fbta-order-dialog button {
  min-width: 112px;
  padding: 10px 26px;
  border: 0;
  border-radius: 10px;
  background: var(--fbta-primary);
  color: #fff;
  font-weight: 700;
}

[data-bs-theme="dark"] .fbta-v3-soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(24, 119, 242, .14), transparent 34%),
    linear-gradient(180deg, rgba(8, 22, 40, .97), rgba(10, 25, 44, .99));
}

[data-bs-theme="dark"] .fbta-v3-feature-card,
[data-bs-theme="dark"] .fbta-v3-do-dont > div,
[data-bs-theme="dark"] .fbta-v3-organic-card,
[data-bs-theme="dark"] .fbta-v3-checklist li {
  border-color: rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
}

[data-bs-theme="dark"] .fbta-v3-media {
  border-color: rgba(255, 255, 255, .11);
  background: #0b1d33;
}

[data-bs-theme="dark"] .fbta-v3-formula span,
[data-bs-theme="dark"] .fbta-v3-formula strong {
  background: rgba(255, 255, 255, .08);
}

[data-bs-theme="dark"] .fbta-v3-formula strong {
  background: var(--fbta-gradient-accent);
}

@media (max-width: 1199px) {
  .fbta-v3-card-grid,
  .fbta-v3-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .fbta-v3-split,
  .fbta-v3-split-reverse,
  .fbta-v3-price-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .fbta-v3-split-reverse .fbta-v3-media {
    order: 2;
  }

  .fbta-v3-benefit-grid,
  .fbta-v3-organic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fbta-v3-media {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 767.98px) {
  .fbta-v3-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .fbta-v3-heading {
    margin-bottom: 26px;
  }

  .fbta-v3-card-grid,
  .fbta-v3-scope-grid,
  .fbta-v3-benefit-grid,
  .fbta-v3-organic-grid,
  .fbta-v3-do-dont {
    grid-template-columns: minmax(0, 1fr);
  }

  .fbta-v3-feature-card {
    min-height: 0;
  }

  .fbta-v3-benefit {
    min-height: 0;
  }

  .fbta-v3-formula {
    justify-content: center;
  }

  .fbta-testimonial-card {
    min-height: 280px;
  }
}

@media (max-width: 575.98px) {
  #sb-bts-float {
    display: none !important;
  }

  .fbta-v3-split {
    gap: 24px;
  }

  .fbta-v3-media {
    border-radius: 18px;
  }

  .fbta-v3-scope-card,
  .fbta-v3-feature-card,
  .fbta-v3-benefit,
  .fbta-v3-organic-card,
  .fbta-v3-price-panel {
    padding: 20px;
    border-radius: 17px;
  }

  .fbta-v3-do-dont > div {
    padding: 20px;
  }

  .fbta-v3-benefit {
    grid-template-columns: 46px 1fr;
    gap: 13px;
  }

  .fbta-v3-benefit > i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .fbta-v3-price-panel {
    padding: 22px;
  }

  .fbta-v3-formula {
    gap: 7px;
    padding: 14px;
  }

  .fbta-v3-formula span,
  .fbta-v3-formula strong {
    padding: 8px 10px;
    font-size: .79rem;
  }

  .fbta-testimonial-card {
    width: 84vw;
    min-height: 308px;
    padding: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbta-anim-fadeIn,
  .fbta-anim-slideUp,
  .fbta-fbadge,
  .fbta-robot-img-sm,
  .fbta-kw,
  .fbta-testimonial-track,
  .fbta-readmore-wrap .fa-chevron-down {
    animation: none !important;
  }

  .fbta-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .fbta-v3-media img,
  .fbta-v3-feature-card,
  .fbta-v3-benefit,
  .fbta-v3-inline-cta {
    transition: none !important;
  }
}

/* =========================================================
   CONTENT V3 FINAL — COMPACT LAYOUT, LARGE SEO IMAGES
   ========================================================= */
.fbta-section.fbta-v3-section {
  padding: 52px 0;
}

.fbta-section[id] {
  scroll-margin-top: 150px;
}

.fbta-section.fbta-v3-soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(24, 119, 242, .08), transparent 34%),
    linear-gradient(180deg, rgba(240, 246, 255, .9), rgba(255, 255, 255, .96));
}

.fbta-v3-section::before {
  display: none;
}

.fbta-v3-heading {
  margin-bottom: 24px;
}

.fbta-v3-scope-card,
.fbta-v3-feature-card,
.fbta-v3-benefit {
  min-height: 0;
}

.fbta-v3-media img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.fbta-v3-media:hover img {
  transform: none;
}

.fbta-v3-wide-media {
  width: min(940px, 100%);
  margin: 24px auto;
}

.fbta-img-card::before,
.fbta-img-card::after {
  pointer-events: none;
}

.fbta-v3-audience-note {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(24, 119, 242, .15);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(24, 119, 242, .07), rgba(66, 183, 42, .055));
}

.fbta-v3-audience-note > i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: var(--fbta-gradient-accent);
  color: #fff;
  font-size: 1.2rem;
}

.fbta-v3-audience-note h3,
.fbta-v3-after-order h3,
.fbta-v3-method-answer h3,
.fbta-v3-subheading h3 {
  margin: 0 0 8px;
  color: var(--fbta-heading);
  font-size: 1.05rem;
  line-height: 1.45;
}

.fbta-v3-audience-note p,
.fbta-v3-after-order p,
.fbta-v3-method-answer p,
.fbta-v3-subheading p {
  margin: 0;
  color: var(--fbta-text);
  font-size: .88rem;
  line-height: 1.75;
}

.fbta-content3-timeline {
  display: grid;
  width: min(1120px, 100%);
  max-width: 1120px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.fbta-content3-step {
  position: relative;
  display: block;
  min-width: 0;
}

.fbta-content3-step-marker {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  width: auto;
}

.fbta-content3-step-line {
  display: none;
}

.fbta-content3-step-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(24, 119, 242, .14);
  border-radius: 22px;
  background: var(--fbta-card-bg);
  box-shadow: 0 16px 48px rgba(17, 57, 107, .09);
}

.fbta-content3-step-thumb {
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.fbta-content3-step-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
}

.fbta-content3-step-content:hover .fbta-content3-step-thumb img {
  transform: none;
}

.fbta-content3-step-info {
  padding: 18px 20px 20px;
}

.fbta-content3-step-info h3 {
  margin: 0 0 7px;
  color: var(--fbta-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.fbta-content3-step-info p {
  margin: 0;
  color: var(--fbta-text);
  font-size: .85rem;
  line-height: 1.7;
}

.fbta-content3-step-last {
  width: min(550px, 100%);
  grid-column: 1 / -1;
  justify-self: center;
}

.fbta-v3-phase-grid,
.fbta-v3-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.fbta-v3-phase-card,
.fbta-v3-method-card {
  padding: 24px;
  border: 1px solid rgba(24, 119, 242, .13);
  border-radius: 20px;
  background: var(--fbta-card-bg);
  box-shadow: 0 14px 42px rgba(17, 57, 107, .065);
}

.fbta-v3-phase-card > span {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(24, 119, 242, .09);
  color: var(--fbta-primary);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fbta-v3-phase-card h3,
.fbta-v3-method-card h3 {
  margin: 0 0 9px;
  color: var(--fbta-heading);
  font-size: 1rem;
  line-height: 1.45;
}

.fbta-v3-phase-card p,
.fbta-v3-method-card p {
  margin: 0;
  color: var(--fbta-text);
  font-size: .84rem;
  line-height: 1.72;
}

.fbta-v3-method-card p + p {
  margin-top: 9px;
}

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

.fbta-v3-subheading {
  max-width: 880px;
  margin: 34px auto 20px;
  text-align: center;
}

.fbta-v3-subheading h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.75rem);
}

.fbta-v3-method-answer,
.fbta-v3-after-order {
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(66, 183, 42, .18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(66, 183, 42, .07), rgba(24, 119, 242, .055));
}

.fbta-v3-after-order h3 i {
  margin-right: 7px;
  color: var(--fbta-success, #42B72A);
}

.fbta-section.fbta-v3-testimonials {
  padding: 48px 0 54px;
}

.fbta-testimonial-wrapper {
  position: relative;
  overflow: hidden;
  padding: 6px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.fbta-testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 6px 0;
  will-change: transform;
}

.fbta-testimonial-row-1 {
  animation: fbtaTestimonialForward 72s linear infinite;
}

.fbta-testimonial-row-2 {
  margin-top: 16px;
  animation: fbtaTestimonialReverse 78s linear infinite;
}

.fbta-testimonial-track:hover,
.fbta-testimonial-track:focus-within {
  animation-play-state: paused;
}

.fbta-testimonial-card {
  width: min(360px, 84vw);
  min-height: 270px;
  padding: 20px;
  border-radius: 18px;
}

.fbta-testimonial-top {
  margin-bottom: 12px;
}

.fbta-testimonial-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(120, 182, 255, .24);
  border-radius: 999px;
  background: rgba(24, 119, 242, .15);
  color: #91c6ff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .025em;
}

.fbta-testimonial-text {
  font-size: .82rem;
  line-height: 1.66;
}

@keyframes fbtaTestimonialForward {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

@keyframes fbtaTestimonialReverse {
  from { transform: translateX(calc(-50% - 9px)); }
  to { transform: translateX(0); }
}

.fbta-proof-robot {
  display: grid;
  width: 150px;
  height: 150px;
  flex: 0 0 150px;
  place-items: center;
}

.fbta-robot-img-sm {
  width: 142px;
  height: auto;
  max-height: 148px;
  object-fit: contain;
  animation: fbtaRobotFloat 4.8s ease-in-out infinite;
  filter: drop-shadow(0 7px 22px rgba(24, 119, 242, .3));
}

.fbta-proof-robot .fbta-fbadge {
  display: inline-flex;
}

.fbta-proof-robot .fbta-mini-1 {
  top: 0;
  right: -8px;
}

.fbta-proof-robot .fbta-mini-2 {
  bottom: 3px;
  left: -8px;
}

.fbta-proof-robot .fbta-mini-3 {
  top: 51%;
  right: -13px;
  opacity: .82;
}

@keyframes fbtaRobotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

[data-bs-theme="dark"] .fbta-section.fbta-v3-soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(24, 119, 242, .11), transparent 34%),
    linear-gradient(180deg, rgba(8, 22, 42, .98), rgba(12, 30, 54, .98));
}

[data-bs-theme="dark"] .fbta-v3-audience-note,
[data-bs-theme="dark"] .fbta-v3-method-answer,
[data-bs-theme="dark"] .fbta-v3-after-order {
  background: rgba(16, 42, 72, .82);
}

@media (max-width: 991.98px) {
  .fbta-proof-hero {
    align-items: flex-start;
    gap: 12px;
  }

  .fbta-proof-robot {
    width: 104px;
    height: 112px;
    flex-basis: 104px;
  }

  .fbta-robot-img-sm {
    width: 98px;
    max-height: 104px;
  }

  .fbta-proof-robot .fbta-fbadge {
    display: inline-flex;
    font-size: .5rem;
  }

  .fbta-v3-phase-grid,
  .fbta-v3-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .fbta-section.fbta-v3-section,
  .fbta-section.fbta-v3-testimonials {
    padding: 42px 0;
  }

  .fbta-v3-heading {
    margin-bottom: 22px;
  }

  .fbta-content3-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fbta-content3-step-last {
    width: 100%;
    grid-column: auto;
  }

  .fbta-testimonial-wrapper {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }

  .fbta-testimonial-card {
    width: min(340px, 88vw);
    min-height: 0;
  }

  .fbta-v3-audience-note {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .fbta-v3-audience-note > i {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
}

@media (max-width: 575.98px) {
  .fbta-stepper {
    gap: 7px;
  }

  .fbta-step {
    min-width: 0;
    flex: 1 1 0;
    justify-content: center;
    gap: 0;
    font-size: 0;
  }

  .fbta-step-num {
    margin: 0;
    font-size: .68rem;
  }
}

@media (max-width: 420px) {
  .fbta-proof-hero {
    display: block;
  }

  .fbta-proof-robot {
    margin: 0 auto 12px;
  }
}

/* ========== SERVICE-SPECIFIC FORM CONTROLS ========== */
.fbta-field-note {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
  line-height: 1.45;
}

.fbta-cookie-note {
  padding: 10px 12px;
  border: 1px solid rgba(255, 209, 102, .22);
  border-radius: 10px;
  background: rgba(255, 209, 102, .07);
}

.fbta-cookie-note-title {
  color: #ffd166;
}

.fbta-cookie-note ul {
  margin: 5px 0 0;
  padding-left: 18px;
}

.fbta-cookie-note li + li {
  margin-top: 3px;
}

.fbta-cookie-note li strong {
  color: rgba(255, 255, 255, .88);
}

.fbta-session-field {
  min-height: 68px;
  resize: vertical;
  font-family: inherit;
}

.fbta-config-panel {
  margin: 14px 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.fbta-config-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}

.fbta-config-heading > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, rgba(24, 119, 242, .9), rgba(66, 183, 42, .75));
}

.fbta-config-heading strong,
.fbta-config-heading span {
  display: block;
}

.fbta-config-heading strong {
  color: #fff;
  font-size: .84rem;
}

.fbta-config-heading span {
  margin-top: 2px;
  color: rgba(255, 255, 255, .5);
  font-size: .69rem;
}

.fbta-skip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.fbta-check-card {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.fbta-check-card > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.fbta-check-card > span {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 2px 9px;
  min-height: 74px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 11px;
  color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .035);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.fbta-check-card > span > i {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: #8bbcff;
  background: rgba(24, 119, 242, .13);
}

.fbta-check-card strong,
.fbta-check-card small {
  display: block;
}

.fbta-check-card strong {
  align-self: end;
  color: rgba(255, 255, 255, .9);
  font-size: .72rem;
  line-height: 1.25;
}

.fbta-check-card small {
  color: rgba(255, 255, 255, .46);
  font-size: .64rem;
  line-height: 1.35;
}

.fbta-check-card:hover > span {
  transform: translateY(-1px);
  border-color: rgba(24, 119, 242, .38);
}

.fbta-check-card > input:focus-visible + span {
  outline: 2px solid #8bbcff;
  outline-offset: 2px;
}

.fbta-check-card > input:checked + span {
  border-color: rgba(66, 183, 42, .58);
  background: linear-gradient(135deg, rgba(24, 119, 242, .12), rgba(66, 183, 42, .1));
  box-shadow: inset 0 0 0 1px rgba(66, 183, 42, .08);
}

.fbta-check-card > input:checked + span > i {
  color: #fff;
  background: var(--fbta-accent);
}

.fbta-skip-list-wrap {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .28s ease, opacity .22s ease, margin .28s ease;
}

.fbta-skip-list-wrap.is-open {
  max-height: 180px;
  margin-top: 12px;
  opacity: 1;
}

.fbta-time-row {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .025);
}

.fbta-time-row .fbta-form-group {
  margin-bottom: 0;
}

/* ========== SERVICE-SPECIFIC CONTENT ========== */
.fbta-control-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

.fbta-control-card {
  position: relative;
  min-width: 0;
  padding: 22px 18px 18px;
  border: 1px solid rgba(24, 119, 242, .13);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(26, 52, 84, .07);
}

.fbta-control-card > span {
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(24, 119, 242, .16);
  font-size: 1.6rem;
  font-weight: 800;
}

.fbta-control-card > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 13px;
  color: #fff;
  background: var(--fbta-gradient-accent);
  box-shadow: 0 8px 20px rgba(24, 119, 242, .18);
}

.fbta-control-card h3 {
  margin: 0 0 8px;
  color: #15233b;
  font-size: 1rem;
}

.fbta-control-card p {
  margin: 0;
  color: #607086;
  font-size: .86rem;
  line-height: 1.65;
}

.fbta-checklist-numbered > div {
  align-items: flex-start;
}

.fbta-checklist-numbered > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  background: var(--fbta-gradient-accent);
}

[data-bs-theme="dark"] .fbta-control-card {
  border-color: rgba(114, 174, 255, .14);
  background: rgba(16, 42, 72, .82);
  box-shadow: none;
}

[data-bs-theme="dark"] .fbta-control-card h3 {
  color: #f3f7ff;
}

[data-bs-theme="dark"] .fbta-control-card p {
  color: #b7c5d8;
}

@media (max-width: 1199.98px) {
  .fbta-control-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .fbta-skip-grid,
  .fbta-control-map {
    grid-template-columns: 1fr;
  }

  .fbta-check-card > span {
    min-height: 68px;
  }

  .fbta-control-card {
    padding: 19px 17px;
  }
}
