/* ============================================================
   BECOME A CLIENT — page styles
   Token-driven (light/dark aware via _tokens.css). Mobile-first.
   ============================================================ */

.bc-page {
  color: var(--c-ink);
  background: var(--c-bg);
  /* No overflow:hidden here — it would kill `position: sticky` for descendants.
     Section-level wrappers (.bc-hero, .bc-form, etc.) clip their own glows. */
  overflow-x: clip;
}

/* Common eyebrow pattern (mirrors testi/contact eyebrow style on the homepage). */
.bc-page [data-bc-eyebrow] {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgb(var(--rgb-ink) / 0.14);
  border-radius: 999px;
  background: rgb(var(--rgb-bg-elev) / 0.6);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}
.bc-page [data-bc-eyebrow] .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  box-shadow: 0 0 0 4px rgb(var(--rgb-primary) / 0.18);
}

/* Reveal-mask helpers (same model as About/Home) */
.bc-page .reveal-mask {
  display: block;
  overflow: hidden;
}
.bc-page .reveal-line {
  display: block;
}
.bc-page .word {
  display: inline-block;
  will-change: transform, opacity;
}
.bc-page .word.accent {
  color: var(--c-primary);
  font-style: italic;
}
[data-theme="dark"] .bc-page .word.accent {
  color: var(--c-accent);
}

/* ============================================================
   1. HERO
   ============================================================ */
.bc-hero {
  position: relative;
  padding: clamp(7rem, 14vh, 11rem) 1.25rem clamp(4rem, 8vh, 7rem);
  overflow: hidden;
  background:
    radial-gradient(
      120% 80% at 50% 0%,
      rgb(var(--rgb-primary) / 0.1),
      transparent 60%
    ),
    var(--c-bg);
}
.bc-hero__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.bc-hero__title {
  margin: 1.4rem 0 1.6rem;
  font-size: clamp(2.6rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.bc-hero__title .reveal-mask + .reveal-mask {
  margin-top: 0.05em;
}
.bc-hero__lede {
  max-width: 56ch;
  margin: 0 auto;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: var(--c-muted);
}
.bc-hero__actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}
.bc-hero__cta,
.bc-hero__ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
  will-change: transform;
}
.bc-hero__cta {
  background: var(--c-bg-feature);
  color: var(--c-on-feature);
  border: 1px solid var(--c-bg-feature);
}
.bc-hero__cta:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: translateY(-2px);
}
.bc-hero__cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgb(235 148 207 / 0.25);
}
.bc-hero__cta svg {
  width: 18px;
  height: 18px;
}
.bc-hero__ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid rgb(var(--rgb-ink) / 0.18);
}
.bc-hero__ghost:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  transform: translateY(-2px);
}
.bc-hero__ghost svg {
  width: 12px;
  height: 12px;
}

