/* For Businesses page — scoped to .forbiz-page only (no global colors / link styles) */

.forbiz-page {
  --fb-primary: #ff003c;
  --fb-primary-light: #ff3360;
  --fb-primary-dark: #d90033;
  --fb-primary-glow: rgba(255, 0, 60, 0.08);
  --fb-primary-soft: #ffe5ec;
  --fb-bg: #f9fafb;
  --fb-bg-card: #ffffff;
  --fb-bg-hover: #f8f9fa;
  --fb-surface: rgba(17, 24, 39, 0.02);
  --fb-surface-hover: rgba(17, 24, 39, 0.04);
  --fb-text: #111827;
  --fb-text-muted: #4a5568;
  --fb-text-soft: #6b7280;
  --fb-border: rgba(17, 24, 39, 0.08);
  --fb-border-hover: rgba(255, 0, 60, 0.28);
  --fb-radius-sm: 8px;
  --fb-radius-md: 12px;
  --fb-radius-lg: 16px;
  --fb-radius-xl: 24px;
  --fb-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --fb-shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --fb-shadow-primary: 0 0 40px rgba(255, 0, 60, 0.06);
  --fb-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  position: relative;
  background: var(--fb-bg);
  color: var(--fb-text-muted);
  line-height: 1.6;
}

.forbiz-page .fb-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ─── Hero ─── */
.forbiz-page .fb-hero {
  position: relative;
  width: 100%;
}

.forbiz-page .fb-hero-panel {
  position: relative;
  width: 100%;
  padding: 56px 0 64px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 8, 54, 1) 0%, rgba(0, 0, 0, 1) 100%);
  border-bottom: 1px solid var(--fb-border);
}

.forbiz-page .fb-hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 100% 0%, rgba(255, 0, 60, 0.09), transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(255, 0, 60, 0.04), transparent 50%);
}

.forbiz-page .fb-hero-mesh::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
}

.forbiz-page .fb-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.forbiz-page .fb-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 28px;
}

.forbiz-page .fb-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.forbiz-page .fb-breadcrumb span {
  font-weight: 600;
  color: #fff;
}

.forbiz-page .fb-breadcrumb a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.forbiz-page .fb-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.forbiz-page .fb-hero-date {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.forbiz-page .fb-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 48px;
  align-items: center;
  padding: 24px 0;
}

.forbiz-page .fb-hero-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fb-primary);
  background: var(--fb-primary-soft);
  border: 1px solid rgba(255, 0, 60, 0.15);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.forbiz-page .fb-hero-title {
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 11ch;
  color: #fff;
  margin: 0;
}

.forbiz-page .fb-hero-title--split {
  max-width: none;
}

.forbiz-page .fb-hero-title em {
  font-style: normal;
  color: var(--fb-primary);
}

.forbiz-page .fb-hero-subtitle {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: #fff;
  max-width: 52ch;
}

.forbiz-page .fb-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.forbiz-page .fb-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--fb-primary-dark), var(--fb-primary));
  border-radius: var(--fb-radius-md);
  box-shadow: 0 4px 14px rgba(255, 0, 60, 0.22);
  transition: var(--fb-transition);
  text-decoration: none;
}

.forbiz-page .fb-hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255, 0, 60, 0.28);
  color: #fff;
}

.forbiz-page .fb-hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.forbiz-page .fb-hero-cta:hover svg {
  transform: translateY(2px);
}

.forbiz-page .fb-hero-note {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

.forbiz-page .fb-hero-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: center;
  width: 100%;
}

.forbiz-page .fb-hero-metric {
  padding: 18px 20px;
  background: rgb(255 255 255 / 17%);
  backdrop-filter: blur(18px);
  border: 1px solid var(--fb-border);
  border-radius: var(--fb-radius-md);
  transition: var(--fb-transition);
}

.forbiz-page .fb-hero-metric:hover {
  border-color: var(--fb-border-hover);
  box-shadow: var(--fb-shadow-sm);
}

.forbiz-page .fb-hero-metric-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.forbiz-page .fb-hero-metric-value span {
  font-size: 15px;
  font-weight: 600;
  color: var(--fb-primary);
  margin-left: 2px;
}

.forbiz-page .fb-hero-metric-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

/* ─── Document ─── */
.forbiz-page .fb-doc,
.forbiz-page .fb-layout {
  overflow: visible;
}

.forbiz-page .fb-intro {
  padding-top: 48px;
  padding-bottom: 16px;
}

.forbiz-page .fb-lead {
  font-size: 20px;
  font-weight: 400;
  color: var(--fb-text);
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.fb-lead a{
  /* color: var(--fb-primary); */
  font-weight: 600;
  text-decoration: none;
}

.forbiz-page .fb-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fb-border), transparent);
  margin-top: 48px;
}

