@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.bc, .bc *, .bc *::before, .bc *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
.bc {
  --ink: #0B0F17;
  --panel: #131A24;
  --panel-soft: #18212D;
  --blue: #5C8DFF;
  --blue-light: #A8C5FF;
  --blue-soft: rgba(92,141,255,.14);
  --blue-deep: #3F6FE8;
  --ice: #F4F7FF;
  --text: #F5F7FB;
  --muted: #B8C2D9;
  --subtle: #94A3BD;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);
  --white: #FBFCFF;
  --offwhite: #F6F8FC;
  --dark-text: #111827;
  --dark-muted: #536177;
  --shadow-md: 0 16px 44px -24px rgba(0,0,0,.62);
  --shadow-lg: 0 34px 90px -34px rgba(0,0,0,.72);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.bc img { max-width: 100%; height: auto; display: block; }
.bc a { color: inherit; text-decoration: none; }
.bc button { font: inherit; cursor: pointer; }
.bc .wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .bc .wrap { padding: 0 22px; } }

/* SCROLL REVEAL — premium feel */
.bc .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.bc .reveal.is-visible { opacity: 1; transform: none; }
.bc .reveal[data-delay="1"] { transition-delay: .08s; }
.bc .reveal[data-delay="2"] { transition-delay: .16s; }
.bc .reveal[data-delay="3"] { transition-delay: .24s; }
.bc .reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .bc .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== HEADER ===== */
.bc-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,15,18,.78);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .25s, border-color .25s;
}
.bc-nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.bc-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.bc-logo img { height: 30px; width: auto; }
.bc-menu { display: flex; gap: 18px; align-items: center; }
.bc-menu ul { display: flex; gap: 18px; align-items: center; padding: 0; margin: 0; list-style: none; }
.bc-menu li { margin: 0; }
.bc-menu a {
  font-size: 13px; font-weight: 600; color: rgba(247,249,255,.85);
  transition: color .18s;
  position: relative; padding: 6px 0;
}
.bc-menu a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: -2px; height: 1px;
  background: var(--blue-light); transition: left .25s, right .25s;
}
.bc-menu a:hover { color: var(--white); }
.bc-menu a:hover::after { left: 0; right: 0; }
.bc-burger {
  display: none; background: transparent; border: 0;
  width: 44px; height: 44px;
  position: relative;
  color: var(--text);
}
.bc-burger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), top .3s, opacity .2s;
}
.bc-burger span:nth-child(1) { top: 16px; }
.bc-burger span:nth-child(2) { top: 21px; }
.bc-burger span:nth-child(3) { top: 26px; }
.bc-burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.bc-burger.is-open span:nth-child(2) { opacity: 0; }
.bc-burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  /* Disable header backdrop-filter on mobile so the fixed drawer escapes
     the header's containing block and can reach full viewport height. */
  .bc-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .bc-menu { display: none; }
  .bc-burger { display: block; position: relative; z-index: 80; flex: 0 0 44px; }
  .bc-menu.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 68px; right: 0; bottom: 0;
    width: min(86vw, 320px);
    background: #0B0F17;
    padding: 0 22px 32px;
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px rgba(0,0,0,.55);
    animation: bcSlideRight .32s cubic-bezier(.2,.7,.2,1);
    z-index: 70;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .bc-menu.is-open::-webkit-scrollbar { display: none; }
  .bc-menu.is-open ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .bc-menu.is-open li { margin: 0; width: 100%; }
  .bc-menu.is-open a {
    display: block;
    padding: 16px 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }
  .bc-menu.is-open a::after { display: none; }
  .bc-menu.is-open .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
  }
  .bc-menu.is-open .dropdown-toggle .arrow { color: var(--blue-light); font-weight: 700; }
  .bc-menu .menu-cta-item { display: block; }
  .bc-menu.is-open .dropdown-item { position: static; }
  .bc-menu.is-open .submenu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: rgba(255,255,255,.025);
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    min-width: 0;
    width: 100%;
  }
  .bc-menu.is-open .submenu.is-expanded { display: block; }
  .bc-menu.is-open .submenu a {
    padding: 12px 6px 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .bc-menu.is-open .submenu li:last-child a { border-bottom: 0; }

  .bc-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4,6,12,.55);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .bc-backdrop.is-open { opacity: 1; pointer-events: auto; }
}
@keyframes bcSlideRight {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: none; }
}

/* ===== HERO ===== */
.bc-hero {
  position: relative;
  padding: clamp(100px, 12vw, 150px) 0 clamp(70px, 10vw, 120px);
  background: var(--ink);
  overflow: hidden;
}

.bc-hero .wrap {
  position: relative;
  z-index: 2;
}

