/* ==================================================================
   Our Approach — tabbed dark block (pill tab bar + image/text).
   Sits between the Quote CTA and FAQs. Ink surface + orange glow.
   ================================================================== */

.st {
  position: relative; overflow: hidden;
  background: var(--surface-ink, #0d0f0f);
  padding: 96px 80px 104px; color: #fff; font-family: var(--font-sans);
}
.st-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

/* Pill tab bar -------------------------------------------------------- */
.st-tabs {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 0 auto 56px; padding: 6px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-pill, 999px);
  background: rgba(255,255,255,0.04);
}
.st-tabs { display: flex; width: fit-content; }
.st-tab {
  appearance: none; border: 0; cursor: pointer; background: transparent;
  padding: 12px 26px; border-radius: var(--radius-pill, 999px);
  font-family: var(--font-sans); font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.6); white-space: nowrap;
  transition: color 160ms var(--ease-out, cubic-bezier(0.2,0,0,1)),
              background 160ms var(--ease-out, cubic-bezier(0.2,0,0,1));
}
.st-tab:hover { color: #fff; }
.st-tab.is-active { background: #fff; color: var(--ink-900, #0d0f0f); }

/* Grid ---------------------------------------------------------------- */
.st-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

/* Copy ---------------------------------------------------------------- */
.st-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fbf-green, #28dc9a); font-weight: 500;
}
.st-title {
  margin: 16px 0 0; font-size: 42px; font-weight: 900; line-height: 1.07;
  letter-spacing: -0.025em; color: #fff; text-wrap: balance;
}
.st-lead {
  margin: 20px 0 0; font-size: 18px; line-height: 1.6; font-weight: 600;
  color: #fff; text-wrap: pretty;
}
.st-body {
  margin: 14px 0 0; font-size: 16px; line-height: 1.65; font-weight: 500;
  color: rgba(255,255,255,0.72); text-wrap: pretty;
}
.st-points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.st-points li {
  display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start;
  font-size: 15.5px; line-height: 1.45; font-weight: 600; color: #fff;
}
.st-points li svg { margin-top: 2px; }
.st-ctas { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Media --------------------------------------------------------------- */
.st-media { position: relative; }
.st-img {
  width: 100%; height: 100%; max-height: 520px; object-fit: cover;
  border-radius: var(--radius-lg, 14px); display: block;
  box-shadow: var(--shadow-xl, 0 28px 60px rgba(0,0,0,0.5));
}
.st-media-stat {
  position: absolute; left: 24px; bottom: 24px;
  display: flex; flex-direction: column; gap: 2px;
  background: #fff; color: var(--ink-900, #0d0f0f);
  padding: 16px 22px; border-radius: var(--radius-md, 12px);
  box-shadow: var(--shadow-lg, 0 20px 48px rgba(0,0,0,0.4));
}
.st-media-stat b { font-size: 30px; font-weight: 900; letter-spacing: -0.02em; line-height: 1; }
.st-media-stat span { font-size: 13px; font-weight: 600; color: var(--ink-800, #23282a); }