.forbiz-page .fb-divider--intro {
  margin-top: 18px;
  margin-bottom: 0;
}

.forbiz-page .fb-layout {
  display: flex;
  gap: 48px;
  padding: 24px 0 40px;
  align-items: flex-start;
}

/* ─── Sidebar (sticky) ─── */
.forbiz-page .fb-sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--header-height, 76px) + 16px);
  align-self: flex-start;
  z-index: 2;
}

.forbiz-page .fb-toc {
  background: var(--fb-bg-card);
  padding: 24px;
  border-radius: var(--fb-radius-xl);
  border: 1px solid var(--fb-border);
  box-shadow: var(--fb-shadow-md), var(--fb-shadow-primary);
  position: relative;
  overflow: hidden;
}

.forbiz-page .fb-toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fb-primary-light), transparent);
  opacity: 0.5;
}

.forbiz-page .fb-toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.forbiz-page .fb-toc-current {
  display: none;
}

.forbiz-page .fb-toc-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--fb-border);
  border-radius: var(--fb-radius-md);
  background: #fff;
  color: var(--fb-text-muted);
  cursor: pointer;
  transition: var(--fb-transition);
  padding: 0;
}

.forbiz-page .fb-toc-toggle:hover {
  border-color: var(--fb-border-hover);
  color: var(--fb-primary);
  background: var(--fb-primary-glow);
}

.forbiz-page .fb-toc-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.forbiz-page .fb-toc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fb-text-soft);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1.2;
}

.forbiz-page .fb-toc-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--fb-primary);
  border-radius: 50%;
}

.forbiz-page .fb-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.forbiz-page .fb-toc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--fb-radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--fb-text-muted);
  transition: var(--fb-transition);
  border: 1px solid transparent;
  text-decoration: none;
}

.forbiz-page .fb-toc-item:hover {
  background: var(--fb-surface-hover);
  color: var(--fb-text);
  border-color: var(--fb-border);
}

.forbiz-page .fb-toc-item--active {
  background: var(--fb-primary-soft);
  color: var(--fb-primary);
  font-weight: 600;
  border: 1px solid rgba(255, 0, 60, 0.12);
}

.forbiz-page .fb-toc-item--active:hover {
  color: var(--fb-primary-dark);
}

.forbiz-page .fb-toc-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--fb-text-soft);
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fb-radius-sm);
  background: var(--fb-surface);
  border: 1px solid var(--fb-border);
}

.forbiz-page .fb-toc-item--active .fb-toc-num {
  color: #fff;
  background: var(--fb-primary);
  border-color: var(--fb-primary);
}

/* ─── Main content ─── */
.forbiz-page .fb-main {
  flex: 1;
  min-width: 0;
}

.forbiz-page .fb-section {
  scroll-margin-top: calc(var(--header-height, 76px) + 24px);
}

.forbiz-page .fb-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--fb-border);
}

.forbiz-page .fb-section-num {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--fb-primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fb-radius-md);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 0, 60, 0.2);
}

.forbiz-page .fb-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--fb-text);
  letter-spacing: -0.02em;
  margin: 0;
}

.forbiz-page .fb-section-body p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--fb-text-muted);
  line-height: 1.75;
}

/* Content links — match site-wide .link_fill pattern (blog, reviews, etc.) */
.forbiz-page .fb-intro a,
.forbiz-page .fb-lead a,
.forbiz-page .fb-section-body a,
.forbiz-page .fb-callout a,
.forbiz-page .fb-disclaimer a,
.forbiz-page .fb-related-links a,
.forbiz-page .fb-table tbody a,
.forbiz-page .fb-list a,
.forbiz-page .fb-list--stacked a,
.forbiz-page .fb-list--bullets a,
.forbiz-page .fb-steps a {
  color: #212529 !important;
  background: linear-gradient(to bottom, var(--mainColor) 0%, var(--mainColor) 100%) !important;
  background-position: 0 100% !important;
  background-repeat: repeat-x !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
  border-radius: 6px !important;
  background-size: 4px 3px !important;
  padding: 0 4px 2px !important;
  font-weight: inherit;
}

.forbiz-page .fb-intro a:hover,
.forbiz-page .fb-lead a:hover,
.forbiz-page .fb-section-body a:hover,
.forbiz-page .fb-callout a:hover,
.forbiz-page .fb-disclaimer a:hover,
.forbiz-page .fb-related-links a:hover,
.forbiz-page .fb-table tbody a:hover,
.forbiz-page .fb-list a:hover,
.forbiz-page .fb-list--stacked a:hover,
.forbiz-page .fb-list--bullets a:hover,
.forbiz-page .fb-steps a:hover {
  background-size: 4px 48px !important;
  color: #fff !important;
  text-decoration: none !important;
}