.bc-hero-copy {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.bc-hero-video-frame {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 34px 90px -34px rgba(0,0,0,.72);
}

.bc-hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}
.bc-hero-stage {
  display: contents;
}
@media (min-width: 641px) {
  .bc-hero--home-film {
    min-height: min(90svh, 820px);
    padding: clamp(96px, 12vh, 132px) 0 clamp(56px, 9vh, 84px);
    display: flex;
    align-items: center;
  }
  .bc-hero--home-film::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(8,11,18,.6) 0%, rgba(8,11,18,.72) 56%, rgba(8,11,18,.92) 100%),
      radial-gradient(circle at 50% 42%, rgba(92,141,255,.2), transparent 54%);
    pointer-events: none;
  }
  .bc-hero--home-film .wrap {
    position: static;
    display: flex;
    min-height: calc(min(90svh, 820px) - clamp(152px, 21vh, 216px));
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .bc-hero--home-film .bc-hero-copy {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    text-align: center;
  }
  .bc-hero--home-film .bc-hero-actions {
    position: relative;
    z-index: 2;
    justify-content: center;
    margin: 0 auto;
  }
  .bc-hero--home-film .bc-hero-actions .bc-button {
    max-width: none;
    white-space: nowrap;
  }
  .bc-hero--home-film .bc-lede {
    color: rgba(247,249,255,.92);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    text-align: center;
    text-shadow: 0 2px 18px rgba(0,0,0,.72), 0 1px 3px rgba(0,0,0,.5);
  }
  .bc-hero--home-film .bc-button.secondary {
    color: var(--white);
    background: rgba(8,11,18,.48);
    border-color: rgba(255,255,255,.38);
    box-shadow: 0 16px 34px -24px rgba(0,0,0,.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  .bc-hero--home-film .bc-button.secondary:hover {
    background: rgba(8,11,18,.62);
    border-color: rgba(255,255,255,.58);
  }
  .bc-hero--home-film .bc-hero-video-frame {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
  }
}
.bc-page-hero {
  min-height: min(70vh, 640px);
  display: flex;
  align-items: center;
}
.bc-page-hero-img,
.bc-page-hero-video,
.bc-page-hero .bc-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bc-page-hero-img,
.bc-page-hero-video {
  z-index: 0;
  object-fit: cover;
}

.bc-page-hero-video {
  display: block;
}
.bc-page-hero .bc-hero-overlay {
  z-index: 1;
}
.bc-page-hero .wrap {
  z-index: 2;
}
@media (min-width: 641px) {
  .bc-page-hero .bc-lede {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .bc-hero {
    padding: 88px 0 56px;
    min-height: auto;
  }

  .bc-hero-copy {
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .bc-hero-video-frame {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  .bc-hero-video {
    object-fit: cover;
    object-position: 50% 50%;
  }
}

.bc-hero-marquee {
  overflow: hidden;
  margin-top: 18px;
  padding: 8px 0;
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
}
.bc-hero-marquee-track {
  display: inline-flex;
  gap: 12px;
  white-space: nowrap;
  min-width: max-content;
  animation: bcMarquee 50s linear infinite;
  will-change: transform;
}
.bc-hero-marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(252, 243, 243, 0);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(242, 242, 242, 0.96);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.bc-hero-marquee-track:hover {
  animation-play-state: paused;
}
.bc-hero-marquee--reviews {
  margin-top: 3rem;
}
.bc-hero-marquee--reviews .bc-hero-marquee-track {
  gap: 18px;
  align-items: stretch;
}
.bc-review-marquee-item {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  min-width: 320px;
  max-width: 320px;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(242,242,242,.9);
  font-size: .88rem;
  line-height: 1.55;
  white-space: normal;
  vertical-align: top;
}
.bc-review-marquee-item strong {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  letter-spacing: .02em;
}
.bc-review-marquee-stars { color: #f5c518; font-size: .9rem; letter-spacing: 2px; }
@keyframes bcMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.bc-service-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.bc-card {
  background: #F8FAFF;
  color: var(--dark-text);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 40px -28px rgba(15,23,42,.18);
}
.bc-card h3 {
  font-size: 1.15rem;
  margin: 0 0 14px;
}
.bc-card p { margin: 0; color: var(--dark-muted); line-height: 1.75; }
.bc-video-reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 880px) { .bc-video-reel-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .bc-video-reel-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 24px;
  }
  .bc-video-reel-grid::-webkit-scrollbar { display: none; }
}
.bc-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #0a0d14;
  cursor: pointer;
}
.bc-video-wrap--featured { grid-column: span 2; }
@media (max-width: 880px) { .bc-video-wrap--featured { grid-column: span 2; } }
@media (max-width: 640px) {
  .bc-video-wrap {
    flex: 0 0 75%;
    padding-bottom: 0;
    height: 165px;
    scroll-snap-align: start;
  }
  .bc-video-wrap--featured { flex: 0 0 80%; }
}
.bc-video-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.bc-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.bc-video-wrap:hover img {
  transform: scale(1.05);
  filter: brightness(.6);
}
.bc-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.bc-play-btn svg {
  width: 52px; height: 52px;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
  padding: 12px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 0 0 0 rgba(92,141,255,0);
}
@media (max-width: 640px) {
  .bc-play-btn svg {
    width: 40px; height: 40px;
    padding: 8px;
  }
}
.bc-video-wrap:hover .bc-play-btn svg {
  transform: scale(1.18);
  background: var(--blue);
  box-shadow: 0 0 28px 6px rgba(92,141,255,.45);
}
.bc-youtube-link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8,10,18,.82);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.bc-youtube-link:hover {
  background: var(--blue);
  color: var(--white);
}
/* Video reel dots */
.bc-video-dots {
  display: none;
}
@media (max-width: 640px) {
  .bc-video-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
  }
  .bc-video-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .bc-video-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
  }
}
.bc-photo-grid { margin-top: 16px; opacity: .72; transition: opacity .3s; }
.bc-photo-grid:hover { opacity: 1; }
.bc-photo-panel {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.bc-photo-panel.active { display: grid; }
.bc-photo-panel img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.bc-bts-label {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
}
.bc-testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 34px;
  max-width: 880px;
  margin-top: 30px;
}
.bc-testimonial-card p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.85;
}
.bc-testimonial-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
  color: var(--muted);
}
.bc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  min-width: 0;
}
.bc-blog-card {
  background: var(--white);
  color: var(--dark-text);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.06);
  min-width: 0;
}
.bc-blog-card h3 {
  margin: 0 0 12px;
  font-size: 1.02rem;
  overflow-wrap: break-word;
}
.bc-blog-card p {
  margin: 0;
  font-size: .95rem;
  color: var(--dark-muted);
  line-height: 1.55;
  overflow-wrap: break-word;
}
@media (max-width: 880px) {
  .bc-service-grid { grid-template-columns: 1fr; }
  .bc-blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .bc-blog-grid { grid-template-columns: 1fr; }
}

.bc-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--blue-soft);
  border: 1px solid rgba(57,120,255,.40);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: #CFDDFF;
  margin-bottom: 26px;
  letter-spacing: -.005em;
}
.bc-kicker::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
  animation: bcPulse 2.5s ease-in-out infinite;
}
@keyframes bcPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(57,120,255,.15); }
  50% { box-shadow: 0 0 0 7px rgba(57,120,255,.08); }
}
.bc-h1 {
  font-size: clamp(2.05rem, 4.8vw, 3.5rem);
  line-height: 1.04; letter-spacing: -0.028em;
  font-weight: 700;
  margin: 0 0 24px;
  max-width: 880px;
}
.bc-h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #8BB4FF 0%, #3978FF 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.bc-lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted); max-width: 640px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.bc-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.bc-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 20px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  min-height: 46px;
  transition: transform .18s cubic-bezier(.2,.7,.2,1), background .18s, border-color .18s, box-shadow .18s;
  letter-spacing: -.005em;
  max-width: 240px;
}
.bc-button.primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 8px 18px rgba(31, 36, 46, 0.35);
}
.bc-button.primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(57,120,255,.50); }
.bc-button.primary:active { transform: translateY(0); }
.bc-button.secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-strong);
}
.bc-button.secondary:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.03); }
.bc-button .arrow {
  display: inline-block; transition: transform .25s;
}
.bc-button:hover .arrow { transform: translateX(3px); }

.bc-microproof {
  margin-top: 36px;
  display: flex; gap: 14px 22px; flex-wrap: wrap; align-items: center;
  color: var(--muted); font-size: 13px;
}
.bc-microproof strong { color: var(--text); font-weight: 600; }
.bc-microdot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.30); }

@media (max-width: 640px) {
  .bc-hero { padding: 80px 0; min-height: 100svh; }
  .bc-h1 { font-size: 2.15rem; line-height: 1.08; letter-spacing: -0.025em; }
  .bc-lede { font-size: 1.05rem; }
  .bc-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .bc-button { padding: 16px 22px; font-size: 15.5px; }
  .bc-microproof { font-size: 12.5px; gap: 8px 14px; margin-top: 28px; justify-content: center; }
  .bc-microdot { display: none; }
}

/* ===== TRUST BAND ===== */
.bc-trust {
  padding: 26px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}
.bc-trust-row {
  display: flex; align-items: center; gap: 14px 30px; flex-wrap: wrap; justify-content: center;
  color: var(--muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
}
.bc-trust-row span { font-weight: 600; }
.bc-trust-row .label { color: var(--blue-light); }
.bc-trust-row .dot { opacity: .35; }
@media (max-width: 640px) {
  .bc-trust { padding: 22px 0; }
  .bc-trust-row { gap: 10px 16px; font-size: 11px; letter-spacing: .12em; }
}

/* ===== SECTIONS ===== */
.bc-section { padding: clamp(54px, 7vw, 96px) 0; }
.bc-client-band {
  padding-bottom: clamp(22px, 3vw, 38px);
  background: var(--ink);
  color: var(--text);
}
.bc-client-band .bc-h2 { color: var(--text); }
.bc-client-band .bc-eyebrow { color: var(--blue-light); }
.bc-client-band + #services { padding-top: clamp(30px, 4vw, 54px); }
.bc-client-logo-strip {
  margin-top: clamp(24px, 4vw, 32px);
  padding: clamp(16px, 2.4vw, 26px) 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.018);
}
.bc-client-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: bcClientLogoMarquee 66s linear infinite;
  will-change: transform;
}
.bc-client-logo-group {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 30px);
  padding: 0 clamp(10px, 1.3vw, 16px);
}
.bc-client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 60px;
  padding: 6px 4px;
  color: var(--muted);
  transition: opacity .2s ease, transform .2s ease;
}
.bc-client-logo img {
  display: block;
  max-width: 154px;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .78;
  transition: filter .2s ease, opacity .2s ease;
}
.bc-client-logo .bc-client-logo-bbc,
.bc-client-logo:hover .bc-client-logo-bbc,
.bc-client-logo:focus-visible .bc-client-logo-bbc {
  filter: none;
  opacity: 1;
}
.bc-client-logo .bc-client-logo-bbc {
  max-height: 38px;
}
.bc-client-logo .bc-client-logo-vice {
  max-width: none;
  max-height: none;
  height: 108px;
}
.bc-client-logo .bc-client-logo-vice,
.bc-client-logo:hover .bc-client-logo-vice,
.bc-client-logo:focus-visible .bc-client-logo-vice {
  filter: none;
}
.bc-client-logo .bc-client-logo-original,
.bc-client-logo:hover .bc-client-logo-original,
.bc-client-logo:focus-visible .bc-client-logo-original {
  filter: none;
  opacity: 1;
}
.bc-client-logo:hover .bc-client-logo-original,
.bc-client-logo:focus-visible .bc-client-logo-original {
  opacity: 1;
}
.bc-client-logo .bc-client-logo-eagle {
  max-width: 142px;
  max-height: 48px;
  filter: grayscale(1) saturate(0) brightness(.92) contrast(1.12);
  opacity: .72;
}
.bc-client-logo .bc-client-logo-brief {
  max-width: 146px;
  max-height: 48px;
  filter: grayscale(1) saturate(0) brightness(.92) contrast(1.12);
  opacity: .72;
}
.bc-client-logo .bc-client-logo-photo,
.bc-client-logo:hover .bc-client-logo-photo,
.bc-client-logo:focus-visible .bc-client-logo-photo {
  filter: grayscale(1);
}
.bc-client-logo-fallback {
  display: none;
  color: var(--text);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}