.bc-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}
.bc-hero__orb--a {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--c-accent), transparent 60%);
  top: -120px;
  left: -120px;
}
.bc-hero__orb--b {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--c-cyan), transparent 65%);
  bottom: -180px;
  right: -160px;
  opacity: 0.4;
}
.bc-hero__grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgb(var(--rgb-ink) / 0.05) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.bc-hero__marquee {
  margin-top: clamp(3rem, 6vh, 5rem);
  overflow: hidden;
  border-top: 1px solid rgb(var(--rgb-ink) / 0.08);
  border-bottom: 1px solid rgb(var(--rgb-ink) / 0.08);
  padding: 1rem 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.bc-hero__marquee-track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  will-change: transform;
}
.bc-hero__marquee-word {
  font-family: inherit;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.bc-hero__marquee-dot {
  color: var(--c-primary);
  font-size: 1.4rem;
  align-self: center;
}

/* ============================================================
   2. INTRO — Speak Louder, Look Higher
   ============================================================ */
.bc-intro {
  position: relative;
  padding: clamp(4rem, 10vh, 7rem) 1.25rem;
}
.bc-intro__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 900px) {
  .bc-intro__inner {
    grid-template-columns: 1fr 1.1fr;
  }
}
.bc-intro__title {
  margin: 1rem 0 1.4rem;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.bc-intro__body {
  color: var(--c-muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.75;
  max-width: 52ch;
}

.bc-intro__pillars {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .bc-intro__pillars {
    gap: 1.2rem;
  }
}

.bc-pillar {
  position: relative;
  padding: 1.6rem 1.6rem 1.8rem;
  border-radius: 18px;
  background: var(--c-bg-elev);
  border: 1px solid var(--c-border);
  box-shadow:
    0 1px 0 rgb(var(--rgb-ink) / 0.02),
    0 12px 24px -18px rgb(var(--rgb-ink) / 0.18);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease;
  overflow: hidden;
}
.bc-pillar:hover {
  transform: translateY(-4px);
  border-color: rgb(var(--rgb-primary) / 0.35);
  box-shadow:
    0 1px 0 rgb(var(--rgb-ink) / 0.02),
    0 24px 36px -22px rgb(var(--rgb-primary) / 0.45);
}
.bc-pillar__num {
  display: inline-block;
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--c-primary);
  margin-bottom: 0.7rem;
}
.bc-pillar__title {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--c-ink);
}
.bc-pillar__body {
  color: var(--c-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}
.bc-pillar__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.7, 0, 0.2, 1);
}
.bc-pillar:hover .bc-pillar__bar {
  transform: scaleX(1);
}

/* ============================================================
   3. CLIENT SUCCESS STORIES — Video Slider
   ============================================================ */
.bc-stories {
  position: relative;
  padding: clamp(4rem, 10vh, 7rem) 1.25rem;
  background: var(--c-bg-feature);
  color: var(--c-on-feature);
  overflow: hidden;
}
.bc-stories::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 50% 0%,
    rgb(var(--rgb-primary) / 0.25),
    transparent 60%
  );
  pointer-events: none;
}
.bc-stories__glow {
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(109 198 204 / 0.45), transparent 60%);
  filter: blur(100px);
  pointer-events: none;
}
.bc-stories__head {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.bc-stories [data-bc-eyebrow] {
  background: rgb(255 255 255 / 0.06);
  border-color: rgb(255 255 255 / 0.16);
  color: rgb(var(--rgb-feature-ink) / 0.85);
}
.bc-stories__title {
  margin: 1rem 0 1.2rem;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-on-feature);
}
.bc-stories__title .word.accent {
  color: var(--c-accent);
  font-style: italic;
}
.bc-stories__lede {
  color: rgb(var(--rgb-feature-ink) / 0.72);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

/* Slider viewport */
.bc-stories__viewport {
  position: relative;
  max-width: var(--container-width);
  margin: 0 auto;
  z-index: 2;
}

/* Mobile-first: native horizontal scroll-snap (graceful + smooth on touch). */
.bc-stories__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}
.bc-stories__track::-webkit-scrollbar {
  display: none;
}

.bc-vcard {
  flex: 0 0 min(86vw, 380px);
  scroll-snap-align: center;
  border-radius: 22px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.04);
  border: 1px solid rgb(255 255 255 / 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 480ms cubic-bezier(0.7, 0, 0.2, 1),
    box-shadow 480ms ease,
    border-color 480ms ease;
  will-change: transform;
}
.bc-vcard.is-active {
  transform: scale(1.02);
  border-color: rgb(var(--rgb-accent) / 0.45);
  box-shadow: 0 30px 60px -30px rgb(var(--rgb-primary) / 0.6);
}
.bc-vcard__media {
  position: relative;
  aspect-ratio: 16 / 11;
  background: #1a0e26;
  overflow: hidden;
}
.bc-vcard__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.2, 0, 0.2, 1);
}
.bc-vcard:hover .bc-vcard__poster {
  transform: scale(1.08);
}
.bc-vcard__poster--empty {
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
}
.bc-vcard__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgb(15 10 20 / 0.6) 100%
  );
  pointer-events: none;
}
.bc-vcard__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgb(15 10 20 / 0.6);
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.bc-vcard__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-coral);
  box-shadow: 0 0 6px var(--c-coral);
  animation: bc-blink 1.4s infinite ease-in-out;
}
@keyframes bc-blink {
  50% {
    opacity: 0.35;
  }
}

