/* ==========================================================================
   Fast Launch — "For which businesses" section.
   Reuses the /web-development mid-banner look: a wide dark full-bleed strip
   with the app collage bleeding, tilted, from both sides and fading to a dark
   readable centre — here holding the heading, a scattered field of business
   chips and a closing note. Scoped to #fl-for-business.
   ========================================================================== */

#fl-for-business .fb-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #07090c;
  box-shadow: 0 23px 52.9px rgba(0, 0, 0, 0.35), 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* ---------- Collage (tilted, bleeding from each edge) ---------- */
#fl-for-business .fb-banner__collage {
  position: absolute;
  top: 50%;
  width: 760px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%) rotate(15deg);
}
#fl-for-business .fb-banner__collage--left {
  left: -360px;
}
#fl-for-business .fb-banner__collage--right {
  right: -360px;
}

/* Dark scrim: keeps the collage visible at the edges, dark in the centre. */
#fl-for-business .fb-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(7, 9, 12, 0) 0%,
    rgba(7, 9, 12, 0.82) 26%,
    rgba(7, 9, 12, 0.92) 50%,
    rgba(7, 9, 12, 0.82) 74%,
    rgba(7, 9, 12, 0) 100%
  );
}

/* ---------- Centre content ---------- */
#fl-for-business .fb-banner__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 940px;
  text-align: center;
}

#fl-for-business .fb-banner__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

@media (max-width: 560px) {
  #fl-for-business .fb-banner__title {
    font-size: 26px;
  }
}

/* ---------- Scattered business chips ---------- */
#fl-for-business .fb-scatter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 14px;
  max-width: 820px;
}

#fl-for-business .fb-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 62px;
  background: rgba(23, 23, 23, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

#fl-for-business .fb-chip:hover {
  background: rgba(87, 166, 251, 0.85);
  border-color: rgba(87, 166, 251, 0.9);
  transform: translateY(-2px) rotate(0deg) !important;
}

#fl-for-business .fb-chip__emoji {
  font-size: 20px;
  line-height: 1;
}

/* Scatter the chips: staggered rotations and vertical offsets so they read as
   a loose cloud rather than a tidy row (kept in flow, so still responsive). */
#fl-for-business .fb-chip:nth-child(3n + 1) { transform: rotate(-2deg) translateY(-5px); }
#fl-for-business .fb-chip:nth-child(3n + 2) { transform: rotate(2deg) translateY(6px); }
#fl-for-business .fb-chip:nth-child(3n + 3) { transform: rotate(-1deg) translateY(-2px); }
#fl-for-business .fb-chip:nth-child(4n + 1) { margin-left: 18px; }
#fl-for-business .fb-chip:nth-child(5n + 3) { margin-right: 20px; }

@media (max-width: 560px) {
  /* Straighten out on small screens so nothing clips at the edges. */
  #fl-for-business .fb-chip,
  #fl-for-business .fb-chip:nth-child(3n + 1),
  #fl-for-business .fb-chip:nth-child(3n + 2),
  #fl-for-business .fb-chip:nth-child(3n + 3) {
    transform: none;
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* ---------- Closing note ---------- */
#fl-for-business .fb-banner__note {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  opacity: 0.55;
  margin: 0;
  max-width: 640px;
}