.bc-client-logo.is-missing img {
  display: none;
}
.bc-client-logo.is-missing .bc-client-logo-fallback {
  display: inline-flex;
}
.bc-client-logo:hover,
.bc-client-logo:focus-visible {
  color: var(--text);
  opacity: 1;
  transform: translateY(-3px) scale(1.03);
}
.bc-client-logo:hover img,
.bc-client-logo:focus-visible img {
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 1;
}
.bc-client-logo:hover .bc-client-logo-eagle,
.bc-client-logo:focus-visible .bc-client-logo-eagle,
.bc-client-logo:hover .bc-client-logo-brief,
.bc-client-logo:focus-visible .bc-client-logo-brief {
  filter: grayscale(1) saturate(0) brightness(1.08) contrast(1.08);
  opacity: .9;
}
.bc-client-logo:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}
.bc-client-logo-strip:hover .bc-client-logo-track,
.bc-client-logo-strip:focus-within .bc-client-logo-track {
  animation-play-state: paused;
}
@keyframes bcClientLogoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .bc-client-logo-strip { overflow-x: auto; }
  .bc-client-logo-track { animation: none; }
  .bc-client-logo-group[aria-hidden="true"] { display: none; }
}
.bc-section--light { background: #F6F8FF; color: var(--dark-text); }
.bc-section--light .bc-eyebrow { color: var(--blue-deep); }
.bc-section--light .bc-h2 { color: var(--dark-text); }
.bc-section--light .bc-body { color: var(--dark-muted); }

.bc-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 14px;
}
.bc-h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  line-height: 1.08; letter-spacing: -0.022em;
  font-weight: 700;
  margin: 0 0 18px;
  max-width: 780px;
}
.bc-body {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--muted);
  max-width: 680px;
  line-height: 1.55;
}
.bc-section--light .bc-body { color: var(--dark-muted); }

@media (max-width: 640px) {
  .bc-section { padding: 64px 0; }
  .bc-h2 { font-size: 1.7rem; letter-spacing: -0.02em; line-height: 1.12; }
  .bc-body { font-size: 1rem; }
  .bc-client-logo-strip {
    margin-top: 20px;
    padding: 17px 0;
    border-radius: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .bc-client-logo-strip::-webkit-scrollbar { display: none; }
  .bc-client-logo-track {
    width: max-content;
    min-width: max-content;
    animation: none;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
  }
  .bc-client-logo-group[aria-hidden="true"] { display: none; }
  .bc-client-logo-group {
    flex: 0 0 auto;
    gap: 18px;
    padding: 0 7px;
  }
  .bc-client-logo {
    flex: 0 0 auto;
    height: 58px;
    padding-left: 3px;
    padding-right: 3px;
  }
  .bc-client-logo img {
    max-width: 132px;
    max-height: 48px;
  }
}


/* ===== HOW WE CAN HELP CARDS ===== */
.bc-service-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.bc-service-feature {
  display: grid;
  grid-template-rows: 220px minmax(0, 1fr);
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 16px 44px -28px rgba(0,0,0,.72);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.bc-service-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(168,197,255,.26);
  background: rgba(255,255,255,.075);
}

.bc-service-feature-copy {
  display: flex;
  flex-direction: column;
  order: 0;
  min-height: 0;
  padding: 26px;
}

.bc-service-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--blue-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.bc-service-feature h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.42rem);
  line-height: 1.18;
  letter-spacing: 0;
  margin: 0 0 12px;
}

#services .bc-service-label {
  display: block;
  max-width: 100%;
  width: auto;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 14px;
}

#services .bc-service-feature h3 {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 28px;
}

.bc-service-feature p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.58;
  margin: 0 0 24px;
}

.bc-service-feature ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}

.bc-service-feature li {
  color: rgba(243,247,255,.88);
  font-size: .88rem;
  line-height: 1.42;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.bc-service-feature li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
  margin-top: 7px;
  flex-shrink: 0;
}

.bc-service-feature-visual {
  order: -1;
  min-height: 220px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.04);
}

.bc-service-feature-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Forces the video to fill the space without distortion */
  display: block;    /* Removes extra whitespace below the video */
}

.bc-service-feature-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.bc-service-feature:hover .bc-service-feature-visual img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.bc-service-feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11,15,23,0) 45%, rgba(11,15,23,.58));
}

.bc-split-cta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bc-service-feature .bc-button {
  width: max-content;
  max-width: none;
  margin-top: auto;
}

.bc-studio-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.bc-studio-title-row h3 {
  margin: 0;
}

.bc-button.bc-button-small {
  min-height: 38px;
  padding: 10px 14px;
  font-size: .8rem;
  white-space: nowrap;
}

@media (max-width: 880px) {
  .bc-service-stack { grid-template-columns: 1fr; }
  .bc-service-feature { grid-template-columns: 220px 1fr; grid-template-rows: 1fr; }
  .bc-service-feature-visual { min-height: 100%; }
}

@media (max-width: 640px) {
  .bc-service-stack {
    margin-top: 34px;
    gap: 14px;
    min-width: 0;
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    justify-self: center;
  }

  .bc-service-feature {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    border-radius: 18px;
    gap: 0;
    min-width: 0;
    width: min(100%, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }

  .bc-service-feature-visual {
    order: -1 !important;
    min-height: 190px;
    width: 100%;
  }

  .bc-service-feature-copy {
    padding: 20px;
    order: 0 !important;
    min-width: 0;
    width: 100%;
  }

  .bc-service-feature h3 {
    font-size: 1.28rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  #services .bc-service-feature h3 {
    font-size: 1rem;
  }

  .bc-service-feature p {
    font-size: .95rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .bc-service-feature .bc-button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .bc-studio-title-row {
    align-items: stretch;
    flex-direction: column;
  }
}
.bc-swipe-dots {
  display: none;
}


/* ===== SERVICE TABS ===== */
.bc-svc-tabs { margin-top: 40px; }
.bc-svc-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.bc-svc-nav::-webkit-scrollbar { display: none; }
.bc-svc-btn {
  background: none; border: none;
  color: var(--muted);
  font-size: .95rem; font-weight: 600;
  padding: 14px 26px;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .18s, border-color .18s;
  letter-spacing: -.005em;
}
.bc-svc-btn:hover { color: var(--text); }
.bc-svc-btn.active { color: var(--white); border-bottom-color: var(--blue); }
.bc-svc-panel { display: none; padding: 42px 0 8px; }
.bc-svc-panel.active { display: block; }
.bc-svc-panel h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700; letter-spacing: -0.022em; line-height: 1.1;
  margin: 0 0 18px;
}
.bc-svc-panel p {
  font-size: 1.08rem; color: var(--muted);
  line-height: 1.72; max-width: 680px;
  margin: 0 0 32px;
}
@media (max-width: 640px) {
  .bc-svc-btn { padding: 12px 16px; font-size: .875rem; }
  .bc-svc-panel { padding: 32px 0 8px; }
  .bc-svc-panel h3 { font-size: 1.45rem; }
  .bc-svc-panel p { font-size: 1rem; margin-bottom: 28px; }
}

/* ===== PROBLEM ===== */
.bc-problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 32px;
}
.bc-problem-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 8px 24px -12px rgba(0,0,0,.08);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
}
.bc-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 0 rgba(0,0,0,.03), 0 18px 40px -14px rgba(0,0,0,.18);
}
.bc-problem-card h3 {
  font-size: 1.12rem; font-weight: 700; margin: 0 0 10px;
  color: var(--dark-text); letter-spacing: -0.012em;
}
.bc-problem-card p { margin: 0; color: var(--dark-muted); font-size: .96rem; line-height: 1.55; }
.bc-problem-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-soft), rgba(57,120,255,.05));
  color: var(--blue-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(57,120,255,.18);
}
@media (max-width: 820px) { .bc-problem-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; } }
@media (max-width: 640px) { .bc-problem-card { padding: 24px; } }