.bc-vcard__body {
  padding: 1.4rem 1.4rem 1.6rem;
}
.bc-vcard__quote {
  font-size: 1rem;
  line-height: 1.55;
  color: rgb(var(--rgb-feature-ink) / 0.92);
  margin-bottom: 1rem;
  font-style: italic;
}
.bc-vcard__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.bc-vcard__name {
  font-weight: 700;
  color: var(--c-on-feature);
}
.bc-vcard__role {
  color: rgb(var(--rgb-feature-ink) / 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* Attractive PLAY button (the centerpiece) */
.bc-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 18vw, 96px);
  height: clamp(64px, 18vw, 96px);
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 3;
}
.bc-play__pulse,
.bc-play__ring,
.bc-play__core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.bc-play__pulse {
  background: radial-gradient(
    circle,
    rgb(var(--rgb-accent) / 0.55),
    transparent 60%
  );
  animation: bc-pulse 2.4s infinite ease-out;
}
.bc-play__ring {
  border: 2px solid rgb(255 255 255 / 0.7);
  transition:
    transform 320ms ease,
    border-color 320ms ease;
}
.bc-play__core {
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  display: grid;
  place-items: center;
  box-shadow:
    0 12px 30px rgb(var(--rgb-primary) / 0.6),
    inset 0 0 0 1px rgb(255 255 255 / 0.15);
  transition: transform 320ms ease;
  width: 60%;
  height: 60%;
  left: 20%;
  top: 20%;
}
.bc-play__core svg {
  width: 38%;
  height: 38%;
  transform: translateX(2px);
}
.bc-play:hover .bc-play__core {
  transform: scale(1.08);
}
.bc-play:hover .bc-play__ring {
  transform: scale(1.06);
  border-color: var(--c-accent);
}
@keyframes bc-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bc-play__pulse,
  .bc-vcard__chip-dot {
    animation: none;
  }
}

/* Slider controls */
.bc-stories__controls {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  color: rgb(var(--rgb-feature-ink) / 0.85);
}
.bc-stories__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.18);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background-color 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}
.bc-stories__nav:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: scale(1.05);
}
.bc-stories__nav svg {
  width: 22px;
  height: 22px;
}
.bc-stories__counter {
  font-family: monospace;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}
.bc-stories__counter-sep {
  margin: 0 0.4rem;
  color: rgb(var(--rgb-feature-ink) / 0.4);
}
.bc-stories__empty {
  text-align: center;
  color: rgb(var(--rgb-feature-ink) / 0.6);
}

/* ============================================================
   4. FORM
   ============================================================ */