.forbiz-page .fb-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.forbiz-page .fb-list--stacked li {
  margin-bottom: 24px;
  padding: 24px;
  background: var(--fb-bg-card);
  border-radius: var(--fb-radius-lg);
  border: 1px solid var(--fb-border);
  box-shadow: var(--fb-shadow-sm);
  transition: var(--fb-transition);
}

.forbiz-page .fb-list--stacked li:hover {
  transform: translateY(-2px);
  border-color: var(--fb-border-hover);
  box-shadow: var(--fb-shadow-md), var(--fb-shadow-primary);
  background: var(--fb-bg-hover);
}

.forbiz-page .fb-list--stacked h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fb-text);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.forbiz-page .fb-list--stacked h6::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--fb-primary);
  border-radius: 2px;
}

.forbiz-page .fb-list--stacked p {
  font-size: 15px;
  color: var(--fb-text-muted);
  margin: 0;
  line-height: 1.7;
}

.forbiz-page .fb-list--stacked p + p {
  margin-top: 12px;
}

.forbiz-page .fb-subsection-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fb-text);
  margin: 32px 0 16px;
}

.forbiz-page .fb-callout {
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--fb-bg-card);
  border-radius: var(--fb-radius-lg);
  border: 1px solid var(--fb-border);
  border-left: 4px solid var(--fb-primary);
  font-size: 15px;
  color: var(--fb-text-muted);
  line-height: 1.7;
}

.forbiz-page .fb-disclaimer {
  margin-top: 48px;
  padding: 24px;
  background: var(--fb-surface);
  border-radius: var(--fb-radius-lg);
  border: 1px solid var(--fb-border);
  font-size: 14px;
  color: var(--fb-text-soft);
  line-height: 1.7;
}

.forbiz-page .fb-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.forbiz-page .fb-contact-details a {
  color: var(--fb-primary);
  font-weight: 600;
  text-decoration: none;
}

.forbiz-page .fb-contact-details a:hover {
  color: var(--fb-primary-dark);
  text-decoration: underline;
}

.forbiz-page .scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fb-primary-dark), var(--fb-primary), var(--fb-primary-light));
  z-index: 1000;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
  .forbiz-page .fb-hero-panel {
    padding: 40px 0 48px;
  }

  .forbiz-page .fb-hero-inner {
    padding: 0 20px;
  }

  .forbiz-page .fb-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .forbiz-page .fb-hero-title {
    max-width: none;
  }

  .forbiz-page .fb-hero-subtitle {
    max-width: none;
  }

  .forbiz-page .fb-hero-metrics {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .forbiz-page .fb-hero-metric {
    flex: 1 1 140px;
    padding: 14px 16px;
  }

  .forbiz-page .fb-layout {
    flex-direction: column;
    gap: 24px;
    padding-top: 24px;
  }

  .forbiz-page .fb-sidebar {
    width: 100%;
    position: sticky;
    top: var(--header-height, 76px);
    z-index: 200;
    order: -1;
  }

  .forbiz-page .fb-toc {
    padding: 0;
    border-radius: var(--fb-radius-lg);
  }

  .forbiz-page .fb-toc-header {
    margin-bottom: 0;
    padding: 14px 20px;
    cursor: pointer;
  }

  .forbiz-page .fb-toc-current {
    display: block;
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--fb-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: none;
    letter-spacing: 0;
  }

  .forbiz-page .fb-sidebar:not(.is-collapsed) .fb-toc-current {
    display: none;
  }

  .forbiz-page .fb-toc-toggle {
    display: inline-flex;
  }

  .forbiz-page .fb-sidebar.is-collapsed .fb-toc-toggle svg {
    transform: rotate(-90deg);
  }

  .forbiz-page .fb-sidebar:not(.is-collapsed) .fb-toc-toggle svg {
    transform: rotate(90deg);
  }

  .forbiz-page .fb-toc-nav-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .forbiz-page .fb-sidebar:not(.is-collapsed) .fb-toc-nav-wrap {
    grid-template-rows: 1fr;
  }

  .forbiz-page .fb-toc-nav {
    overflow: hidden;
    padding: 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease, padding 0.42s ease;
  }

  .forbiz-page .fb-sidebar:not(.is-collapsed) .fb-toc-nav {
    opacity: 1;
    padding: 8px 16px 16px;
  }
}

@media (max-width: 575px) {
  .forbiz-page .fb-wrap {
    padding: 0 20px;
  }

  .forbiz-page .fb-section-title {
    font-size: 22px;
  }

  .forbiz-page .fb-list--stacked li {
    padding: 20px;
  }

  .forbiz-page .fb-hero-title {
    font-size: 34px;
  }
}