/* ===== OFFER ===== */
.bc-offer { background: var(--ink); }
.bc-offer-wrap {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
}
.bc-offer-cta { margin-top: 28px; }
.bc-offer-copy {
  color: var(--muted);
  margin: 0 0 4px;
  font-size: .95rem;
}
.bc-offer-card {
  background: linear-gradient(160deg, rgba(57,120,255,.12), rgba(57,120,255,.02));
  border: 1px solid rgba(57,120,255,.32);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.bc-offer-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(57,120,255,.3), transparent 50%);
  pointer-events: none; opacity: .6;
  -webkit-mask: linear-gradient(#fff,#fff) content-box, linear-gradient(#fff,#fff);
  mask: linear-gradient(#fff,#fff) content-box, linear-gradient(#fff,#fff);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}
.bc-offer-card h3 {
  font-size: 1.3rem; font-weight: 700; margin: 0 0 12px; letter-spacing: -0.015em;
}
.bc-offer-list { list-style: none; padding: 0; margin: 22px 0 0; }
.bc-offer-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  color: var(--muted); font-size: .98rem;
}
.bc-offer-list li:last-child { border-bottom: 0; }
.bc-offer-list li::before {
  content: ""; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
  margin-top: 1px;
}
@media (max-width: 880px) { .bc-offer-wrap { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 640px) { .bc-offer-card { padding: 28px; border-radius: 18px; } .bc-offer-card h3 { font-size: 1.2rem; } }


/* ===== GOOGLE REVIEWS ===== */
.bc-google-reviews {
  margin: 34px 0 26px;
}

.bc-google-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 26px;
}

.bc-google-score {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.bc-google-stars {
  color: #fbbc04;
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin: 8px 0;
}

.bc-google-text {
  color: var(--muted);
  font-size: .95rem;
}

.bc-google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bc-google-review {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 24px;
}

.bc-google-review p {
  margin: 0 0 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
}

.bc-google-review strong {
  color: var(--blue-light);
  font-size: .9rem;
}

@media (max-width: 880px) {
  .bc-google-review-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PROOF ===== */
.bc-proof {
  background: var(--panel);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.bc-proof-wrap {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.bc-quote {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.3; letter-spacing: -0.018em; font-weight: 500;
  margin: 0 0 26px;
}
.bc-quote em {
  font-style: normal;
  background: linear-gradient(120deg, #8BB4FF 0%, #3978FF 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.bc-cite {
  font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 12px;
}
.bc-cite strong { color: var(--text); }
.bc-proof-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.bc-stat {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: border-color .25s, transform .25s;
}
.bc-stat:hover { border-color: rgba(57,120,255,.35); transform: translateY(-2px); }
.bc-stat-num {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--blue-light); letter-spacing: -0.025em; line-height: 1;
  margin-bottom: 8px;
}
.bc-stat-label { font-size: .85rem; color: var(--muted); }
@media (max-width: 880px) { .bc-proof-wrap { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 640px) { .bc-proof-stats { gap: 10px; } .bc-stat { padding: 20px; border-radius: 14px; } }

/* ===== HOW IT WORKS ===== */
.bc-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 48px;
}
.bc-step {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 8px 24px -16px rgba(0,0,0,.10);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
}
.bc-step:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -14px rgba(0,0,0,.18); }
.bc-step-num {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.bc-step-num::before {
  content: ""; width: 22px; height: 1px; background: var(--blue-deep); opacity: .4;
}
.bc-step h3 {
  font-size: 1.08rem; font-weight: 700; margin: 0 0 8px;
  color: var(--dark-text); letter-spacing: -0.01em;
}
.bc-step p { margin: 0; font-size: .93rem; color: var(--dark-muted); line-height: 1.55; }
@media (max-width: 880px) { .bc-steps { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (max-width: 520px) { .bc-steps { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; } .bc-step { padding: 24px; } }

/* ===== WHO IT'S FOR ===== */
.bc-who-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 44px;
}
.bc-who {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  transition: border-color .25s, transform .25s, background .25s;
}
.bc-who:hover {
  border-color: rgba(57,120,255,.35);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(57,120,255,.06), rgba(57,120,255,.01));
}
.bc-who h4 {
  font-size: 1.02rem; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.012em;
}
.bc-who p { font-size: .89rem; color: var(--muted); margin: 0; line-height: 1.5; }
.bc-who-tag {
  display: inline-block; padding: 4px 11px; border-radius: 999px;
  background: var(--blue-soft); color: #CFDDFF;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(57,120,255,.25);
}
@media (max-width: 880px) { .bc-who-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
@media (max-width: 520px) { .bc-who-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; } }

/* ===== FAQ ===== */
.bc-faq { margin-top: 44px; max-width: 820px; }
.bc-faq details {
  border-bottom: 1px solid rgba(0,0,0,.09);
  padding: 22px 0;
  transition: padding .2s;
}
.bc-faq details[open] { padding-bottom: 26px; }
.bc-faq summary {
  font-weight: 600; font-size: 1.06rem; color: var(--dark-text);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; letter-spacing: -0.012em;
  min-height: 32px;
}
.bc-faq summary::-webkit-details-marker { display: none; }
.bc-faq summary::after {
  content: ""; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.bc-faq details[open] summary::after {
  transform: rotate(45deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
.bc-faq details p {
  margin: 14px 0 0; color: var(--dark-muted); font-size: .99rem; line-height: 1.65;
  max-width: 720px;
}
@media (max-width: 640px) {
  .bc-faq summary { font-size: 1.01rem; }
  .bc-faq details { padding: 18px 0; }
}

/* ===== FINAL CTA ===== */
.bc-final {
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(75,123,255,.24), transparent 58%),
    var(--panel);
  padding: clamp(64px, 9vw, 96px) 0;
  overflow: hidden;
}
.bc-final::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; opacity: .5;
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
}
.bc-final .wrap { position: relative; z-index: 1; }
.bc-final h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  line-height: 1.08; letter-spacing: -0.022em; font-weight: 700;
  margin: 0 auto 16px; max-width: 720px;
}
.bc-final p {
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  color: var(--muted); max-width: 520px; margin: 0 auto 28px;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .bc-final { padding: 72px 0 84px; }
  .bc-final h2 { font-size: 1.95rem; }
}



/* ===== APPLE PRO INSPIRED POLISH ===== */
.bc {
  background:
    radial-gradient(circle at 50% -10%, rgba(92,141,255,.13), transparent 34%),
    linear-gradient(180deg, #0B0F17 0%, #080B11 100%);
}

@media (min-width: 881px) {
  .bc-header {
    background: rgba(11,15,23,.76);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    backdrop-filter: saturate(180%) blur(22px);
  }
}

.bc-h1,
.bc-h2,
.bc-final h2 {
  font-weight: 800;
  letter-spacing: -0.045em;
}

.bc-lede,
.bc-body,
.bc-svc-panel p,
.bc-service-feature p,
.bc-final p,
.bc-footer-blurb {
  color: var(--muted);
}

.bc-section--light {
  background: #F7F8FB;
}

.bc-card,
.bc-problem-card,
.bc-step,
.bc-blog-card {
  background: rgba(255,255,255,.98);
  border-color: rgba(17,24,39,.07);
  box-shadow: 0 14px 44px -30px rgba(17,24,39,.22);
}

.bc-button {
  box-shadow: none;
}

.bc-button.primary {
  background: linear-gradient(180deg, #6D9AFF 0%, var(--blue-deep) 100%);
  box-shadow: 0 14px 30px -18px rgba(92,141,255,.8);
}

.bc-button.primary:hover {
  background: linear-gradient(180deg, #78A3FF 0%, #3F6FE8 100%);
}

.bc-button.secondary {
  background: rgba(255,255,255,.055);
}

.bc-service-feature,
.bc-offer-card,
.bc-testimonial-card,
.bc-google-review {
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.026));
  border-color: rgba(255,255,255,.105);
  box-shadow: 0 22px 70px -44px rgba(0,0,0,.9);
}

.bc-service-feature-visual {
  background:
    radial-gradient(circle at 40% 20%, rgba(168,197,255,.22), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}

.bc-kicker {
  background: rgba(255,255,255,.055);
  border-color: rgba(168,197,255,.22);
  color: #DCE7FF;
}

.bc-eyebrow,
.bc-service-label,
.bc-who-tag {
  color: var(--blue-light);
}

.bc-hero-overlay {
  background:
    linear-gradient(180deg, rgba(11,15,23,.55) 0%, rgba(11,15,23,.76) 58%, rgba(11,15,23,.92) 100%),
    radial-gradient(circle at 50% 30%, rgba(92,141,255,.18), transparent 50%);
}

.bc-hero::after,
.bc-final::before,
.bc-service-feature-visual::before {
  opacity: .22;
}

.bc-trust,
.bc-proof,
.bc-final,
.bc-footer {
  background: #0B0F17;
}

/* FAQ readability upgrade */
#faq {
  background:
    radial-gradient(circle at top left, rgba(92,141,255,.08), transparent 36%),
    var(--ink);
  color: var(--text);
}

#faq .bc-h2 {
  color: var(--text);
}

#faq .bc-eyebrow {
  color: var(--blue-light);
}

.bc-faq {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  padding: 8px 26px;
  box-shadow: 0 22px 70px -44px rgba(0,0,0,.9);
}

.bc-faq details {
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.bc-faq details:last-child {
  border-bottom: 0;
}

.bc-faq summary {
  color: #F8FAFF;
  font-weight: 700;
}

.bc-faq details p {
  color: #C9D4EA;
  line-height: 1.82;
  font-size: 1rem;
}

/* Footer readability upgrade */
.bc-footer-col h5 {
  color: #D1DAEC;
}

.bc-footer-col a {
  color: #F4F7FF;
}

.bc-footer-bottom,
.bc-footer-blurb {
  color: #AEBAD1;
}

/* Mobile Apple Pro refinement */
@media (max-width: 640px) {
  .bc-h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    letter-spacing: -0.052em;
  }

  .bc-h2,
  .bc-final h2 {
    letter-spacing: -0.045em;
  }

  .bc-lede,
  .bc-body {
    color: #C3CDE1;
    line-height: 1.64;
  }

  .bc-faq {
    padding: 4px 18px;
    border-radius: 22px;
  }

  .bc-faq summary {
    font-size: 1.04rem;
    line-height: 1.35;
    padding-right: 4px;
  }

  .bc-faq details p {
    font-size: 1rem;
    line-height: 1.78;
    color: #D0DAEC;
  }

  .bc-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}


/* ===== SEO BLOG FEED ===== */
.bc-blog-intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.bc-blog-intro .bc-body {
  margin: 0;
}

.bc-blog-actions {
  flex-shrink: 0;
}

.bc-blog-card {
  transition: transform .22s, box-shadow .22s;
  display: flex;
  flex-direction: column;
}

.bc-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(15,23,42,.28);
}

.bc-blog-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-deep);
  font-weight: 700;
  font-size: .92rem;
}

.bc-blog-card p {
  flex: 1;
}

.bc-blog-meta {
  color: var(--blue-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  overflow-wrap: break-word;
}

.bc-blog-post-hero .bc-hero-copy {
  max-width: 940px;
}

.bc-blog-hero .bc-lede,
.bc-blog-post-hero .bc-lede {
  color: rgba(255,255,255,.88);
  text-shadow: 0 2px 18px rgba(0,0,0,.52);
}

.bc-blog-hero .bc-button.secondary,
.bc-blog-post-hero .bc-button.secondary {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(8,12,22,.38);
}

.bc-blog-post-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.bc-blog-article,
.bc-blog-post-panel {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 24px 60px -42px rgba(8,12,22,.34);
}

.bc-blog-article {
  padding: clamp(28px, 4vw, 56px);
  color: var(--dark-text);
}

.bc-blog-post-meta {
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bc-blog-article h2,
.bc-blog-article h3,
.bc-blog-article h4 {
  margin: 34px 0 12px;
  color: var(--dark-text);
  line-height: 1.16;
}

.bc-blog-article h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.bc-blog-article h3 {
  font-size: 1.25rem;
}

.bc-blog-article p,
.bc-blog-article li {
  color: var(--dark-muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.bc-blog-article p {
  margin: 0 0 18px;
}

.bc-blog-article ul,
.bc-blog-article ol {
  margin: 0 0 22px;
  padding-left: 24px;
}

.bc-blog-article a {
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bc-blog-article img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 28px 0;
}

.bc-blog-article hr {
  border: 0;
  border-top: 1px solid rgba(8,12,22,.12);
  margin: 34px 0;
}

.bc-blog-post-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  color: var(--dark-text);
}

.bc-blog-post-panel h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.bc-blog-post-panel p {
  margin: 0 0 18px;
  color: var(--dark-muted);
  line-height: 1.65;
}

@media (max-width: 880px) {
  .bc-blog-intro {
    display: block;
  }

  .bc-blog-actions {
    margin-top: 22px;
  }

  .bc-blog-post-wrap {
    grid-template-columns: 1fr;
  }

  .bc-blog-post-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .bc {
    letter-spacing: -0.01em;
  }

  .bc-header {
    background: rgba(8,10,18,.9);
  }

  .bc-hero-copy {
    text-align: left;
    margin: 0;
  }

  .bc-hero .bc-lede {
    margin-left: 0;
    margin-right: 0;
  }

  .bc-hero .bc-cta-row {
    align-items: stretch;
  }

  .bc-hero .bc-button,
  .bc-final .bc-button {
    max-width: none;
    width: 100%;
  }

  .bc-kicker {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .bc-service-feature,
  .bc-testimonial-card,
  .bc-google-review,
  .bc-blog-card {
    border-radius: 20px;
  }

  .bc-footer {
    padding-bottom: 56px;
  }
}


/* ===== FOOTER ===== */
.bc-footer {
  background: #090B13; padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.bc-footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 38px;
}
.bc-footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 18px;
}
.bc-footer-col ul { list-style: none; padding: 0; margin: 0; }
.bc-footer-col li { margin-bottom: 11px; color: var(--text); font-size: 14px; }
.bc-footer-col a { color: var(--text); font-size: 14px; transition: color .15s; }
.bc-footer-col a:hover { color: var(--blue-light); }
.bc-footer-blurb { font-size: 14px; color: var(--muted); max-width: 280px; margin: 16px 0 0; line-height: 1.6; }
.bc-footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 26px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px;
}
.bc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.bc-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.bc-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--muted);
  transition: border-color .15s, color .15s, background .15s;
}
.bc-social img { display: block; width: 18px; height: 18px; }
.bc-social a:hover,
.bc-social a:focus-visible { border-color: var(--blue); color: var(--text); background: rgba(57,120,255,.10); }
@media (max-width: 880px) {
  .bc-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .bc-footer { padding: 56px 0 28px; }
  .bc-footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .bc-footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; text-align: left; padding-top: 22px; }
}