.bc-form {
  position: relative;
  padding: clamp(4rem, 10vh, 7rem) 1.25rem;
  overflow: clip;
}
.bc-form__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3.4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .bc-form__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.4rem, 4vw, 3.6rem);
  }
}
@media (min-width: 1200px) {
  .bc-form__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.bc-form__copy {
  position: sticky;
  top: clamp(5rem, 12vh, 7.5rem); /* Clears the fixed header */
  align-self: start;
  /* Defensive: if section-level overflow ever changes, sticky stays valid here */
  z-index: 1;
}
@media (max-width: 899px) {
  .bc-form__copy {
    position: static;
    top: auto;
  }
}
.bc-form__title {
  margin: 1rem 0 1rem;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.bc-form__lede {
  color: var(--c-muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
  max-width: 52ch;
}
.bc-form__badges {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  max-width: 460px;
  list-style: none;
  padding: 0;
}
.bc-form__badge {
  padding: 0.85rem 0.7rem;
  border-radius: 14px;
  background: var(--c-bg-elev);
  border: 1px solid var(--c-border);
  text-align: center;
}
.bc-form__badge-v {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bc-form__badge-t {
  display: block;
  font-size: 0.72rem;
  color: var(--c-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bc-form__shell {
  position: relative;
  border-radius: 24px;
  background: var(--c-bg-elev);
  border: 1px solid var(--c-border);
  box-shadow: 0 30px 60px -30px rgb(var(--rgb-ink) / 0.25);
  overflow: hidden;
}
.bc-form__shell-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-bg-feature);
  color: var(--c-on-feature);
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.bc-form__shell-tab span {
  color: var(--c-coral);
}
.bc-form__shell-body {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.bc-form__micro {
  padding: 0.8rem clamp(1.4rem, 3vw, 2.2rem) 1.4rem;
  color: var(--c-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  border-top: 1px dashed var(--c-border);
}

/* ----------------------------------------------------------
   CF7 + fallback form — tighter, calmer, more visual hierarchy.
   ---------------------------------------------------------- */

/* Tighter inputs (was 0.85/1) */
.bc-form__shell-body input[type="text"],
.bc-form__shell-body input[type="email"],
.bc-form__shell-body input[type="tel"],
.bc-form__shell-body input[type="url"],
.bc-form__shell-body input[type="number"],
.bc-form__shell-body textarea,
.bc-form__shell-body select,
.bc-fallback-form input,
.bc-fallback-form textarea {
  width: 100%;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: var(--c-ink);
  font: inherit;
  font-size: 0.92rem;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}
.bc-form__shell-body textarea {
  min-height: 110px;
}
.bc-form__shell-body input:focus,
.bc-form__shell-body textarea:focus,
.bc-form__shell-body select:focus,
.bc-fallback-form input:focus,
.bc-fallback-form textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgb(var(--rgb-primary) / 0.15);
}

/* Soften CF7's loud uppercase labels inside our shell */
.bc-form__shell-body .wpcf7-form label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--c-ink-soft);
  gap: 0.35rem;
}

/* CF7 paragraph wrappers — keep tight rhythm */
.bc-form__shell-body .wpcf7-form {
  gap: 0.95rem;
}
.bc-form__shell-body .wpcf7-form p {
  gap: 0.35rem;
}

/* CF7 wraps each input in <span class="wpcf7-form-control-wrap"> — make it full width */
.bc-form__shell-body .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Two-up rows for paired fields. Supports both .cf__row (theme convention)
   and .form-row.cols-2 (used by the existing CF7 form). */
.bc-form__shell-body .wpcf7-form .cf__row,
.bc-form__shell-body .wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  margin: 0;
}
@media (min-width: 540px) {
  .bc-form__shell-body .wpcf7-form .cf__row.cols-2,
  .bc-form__shell-body .wpcf7-form .form-row.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
  .bc-form__shell-body .wpcf7-form .cf__row.cols-3,
  .bc-form__shell-body .wpcf7-form .form-row.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bc-form__shell-body .wpcf7-form .form-row > label {
  margin: 0;
}

/* Group prompt text — the <p>In what areas…</p> lines above checkbox groups. */
.bc-form__shell-body
  .wpcf7-form
  > p:not(:has(.wpcf7-form-control)):not(:has(input[type="submit"])):not(
    :has(button)
  ) {
  margin: 0.5rem 0 -0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-ink-soft);
  text-transform: none;
}

/* Section headings inside CF7 form (use <h4 class="cf__h"> in your CF7 markup) */
.bc-form__shell-body .cf__h {
  margin: 0.6rem 0 -0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-primary);
}

/* Checkbox / radio groups — pill chips that wrap. */
.bc-form__shell-body .wpcf7-checkbox,
.bc-form__shell-body .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Tagged with class:custom-grid in the CF7 shortcode → render as a 2/3-col grid
   so 8–9 options sit in a tidy block instead of a ragged wrap. */
.bc-form__shell-body .wpcf7-checkbox.custom-grid,
.bc-form__shell-body .wpcf7-radio.custom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 480px) {
  .bc-form__shell-body .wpcf7-checkbox.custom-grid,
  .bc-form__shell-body .wpcf7-radio.custom-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 760px) {
  .bc-form__shell-body .wpcf7-checkbox.custom-grid,
  .bc-form__shell-body .wpcf7-radio.custom-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.bc-form__shell-body .wpcf7-list-item {
  margin: 0;
  display: flex; /* So the inner label can stretch the full cell height */
}
.bc-form__shell-body .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  min-height: 40px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-transform: none;
  color: var(--c-ink-soft);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}
.bc-form__shell-body .wpcf7-checkbox.custom-grid .wpcf7-list-item,
.bc-form__shell-body .wpcf7-radio.custom-grid .wpcf7-list-item {
  width: 100%;
}
.bc-form__shell-body .wpcf7-checkbox.custom-grid .wpcf7-list-item label,
.bc-form__shell-body .wpcf7-radio.custom-grid .wpcf7-list-item label {
  width: 100%;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
}
.bc-form__shell-body .wpcf7-list-item label:hover {
  border-color: rgb(var(--rgb-primary) / 0.4);
  color: var(--c-primary);
  transform: translateY(-1px);
}
.bc-form__shell-body .wpcf7-list-item input[type="checkbox"],
.bc-form__shell-body .wpcf7-list-item input[type="radio"] {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}
/* Highlight the chip when its checkbox/radio is checked (uses :has — wide modern support). */
.bc-form__shell-body .wpcf7-list-item label:has(input:checked) {
  background: rgb(var(--rgb-primary) / 0.1);
  border-color: var(--c-primary);
  color: var(--c-primary);
}

/* Fallback (non-CF7) form */
.bc-fallback-form {
  display: grid;
  gap: 0.95rem;
}
.bc-fallback-form__row {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) {
  .bc-fallback-form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.bc-fallback-form label,
.bc-fallback-form__full {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-ink-soft);
}
.bc-fallback-form label span,
.bc-fallback-form__full span {
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Submit — purple brand pill, right-aligned, never full width */
.bc-form__submit,
.bc-form__shell-body input[type="submit"],
.bc-form__shell-body button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0.6rem 0 0 auto;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  width: auto;
  align-self: flex-end;
  box-shadow: 0 14px 30px -14px rgb(var(--rgb-primary) / 0.55);
  transition:
    background-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}
.bc-form__submit:hover,
.bc-form__shell-body input[type="submit"]:hover,
.bc-form__shell-body button[type="submit"]:hover {
  background: var(--c-secondary, var(--c-primary));
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -16px rgb(var(--rgb-primary) / 0.7);
}
.bc-form__submit svg {
  width: 16px;
  height: 16px;
}

/* CF7 sometimes wraps the submit in a <p> — float it right too */
.bc-form__shell-body .wpcf7-form p:has(> input[type="submit"]),
.bc-form__shell-body .wpcf7-form p:has(> button[type="submit"]) {
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 0.4rem;
}

/* On narrow screens, let the submit go full-width so long labels don't wrap awkwardly */
@media (max-width: 539px) {
  .bc-form__submit,
  .bc-form__shell-body input[type="submit"],
  .bc-form__shell-body button[type="submit"] {
    width: 100%;
    margin-left: 0;
  }
}

.bc-form__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.3;
}
.bc-form__glow--a {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--c-accent), transparent 60%);
  top: -200px;
  left: -200px;
}
.bc-form__glow--b {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--c-cyan), transparent 60%);
  bottom: -150px;
  right: -150px;
}
.bc-form__grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgb(var(--rgb-ink) / 0.05) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
  pointer-events: none;
  opacity: 0.4;
}