/* MENU DROPDOWN (desktop) */
.bc-menu .menu-cta-item { display: none; }
@media (max-width: 880px) {
  .bc-menu.is-open .menu-cta-item { display: block; }
}
.bc-menu .dropdown-item { position: relative; }
.bc-menu .dropdown-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(247,249,255,.85);
  padding: 6px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .18s;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}
.bc-menu .dropdown-toggle:hover,
.bc-menu .dropdown-toggle.is-open,
.bc-menu .dropdown-toggle.is-active { color: var(--white); }
.bc-menu .dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-light);
  opacity: .95;
  transition: left .25s, right .25s;
}
.bc-menu .dropdown-toggle:hover::after,
.bc-menu .dropdown-toggle.is-open::after,
.bc-menu .dropdown-toggle.is-active::after { left: 0; right: 0; }
.bc-menu .dropdown-toggle .arrow {
  font-size: 11px;
  color: var(--blue-light);
  font-weight: 700;
}
.bc-menu .submenu {
  position: absolute;
  top: 100%;
  left: -14px;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 6px;
  min-width: 220px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 110;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  display: block;
}
.bc-menu .dropdown-item::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 100%;
  height: 12px;
}
.bc-menu .dropdown-item:hover .submenu,
.bc-menu .dropdown-item:focus-within .submenu,
.bc-menu .dropdown-item.is-open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.bc-menu .submenu li { margin: 0; width: auto; }
.bc-menu .submenu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: background .15s, color .15s;
}
.bc-menu .submenu a::after { display: none !important; }
.bc-menu .submenu a:hover { background: var(--blue-soft); color: var(--white); }

/* ===== SELECTED WORK ===== */
.bc-work-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
}

.bc-work-head .bc-body {
  margin: 0;
}

#portfolio .bc-work-head {
  grid-template-columns: 1fr;
}

.bc-proof-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(24px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 8px;
  background: rgba(255,255,255,.11);
}

.bc-proof-stat {
  padding: clamp(18px, 3vw, 28px);
  background: var(--ink);
  text-align: center;
}

.bc-proof-stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.bc-proof-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
  text-transform: uppercase;
}

.bc-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.bc-project-tile {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  transition: border-color .18s, transform .18s;
}

a.bc-project-tile:hover,
a.bc-project-tile:focus-visible {
  border-color: rgba(92,141,255,.55);
  transform: translateY(-2px);
}

.bc-project-media {
  height: 194px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.bc-project-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

a.bc-project-tile:hover .bc-project-media img,
a.bc-project-tile:focus-visible .bc-project-media img {
  transform: scale(1.025);
}

.bc-project-tile h3 {
  margin: 0;
  padding: 15px 16px 17px;
  font-size: .97rem;
  line-height: 1.36;
}

#portfolio .bc-project-grid {
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 20px);
}

#portfolio .bc-project-media {
  height: auto;
  aspect-ratio: 16 / 9;
}

@media (min-width: 881px) {
  #portfolio .bc-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

.bc-portfolio-link {
  margin-top: 24px;
}

.bc-work-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 0;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  box-shadow: 0 24px 70px -44px rgba(0,0,0,.85);
}

.bc-work-feature-video {
  min-height: 420px;
  border-radius: 0;
  /* Remove height: 100% and padding-bottom overrides to allow aspect ratio container to work */
}

.bc-work-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 40px);
}