/* ============================================================
   5. CLIENT LOGOS — marquee
   ============================================================ */
.bc-logos {
  padding: clamp(4rem, 10vh, 7rem) 0;
  overflow: hidden;
}
.bc-logos__head {
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 0 1.25rem;
}
.bc-logos__title {
  margin: 1rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.bc-logos__lede {
  color: var(--c-muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 56ch;
}
.bc-logos__wall {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.bc-logos__row {
  overflow: hidden;
}
.bc-logos__track {
  display: inline-flex;
  gap: 2.4rem;
  will-change: transform;
}
.bc-logos__logo {
  flex: 0 0 auto;
  width: clamp(140px, 16vw, 200px);
  height: clamp(72px, 9vw, 96px);
  border-radius: 14px;
  /* A white-ish tile keeps dark logos legible in BOTH light & dark themes
	   (the same trick papatango / blissagency use for trust walls). */
  background: #fff;
  border: 1px solid var(--c-border);
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}
[data-theme="dark"] .bc-logos__logo {
  background: #f4f0f7; /* slight warm off-white in dark mode */
  border-color: rgb(255 255 255 / 0.08);
}
.bc-logos__logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(10px, 1.4vw, 16px);
  box-sizing: border-box;
  filter: brightness(0) invert(0) opacity(0.7);
  opacity: 1;
  transition:
    filter 320ms ease,
    transform 320ms ease;
}
.bc-logos__logo:hover {
  transform: translateY(-3px);
  border-color: rgb(var(--rgb-primary) / 0.35);
  box-shadow: 0 16px 30px -18px rgb(var(--rgb-primary) / 0.45);
}
.bc-logos__logo:hover img {
  filter: brightness(0) invert(0) opacity(1);
  transform: scale(1.03);
}
.bc-logos__empty {
  text-align: center;
  color: var(--c-muted);
  padding: 2rem 1.25rem;
}

/* ============================================================
   6. CTA CARDS + SUCCESS PARTNERS STRAP
   ============================================================ */
.bc-cta {
  padding: clamp(4rem, 10vh, 7rem) 1.25rem;
}
.bc-cta__cards {
  max-width: var(--container-width);
  margin: 0 auto 4rem;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .bc-cta__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.bc-cta__card {
  position: relative;
  display: block;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 24px;
  background: var(--c-bg-elev);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
  color: var(--c-ink);
  min-height: 200px;
}
.bc-cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgb(var(--rgb-primary) / 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 320ms ease;
}
.bc-cta__card:hover {
  transform: translateY(-4px);
  border-color: rgb(var(--rgb-primary) / 0.35);
  box-shadow: 0 30px 60px -30px rgb(var(--rgb-primary) / 0.4);
}
.bc-cta__card:hover::before {
  opacity: 1;
}
.bc-cta__card-arrow {
  position: absolute;
  top: clamp(1.4rem, 3vw, 2rem);
  right: clamp(1.4rem, 3vw, 2rem);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-bg-feature);
  color: var(--c-on-feature);
  display: grid;
  place-items: center;
  transition:
    transform 320ms ease,
    background-color 320ms ease;
}
.bc-cta__card-arrow svg {
  width: 18px;
  height: 18px;
}
.bc-cta__card:hover .bc-cta__card-arrow {
  background: var(--c-primary);
  transform: rotate(-12deg) scale(1.05);
}
.bc-cta__card-title {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.8rem;
  max-width: 80%;
  color: var(--c-ink);
}
.bc-cta__card-desc {
  color: var(--c-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 50ch;
}

.bc-strap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.bc-strap__title {
  margin: 1rem 0 1.2rem;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.bc-strap__lede {
  color: var(--c-muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
  max-width: 64ch;
  margin: 0 auto;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.bc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgb(0 0 0 / 0.85);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.bc-lightbox.is-open {
  display: flex;
  animation: bc-fade-in 200ms ease;
}
@keyframes bc-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bc-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.18);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 200ms ease,
    transform 200ms ease;
}
.bc-lightbox__close:hover {
  background: var(--c-primary);
  transform: scale(1.05);
}
.bc-lightbox__close svg {
  width: 22px;
  height: 22px;
}
.bc-lightbox__shell {
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: bc-zoom-in 320ms cubic-bezier(0.7, 0, 0.2, 1);
}
@keyframes bc-zoom-in {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.bc-lightbox__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgb(0 0 0 / 0.6);
}
.bc-lightbox__player iframe,
.bc-lightbox__player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.bc-lightbox__caption {
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 0.4rem;
}
.bc-lightbox__caption strong {
  font-size: 1.05rem;
}
.bc-lightbox__caption span {
  color: rgb(255 255 255 / 0.65);
  font-size: 0.85rem;
}

/* Reduced motion — kill heavy animations across the page */
@media (prefers-reduced-motion: reduce) {
  .bc-page * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