.bc-work-feature-copy span,
.bc-work-card-copy span {
  color: var(--blue-light);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bc-work-feature-copy h3 {
  margin: 12px 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.bc-work-feature-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.bc-work-feature-copy dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.bc-work-feature-copy dl div {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.bc-work-feature-copy dt {
  margin: 0 0 4px;
  color: rgba(245,247,251,.55);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.bc-work-feature-copy dd {
  margin: 0;
  color: rgba(245,247,251,.86);
  font-size: .94rem;
  line-height: 1.45;
}

.bc-work-feature-cta {
  align-self: flex-start;
  width: max-content;
  max-width: none;
  margin-top: 24px;
  white-space: nowrap;
}

.bc-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.bc-work-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.bc-work-card .bc-video-wrap,
.bc-work-image {
  height: 190px;
  padding-bottom: 0;
  border-radius: 0;
}

.bc-work-image {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.bc-work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-work-card-copy {
  padding: 18px;
}

.bc-work-card-copy h3 {
  margin: 9px 0 8px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.bc-work-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

/* ===== PORTFOLIO LANES ===== */
.bc-portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: end;
}

.bc-portfolio-intro .bc-body {
  margin: 0;
}

.bc-portfolio-lanes {
  display: grid;
  gap: 38px;
  margin-top: 38px;
}

.bc-portfolio-lane {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.11);
}

.bc-lane-head {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 18px;
}

.bc-lane-head span {
  color: var(--blue-light);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.bc-lane-head h3 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.bc-lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bc-work-tile {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  min-height: 100%;
}

.bc-work-tile-link {
  display: block;
  color: var(--text);
  transition: border-color .18s, transform .18s;
}

.bc-work-tile-link:hover,
.bc-work-tile-link:focus-visible {
  border-color: rgba(92,141,255,.55);
  transform: translateY(-2px);
}

.bc-work-tile .bc-work-image img {
  transition: transform .28s ease;
}

.bc-work-tile-link:hover .bc-work-image img,
.bc-work-tile-link:focus-visible .bc-work-image img {
  transform: scale(1.025);
}

.bc-work-tile--wide {
  grid-column: span 2;
}

.bc-work-tile .bc-video-wrap,
.bc-work-tile .bc-work-image {
  height: 210px;
  padding-bottom: 0;
  border-radius: 0;
}

.bc-work-tile-copy {
  padding: 18px;
}

.bc-work-tile-copy span {
  color: var(--blue-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bc-work-tile-copy h3 {
  margin: 9px 0 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.bc-work-tile-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.bc-credit-panel {
  margin-top: clamp(38px, 6vw, 58px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.11);
}

.bc-credit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bc-credit-card {
  display: flex;
  flex-direction: column;
  min-height: 205px;
  padding: clamp(18px, 2vw, 22px);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.bc-credit-card-link {
  transition: border-color .18s, transform .18s;
}

.bc-credit-card-link:hover,
.bc-credit-card-link:focus-visible {
  border-color: rgba(92,141,255,.55);
  transform: translateY(-2px);
}

.bc-credit-platform {
  color: var(--blue-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bc-credit-card h4 {
  margin: auto 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.bc-credit-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.bc-credit-logo {
  display: flex;
  align-items: center;
  height: 68px;
  margin-bottom: auto;
}

.bc-credit-logo img {
  display: block;
  width: auto;
  max-width: 128px;
  max-height: 55px;
  object-fit: contain;
}

.bc-credit-card--brand h4 {
  margin-top: 16px;
}

/* ===== FOUNDER STORY AND PRIVACY ===== */
.bc-founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.bc-founder-grid > *,
.bc-legacy-grid > * {
  min-width: 0;
}

.bc-founder-photo,
.bc-team-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(20,27,42,.12);
  background:
    linear-gradient(145deg, rgba(92,141,255,.16), transparent 46%),
    linear-gradient(180deg, #d9dde5, #c7ccd6);
}

.bc-founder-photo {
  min-height: 410px;
  padding: 0;
}

.bc-founder-photo > span {
  color: rgba(20,27,42,.72);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bc-founder-photo img,
.bc-team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bc-founder-photo img {
  min-height: 410px;
}

.bc-legacy {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.bc-legacy-grid {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(400px, 1.08fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
  max-width: 1120px;
  margin-inline: auto;
}

.bc-legacy-copy {
  max-width: 520px;
  justify-self: center;
}

.bc-legacy-copy p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.bc-legacy-copy .bc-legacy-source {
  margin: 27px 0 0;
  font-size: .82rem;
  color: rgba(202,213,234,.72);
}

.bc-legacy-source a {
  color: var(--blue-light);
}

.bc-legacy-gallery figure {
  margin: 0;
}

.bc-legacy-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.bc-legacy-feature img {
  aspect-ratio: 16 / 10;
}

.bc-legacy-gallery figcaption {
  padding: 10px 2px 0;
  color: var(--muted);
  font-size: .8rem;
}

.bc-legacy-archive {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.bc-legacy-archive img {
  aspect-ratio: 16 / 10;
}

.bc-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.bc-team-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}

.bc-team-photo {
  aspect-ratio: 4 / 5;
  min-height: 285px;
  border: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(92,141,255,.14), transparent 48%),
    linear-gradient(180deg, #252c38, #151a23);
}

.bc-team-photo > span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: rgba(247,249,255,.74);
  background: rgba(255,255,255,.055);
  font-size: 1.45rem;
  font-weight: 700;
}

.bc-team-card h3 {
  margin: 0;
  padding: 15px 16px;
  font-size: 1.05rem;
  font-weight: 600;
}

.bc-privacy-copy {
  max-width: 780px;
}

.bc-privacy-copy h2 {
  margin: 38px 0 10px;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.bc-privacy-copy p,
.bc-privacy-copy li {
  color: var(--muted);
  line-height: 1.7;
}

.bc-privacy-copy ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

/* ===== LOWER PAGE CLEANUP ===== */
.bc-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.bc-review-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
}

.bc-review-stars {
  color: #f5c518;
  font-size: .82rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.bc-review-card p {
  margin: 0 0 12px;
  color: rgba(245,247,251,.84);
  font-size: .9rem;
  line-height: 1.55;
}

.bc-review-card strong {
  color: rgba(245,247,251,.64);
  font-size: .82rem;
}

#faq {
  border-top: 1px solid rgba(255,255,255,.08);
}

#faq .wrap {
  max-width: 920px;
}

#faq .bc-h2 {
  max-width: 720px;
}

.bc-final {
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (min-width: 881px) {
  .bc-page-hero {
    min-height: min(56vh, 540px);
  }

  .bc-privacy-hero {
    padding-top: 88px;
    padding-bottom: 34px;
  }

  .bc-privacy-hero + .bc-section {
    padding-top: 38px;
  }

  .bc-section {
    padding-top: clamp(48px, 5vw, 68px);
    padding-bottom: clamp(48px, 5vw, 68px);
  }

  .bc-hero--home-film {
    padding-bottom: 40px;
  }

  .bc-client-band {
    padding-top: 42px;
    padding-bottom: 30px;
  }

  .bc-client-band + #services {
    padding-top: 42px;
  }

  #services {
    padding-bottom: 54px;
  }

  #portfolio {
    padding-top: 50px;
    padding-bottom: 58px;
  }

  #about-preview {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .bc-final {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}

@media (max-width: 880px) {
  .bc-work-head,
  .bc-work-feature,
  .bc-work-grid,
  .bc-portfolio-intro,
  .bc-lane-head {
    grid-template-columns: 1fr;
  }

  .bc-work-feature-video {
    min-height: 300px;
  }

  .bc-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bc-founder-grid {
    grid-template-columns: 1fr;
  }

  .bc-legacy-grid {
    grid-template-columns: 1fr;
  }

  .bc-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bc-lane-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bc-credit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bc-work-tile--wide {
    grid-column: span 2;
  }

  .bc-review-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MOBILE DENSITY PASS ===== */
@media (max-width: 640px) {
  .bc .wrap { padding-left: 16px; padding-right: 16px; }
  .bc-nav { height: 58px; gap: 8px; }
  .bc-logo img { height: 24px; }
  .bc-menu.is-open { top: 58px; padding: 0 18px 18px; }
  .bc-menu.is-open a,
  .bc-menu.is-open .dropdown-toggle { padding: 13px 4px; font-size: 15px; }

  .bc-hero {
    min-height: auto;
    padding: 56px 0 46px;
  }
  .bc-page-hero {
    min-height: 460px;
    padding: 84px 0 48px;
  }
  .bc-page-hero .bc-hero-copy {
    max-width: 100%;
    min-width: 0;
    margin: 0;
    text-align: left;
  }
  .bc-page-hero .bc-h1 {
    max-width: 11ch;
    font-size: clamp(1.95rem, 8.4vw, 2.25rem);
    line-height: 1.06;
    overflow-wrap: normal;
  }
  .bc-page-hero .bc-lede {
    max-width: 28ch;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
  .bc-founder-grid,
  .bc-legacy-grid,
  .bc-seo-copy {
    max-width: 100%;
    min-width: 0;
  }
  .bc-seo-copy p,
  .bc-legacy-copy p {
    max-width: 29ch;
    overflow-wrap: break-word;
  }
  .bc-hero--home-film { padding: 36px 0 32px; }
  .bc-hero--home-film .wrap { display: block; }
  .bc-hero--home-film .bc-hero-stage { display: block; position: relative; }
  .bc-hero--home-film .bc-hero-video-frame {
    position: relative;
    aspect-ratio: 16 / 11;
    margin-bottom: 0;
  }
  .bc-hero--home-film .bc-hero-video-frame::after {
    content: "";
    position: absolute;
    inset: 25% 0 0;
    background: linear-gradient(180deg, transparent, rgba(8,10,18,.78));
    pointer-events: none;
  }
  .bc-hero--home-film .bc-hero-copy {
    position: absolute;
    z-index: 2;
    left: 14px;
    right: 14px;
    bottom: 14px;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  .bc-hero--home-film .bc-kicker { margin-bottom: 8px; padding: 5px 9px; font-size: 10px; }
  .bc-hero--home-film .bc-h1 { margin-bottom: 6px; font-size: clamp(1.35rem, 6.2vw, 1.65rem); line-height: 1.08; }
  .bc-hero--home-film .bc-lede { margin: 0; max-width: 30ch; color: rgba(247,249,255,.88); font-size: .78rem; line-height: 1.4; }
  .bc-hero--home-film .bc-hero-actions { margin: 12px 0 0; }
  .bc-kicker { margin-bottom: 14px; padding: 7px 12px; font-size: 11px; }
  .bc-h1 { margin-bottom: 14px; font-size: clamp(2.05rem, 10vw, 2.8rem); line-height: 1.02; }
  .bc-lede { margin-bottom: 20px; font-size: 1rem; line-height: 1.5; }
  .bc-cta-row { gap: 8px; margin-top: 18px; }
  .bc-button { min-height: 42px; padding: 12px 16px; font-size: 14px; }
  .bc-hero-actions .bc-button { white-space: normal; }

  .bc-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .bc-client-band { padding-bottom: 18px; }
  .bc-client-band + #services { padding-top: 25px; }
  #services .bc-h2 { max-width: 16ch; }
  .bc-h2 {
    margin-top: 8px;
    font-size: 1.55rem;
    line-height: 1.08;
  }
  .bc-body { font-size: .96rem; line-height: 1.55; }
  .bc-eyebrow { font-size: 11px; letter-spacing: .1em; }

  .bc-hero-marquee { margin-top: 12px; border-radius: 12px; }
  .bc-hero-marquee-item { min-height: 38px; padding: 9px 14px; font-size: .82rem; }
  .bc-hero-marquee--reviews { margin-top: 24px; }
  .bc-review-marquee-item { min-width: 260px; max-width: 260px; padding: 16px; }

  .bc-problem-grid,
  .bc-blog-grid,
  .bc-related-links { gap: 10px; margin-top: 22px; }
  .bc-problem-card,
  .bc-blog-card,
  .bc-testimonial-card { padding: 18px; border-radius: 14px; }

  .bc-service-stack { margin-top: 22px; gap: 12px; }
  .bc-service-feature { border-radius: 14px; }
  .bc-service-feature-visual { min-height: 150px; }
  .bc-service-feature-copy { padding: 16px; }
  .bc-service-label { margin-bottom: 9px; font-size: .68rem; }
  .bc-service-feature h3 { margin-bottom: 8px; font-size: 1.12rem; }
  #services .bc-service-label { display: block; width: auto; margin-bottom: 10px; font-size: 1.55rem; line-height: 1.1; letter-spacing: 0; text-transform: none; }
  #services .bc-service-label { max-width: 14ch; overflow-wrap: normal; }
  #services .bc-service-feature h3 { margin-bottom: 18px; font-size: .96rem; line-height: 1.42; }
  #services .bc-service-feature h3,
  #services .bc-service-feature p { max-width: 30ch; }
  .bc-service-feature p { margin-bottom: 12px; font-size: .9rem; line-height: 1.48; }
  .bc-service-feature ul { gap: 6px; margin-bottom: 14px; }
  .bc-service-feature li { font-size: .84rem; line-height: 1.35; }

  .bc-video-reel-grid { margin-top: 18px; padding-bottom: 12px; }
  .bc-video-wrap { height: 138px; flex-basis: 78%; border-radius: 12px; }
  .bc-video-dots { margin-top: 8px; }
  .bc-work-head { gap: 12px; }
  .bc-work-feature { margin-top: 20px; border-radius: 14px; }
  .bc-work-feature-video { min-height: 190px; }
  .bc-work-feature-copy { padding: 18px; }
  .bc-work-feature-copy h3 { font-size: 1.35rem; }
  .bc-work-feature-copy p { font-size: .92rem; line-height: 1.5; }
  .bc-work-feature-copy dl { margin-top: 16px; gap: 8px; }
  .bc-work-feature-copy dl div { padding-top: 9px; }
  .bc-work-feature-cta { width: 100%; max-width: none; white-space: normal; }
  .bc-work-grid { margin-top: 12px; gap: 10px; }
  .bc-proof-ribbon { margin-top: 20px; border-radius: 6px; width: min(100%, calc(100vw - 32px)); max-width: calc(100vw - 32px); }
  .bc-proof-stat { padding: 14px 8px; }
  .bc-proof-stat strong { font-size: clamp(1.45rem, 7vw, 1.8rem); }
  .bc-proof-stat span { margin-top: 6px; font-size: .6rem; line-height: 1.25; overflow-wrap: anywhere; }
  .bc-project-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .bc-project-media { height: 106px; }
  #portfolio .bc-project-media { height: auto; aspect-ratio: 16 / 9; }
  .bc-project-tile h3 { padding: 10px; font-size: .78rem; line-height: 1.35; }
  .bc-portfolio-link { margin-top: 18px; }
  .bc-founder-photo { min-height: 300px; }
  .bc-legacy-copy p { margin-bottom: 14px; font-size: .94rem; line-height: 1.55; }
  .bc-legacy-copy .bc-legacy-source { margin-top: 21px; }
  .bc-legacy-gallery { margin-top: 4px; }
  .bc-legacy-archive { gap: 8px; margin-top: 12px; }
  .bc-legacy-gallery figcaption { padding-top: 7px; font-size: .74rem; }
  .bc-team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 22px auto 0;
    gap: 14px;
  }
  .bc-team-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .bc-team-card h3 {
    min-height: 44px;
    padding: 12px 14px;
    font-size: .95rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }
  .bc-work-card .bc-video-wrap,
  .bc-work-image,
  .bc-work-tile .bc-video-wrap,
  .bc-work-tile .bc-work-image { height: 150px; }
  .bc-work-card-copy,
  .bc-work-tile-copy { padding: 14px; }
  .bc-portfolio-lanes { gap: 30px; margin-top: 26px; }
  .bc-portfolio-lane { padding-top: 22px; }
  .bc-lane-grid { grid-template-columns: 1fr; gap: 10px; }
  .bc-credit-grid { grid-template-columns: 1fr; gap: 10px; }
  .bc-credit-card { min-height: 160px; padding: 16px; }
  .bc-work-tile--wide { grid-column: auto; }
  .bc-review-grid { margin-top: 18px; gap: 10px; }
  .bc-review-card { padding: 14px; border-radius: 12px; }
  .bc-review-card p { font-size: .86rem; line-height: 1.45; }
  .bc-hero-marquee--reviews .bc-hero-marquee-track { gap: 10px; }
  .bc-review-marquee-item { min-width: 270px; max-width: 270px; padding: 14px; }

  .bc-blog-intro { margin-bottom: 18px; }
  .bc-blog-actions { margin-top: 14px; }
  .bc-faq { margin-top: 22px; padding: 0 14px; border-radius: 14px; }
  .bc-faq details { padding: 14px 0; }
  .bc-faq summary { font-size: .98rem; min-height: 28px; }
  .bc-faq summary::after { width: 24px; height: 24px; }
  .bc-faq details p { margin-top: 8px; font-size: .93rem; line-height: 1.55; }

  .bc-final { padding: 44px 0 56px; }
  .bc-final h2 { font-size: 1.65rem; margin-bottom: 10px; }
  .bc-final p { margin-bottom: 18px; font-size: .95rem; }
  .bc-footer { padding: 36px 0 86px; }
  .bc-footer-grid { gap: 22px; margin-bottom: 24px; }
}

.bc-final--inquiry {
  text-align: left;
}

.bc-final--inquiry .wrap {
  max-width: 1120px;
}

.bc-inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.bc-inquiry-copy h2 {
  max-width: 560px;
  margin: 10px 0 16px;
}

.bc-inquiry-copy p {
  max-width: 520px;
  margin: 0 0 26px;
  color: rgba(245,247,251,.78);
}

.bc-inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bc-inquiry-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(8,11,17,.78);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  box-shadow: 0 24px 60px -42px rgba(0,0,0,.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.bc-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bc-field {
  display: grid;
  gap: 7px;
}

.bc-field label {
  color: rgba(245,247,251,.82);
  font-size: .84rem;
  font-weight: 700;
}

.bc-field input,
.bc-field select,
.bc-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font: inherit;
  padding: 12px 13px;
  outline: none;
}

.bc-field select {
  background: #111827;
  color: #F5F7FB;
  color-scheme: dark;
}

.bc-field select option {
  background: #0B0F17;
  color: #F5F7FB;
}

.bc-field textarea {
  min-height: 122px;
  resize: vertical;
}

.bc-field input:focus,
.bc-field select:focus,
.bc-field textarea:focus {
  border-color: rgba(109,154,255,.86);
  box-shadow: 0 0 0 3px rgba(109,154,255,.18);
}

.bc-honey-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.bc-form-note {
  max-width: none;
  margin: 0;
  color: rgba(245,247,251,.66);
  font-size: .88rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.bc-form-note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bc-form-note.is-sending {
  color: rgba(245,247,251,.82);
}

.bc-form-note.is-error {
  color: #ffb4a8;
}

.bc-inquiry-form .bc-button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.bc-form-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5,8,13,.68);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.bc-form-popup-panel {
  position: relative;
  width: min(100%, 420px);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: #0B0F17;
  color: var(--white);
  box-shadow: 0 26px 70px -30px rgba(0,0,0,.82);
}

.bc-form-popup-panel h2 {
  margin: 0 34px 10px 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.bc-form-popup-panel p {
  margin: 0 0 22px;
  color: rgba(245,247,251,.76);
  line-height: 1.55;
}

.bc-form-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.bc-form-popup-close:focus,
.bc-form-popup-panel .bc-button:focus {
  outline: 2px solid rgba(109,154,255,.86);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .bc-inquiry-layout,
  .bc-field-grid {
    grid-template-columns: 1fr;
  }

  .bc-inquiry-layout {
    gap: 24px;
  }

  .bc-inquiry-form {
    padding: 18px;
  }

  .bc-inquiry-actions .bc-button,
  .bc-inquiry-form .bc-button {
    width: 100%;
  }
}

@media (hover: none), (pointer: coarse) {
  .bc-button.primary:hover {
    background: linear-gradient(180deg, #6D9AFF 0%, var(--blue-deep) 100%);
    transform: none;
    box-shadow: 0 14px 30px -18px rgba(92,141,255,.8);
  }

  .bc-button.secondary:hover {
    background: rgba(255,255,255,.055);
    border-color: var(--line-strong);
  }

  .bc-button:hover .arrow,
  .bc-video-wrap:hover .bc-play-btn svg {
    transform: none;
  }

  .bc-youtube-link:hover {
    background: rgba(8,10,18,.82);
  }
}
