/* ============================================
   Benconnected Theme — theme.css
   All custom styles. No inline styles, no Tailwind.
   Font sizes matched to Dynamic Computing reference.
   ============================================ */

/* ── CSS Custom Properties ── */
:root {
  --bc-blue: #00a5da;
  --bc-blue-hover: #0090be;
  --bc-navy: #182e4f;
  --bc-navy-dark: #0f1e33;
  --bc-light: #f8f9fa;
  --bc-white: #ffffff;
  --bc-text: #64748b;
  --bc-heading: #182e4f;
  --bc-star: #f59e0b;
  --bc-border: #e5e7eb;
  --bc-card-bg: #fafbfc;
  --bc-card-border: #e8edf2;
  --bc-font: 'Inter', system-ui, sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--bc-font);
  color: var(--bc-text);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  color: var(--bc-heading);
  font-weight: 800;
  line-height: 1.2;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--bc-blue);
  color: var(--bc-white);
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
  border-radius: 3px;
  font-family: var(--bc-font);
}

.btn-primary:hover {
  background: var(--bc-blue-hover);
}

.btn-outline-dark {
  background: transparent;
  color: var(--bc-navy);
  border: 2px solid var(--bc-navy);
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
  border-radius: 3px;
  font-family: var(--bc-font);
}

.btn-outline-dark:hover {
  background: var(--bc-navy);
  color: var(--bc-white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--bc-blue);
  border: 2px solid var(--bc-blue);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
  border-radius: 3px;
  font-family: var(--bc-font);
}

.btn-outline-blue:hover {
  background: var(--bc-blue);
  color: var(--bc-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--bc-white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
  border-radius: 3px;
  font-family: var(--bc-font);
}

.btn-outline-white:hover {
  background: var(--bc-white);
  color: var(--bc-navy);
  border-color: var(--bc-white);
}

/* ── Section Label (eyebrow) ── */
.section-label {
  color: var(--bc-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* ── Container ── */
.bc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.bc-container--narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   1. STICKY NAV
   ============================================ */
.bc-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bc-white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.bc-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bc-nav__logo-img {
  height: 72px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
}

.bc-nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.bc-nav__links a {
  font-size: 16px;
  font-weight: 700;
  color: #2a313b;
  transition: color 0.2s;
}

/* Mobile contact button — hidden on desktop */
.bc-nav__mobile-contact {
  display: none;
}

.bc-nav__links a:hover {
  color: var(--bc-blue);
}

/* — Nav dropdown submenus (WordPress menu) — */
.bc-nav__links .menu-item-has-children {
  position: relative;
}

.bc-nav__links .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.7;
  transition: transform 0.2s;
}

.bc-nav__links .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Invisible bridge so hover doesn't drop when crossing the gap to submenu */
.bc-nav__links .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.bc-nav__links .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: var(--bc-white);
  border: 1px solid #e8edf2;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(24, 46, 79, 0.14);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}

.bc-nav__links .menu-item-has-children:hover > .sub-menu,
.bc-nav__links .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.bc-nav__links .sub-menu li {
  padding: 0;
  list-style: none;
}

.bc-nav__links .sub-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bc-navy);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.bc-nav__links .sub-menu a:hover {
  background: rgba(0, 165, 218, 0.08);
  color: var(--bc-blue);
}

/* Submenu toggle button — hidden on desktop, shown on mobile via JS */
.bc-nav__submenu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
}

.bc-nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bc-nav__phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--bc-white);
  background: var(--bc-blue);
  padding: 10px 20px;
  border-radius: 3px;
  transition: background 0.2s;
}

.bc-nav__phone:hover {
  background: var(--bc-blue-hover);
}

/* Hamburger — hidden on desktop */
.bc-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--bc-navy);
}

.bc-nav__hamburger-close {
  display: none;
}

.bc-nav__hamburger--active .bc-nav__hamburger-open {
  display: none;
}

.bc-nav__hamburger--active .bc-nav__hamburger-close {
  display: block;
}

/* Floating mobile CTA bar — hidden on desktop */
.bc-mobile-cta {
  display: none;
}

/* ============================================
   2. HERO
   ============================================ */
.bc-hero {
  position: relative;
  min-height: 600px;
  background: var(--bc-white);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.bc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}

.bc-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 35%, rgba(255,255,255,0.92) 45%, rgba(255,255,255,0.4) 58%, rgba(255,255,255,0) 72%);
}

.bc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
  display: flex;
  align-items: center;
}

.bc-hero__text {
  max-width: 560px;
}

.bc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,165,218,0.1);
  border: 1px solid rgba(0,165,218,0.35);
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 24px;
  color: var(--bc-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bc-hero__headline {
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.bc-hero__headline span {
  display: block;
  font-size: clamp(48px, 6vw, 80px);
}

.bc-hero__headline .text-blue {
  color: var(--bc-blue);
}

.bc-hero__headline .text-navy {
  color: var(--bc-navy);
}

.bc-hero__subhead {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.bc-hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   CITIES STRIP
   ============================================ */
/* ============================================
   MSP PRICING STRIP (page-msp.php)
   ============================================ */
.bc-price-strip {
  position: relative;
  background:
    radial-gradient(ellipse at top left, rgba(0, 165, 218, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(0, 165, 218, 0.14) 0%, transparent 60%),
    linear-gradient(135deg, #0f1e33 0%, #182e4f 50%, #0f1e33 100%);
  padding: 28px 40px;
  border-top: 1px solid rgba(0, 165, 218, 0.25);
  border-bottom: 1px solid rgba(0, 165, 218, 0.25);
  overflow: hidden;
}

.bc-price-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 165, 218, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 165, 218, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  pointer-events: none;
}

.bc-price-strip__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 160px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(0, 165, 218, 0.25) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.bc-price-strip__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.bc-price-strip__tag {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 26px 14px 22px;
  background: linear-gradient(135deg, rgba(0, 165, 218, 0.18) 0%, rgba(0, 165, 218, 0.06) 100%);
  border: 1px solid rgba(0, 165, 218, 0.45);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(0, 165, 218, 0.08) inset,
    0 8px 24px rgba(0, 165, 218, 0.15);
  position: relative;
}

.bc-price-strip__tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--bc-blue);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(0, 165, 218, 0.8);
}

.bc-price-strip__tag-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 165, 218, 0.95);
  margin-bottom: 2px;
}

.bc-price-strip__tag-price {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #8ed7ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.bc-price-strip__currency {
  font-size: 26px;
  font-weight: 700;
  vertical-align: top;
  margin-right: 2px;
  position: relative;
  top: 6px;
}

.bc-price-strip__period {
  font-size: 18px;
  font-weight: 600;
  margin-left: 2px;
}

.bc-price-strip__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bc-price-strip__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
}

.bc-price-strip__features svg {
  width: 18px;
  height: 18px;
  color: var(--bc-blue);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 165, 218, 0.5));
}

.bc-price-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--bc-blue) 0%, #0088b8 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 10px 28px rgba(0, 165, 218, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.bc-price-strip__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.bc-price-strip__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 14px 32px rgba(0, 165, 218, 0.55);
}

.bc-price-strip__cta:hover svg {
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .bc-price-strip {
    padding: 26px 20px;
  }
  .bc-price-strip__inner {
    gap: 20px;
  }
  .bc-price-strip__tag-price {
    font-size: 36px;
  }
  .bc-price-strip__features {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .bc-price-strip__inner {
    flex-direction: column;
    text-align: center;
  }
  .bc-price-strip__tag {
    align-items: center;
  }
  .bc-price-strip__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.bc-cities {
  background: var(--bc-navy);
  padding: 18px 40px;
  border-bottom: 3px solid var(--bc-blue);
}

.bc-cities__range {
  max-width: 1200px;
  margin: 0 auto 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bc-blue);
}

.bc-cities__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bc-cities__pin {
  width: 22px;
  height: 22px;
  color: var(--bc-blue);
  flex-shrink: 0;
}

.bc-cities__label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bc-blue);
  white-space: nowrap;
}

.bc-cities__list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.bc-cities__list span {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.bc-cities__list span:not(:last-child)::after {
  content: '·';
  margin: 0 12px;
  color: var(--bc-blue);
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 768px) {
  .bc-cities {
    padding: 12px 20px;
  }

  .bc-cities__range {
    font-size: 10px;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
  }

  .bc-cities__inner {
    flex-wrap: wrap;
    gap: 6px;
  }

  .bc-cities__label {
    font-size: 10px;
  }

  .bc-cities__list span {
    font-size: 12px;
  }

  .bc-cities__list span:not(:last-child)::after {
    margin: 0 6px;
  }
}

/* ============================================
   3. STATS BAR
   ============================================ */
.bc-stats {
  background: var(--bc-white);
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.bc-stats__split {
  display: flex;
  align-items: stretch;
  min-height: 560px;
}

.bc-stats__media {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 40px 0;
  overflow: hidden;
}

.bc-stats__shape {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  top: 12%;
  background: linear-gradient(135deg, var(--bc-blue) 0%, var(--bc-navy) 100%);
  border-radius: 12px 12px 0 0;
  z-index: 1;
}

.bc-stats__shape::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0, transparent 45%);
  border-radius: inherit;
}

.bc-stats__team {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 520px;
  height: auto;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.bc-stats__slider {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  top: 12%;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: var(--bc-navy);
  z-index: 1;
}

.bc-stats__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 800ms ease-in-out;
}

.bc-stats__slide--active {
  opacity: 1;
}

.bc-stats__content {
  width: 50%;
  padding: 60px 60px 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bc-stats__title {
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 16px;
  line-height: 1.2;
}

.bc-stats__title-main {
  display: block;
  font-size: 36px;
}

.bc-stats__title-sub {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--bc-text);
  margin-top: 10px;
}

.bc-stats__desc {
  color: var(--bc-text);
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
}

.bc-stats__creds {
  color: var(--bc-blue);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 36px;
}

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

.bc-stats__item {
  text-align: center;
}

.bc-stats__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #f0f9ff;
  border: 3px solid var(--bc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 32px;
}

.bc-stats__icon svg {
  width: 36px;
  height: 36px;
  color: var(--bc-blue);
}

.bc-stats__value {
  font-size: 42px;
  font-weight: 900;
  color: var(--bc-blue);
  line-height: 1;
}

.bc-stats__label {
  font-size: 15px;
  color: #666;
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================
   4. GOOGLE REVIEWS
   ============================================ */
.bc-reviews {
  background: var(--bc-light);
  padding: 80px 40px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.bc-reviews__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bc-reviews__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bc-reviews__google-g {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.bc-reviews__stars {
  color: var(--bc-star);
  font-size: 24px;
  letter-spacing: 3px;
}

.bc-reviews__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--bc-heading);
  margin: 14px 0 10px;
}

.bc-reviews__grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.bc-reviews__card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  padding: 25px 20px 30px;
  max-width: 270px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.bc-reviews__card-stars {
  color: var(--bc-star);
  font-size: 20px;
  letter-spacing: 2px;
}

.bc-reviews__card-text {
  font-size: 16px;
  color: #555;
  margin: 12px 0 16px;
  line-height: 1.6;
}

.bc-reviews__card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--bc-heading);
}

.bc-reviews__card-company {
  font-size: 14px;
  color: #888;
  margin-top: 2px;
}

.bc-reviews__cta {
  margin-top: 40px;
}

/* ============================================
   5. SERVICES GRID
   ============================================ */
.bc-services {
  background: var(--bc-white);
  padding: 100px 40px;
}

.bc-services__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.bc-services__title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 16px;
}

.bc-services__desc {
  text-align: center;
  color: var(--bc-text);
  max-width: 580px;
  margin: 0 auto 64px;
  font-size: 18px;
  line-height: 1.6;
}

.bc-services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.bc-services__card {
  padding: 32px 24px;
  border-radius: 10px;
  border: 1px solid var(--bc-card-border);
  background: var(--bc-card-bg);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a.bc-services__card {
  text-decoration: none;
  color: inherit;
}

.bc-services__card:hover {
  background: var(--bc-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.bc-services__card-icon {
  width: 150px;
  height: 130px;
  border-radius: 16px;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}

.bc-services__card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.bc-services__card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--bc-blue);
}

.bc-services__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-heading);
  margin-bottom: 12px;
  line-height: 1.3;
}

.bc-services__card-desc {
  font-size: 16px;
  color: var(--bc-text);
  line-height: 1.6;
  margin-bottom: 18px;
}

.bc-services__card-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--bc-blue);
  letter-spacing: 0.04em;
}

.bc-services__card-link:hover {
  text-decoration: underline;
}

.bc-services__cta {
  text-align: center;
  margin-top: 52px;
}

/* ============================================
   AD CTA — Security + Managed IT (split layout)
   ============================================ */
.bc-ad-cta {
  overflow: hidden;
}

.bc-ad-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.bc-ad-cta__content {
  background: var(--bc-light);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bc-ad-cta__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-blue);
  margin-bottom: 20px;
}

.bc-ad-cta__headline {
  font-size: 38px;
  font-weight: 800;
  color: var(--bc-heading);
  line-height: 1.2;
  margin-bottom: 24px;
}

.bc-ad-cta__text {
  font-size: 18px;
  color: var(--bc-text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.bc-ad-cta__text:last-of-type {
  margin-bottom: 40px;
}

.bc-ad-cta__buttons {
  display: flex;
  align-items: center;
  gap: 28px;
}

.bc-ad-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bc-heading);
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.2s;
}

.bc-ad-cta__link:hover {
  opacity: 0.8;
}

.bc-ad-cta__link-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bc-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-white);
  font-size: 18px;
}

.bc-ad-cta__photo {
  background-size: cover;
  background-position: center;
  min-height: 460px;
}

/* ============================================
   6. DARK CALLOUT
   ============================================ */
.bc-callout {
  background: var(--bc-navy);
  padding: 80px 40px;
}

.bc-callout__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bc-callout__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--bc-white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.bc-callout__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bc-callout__tile {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 18px 22px;
  color: var(--bc-white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.bc-callout__tile:hover {
  background: rgba(255,255,255,0.16);
}

/* ============================================
   7. PARTNERS GRID
   ============================================ */
.bc-partners {
  background: var(--bc-white);
  padding: 80px 40px;
  border-top: 1px solid #f0f0f0;
}

.bc-partners__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bc-partners__label {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.bc-partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bc-partners__grid + .bc-partners__grid {
  margin-top: 24px;
}

.bc-partners__card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  background: var(--bc-card-bg);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.bc-partners__card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-color: #d0d8e0;
}

.bc-partners__card-logo {
  max-height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ============================================
   7b. CLIENTS WE'VE HELPED
   ============================================ */
.bc-clients {
  background: var(--bc-white);
  padding: 0 40px 60px;
}

.bc-clients__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.bc-clients__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.bc-clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: nowrap;
}

.bc-clients__logo {
  max-height: 96px;
  width: auto;
  max-width: 256px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: all 0.3s;
}

.bc-clients__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .bc-clients__logos {
    flex-wrap: wrap;
    gap: 32px;
  }

  .bc-clients__logo {
    max-height: 72px;
    max-width: 192px;
  }
}

/* ============================================
   8. WHAT SETS US APART
   ============================================ */
.bc-apart {
  background: var(--bc-light);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.bc-apart__watermark {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  height: 340px;
  width: auto;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.bc-apart__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bc-apart__title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 14px;
}

.bc-apart__desc {
  text-align: center;
  color: #666;
  margin-bottom: 56px;
  font-size: 18px;
  line-height: 1.6;
}

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

.bc-apart__item {
  text-align: center;
}

.bc-apart__item-icon {
  font-size: 40px;
  margin-bottom: 18px;
}

.bc-apart__item-icon svg {
  width: 40px;
  height: 40px;
  color: var(--bc-blue);
  margin: 0 auto;
}

.bc-apart__item-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--bc-heading);
  margin-bottom: 12px;
}

.bc-apart__item-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.bc-apart__buttons {
  text-align: center;
  margin-top: 52px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   9. A PARTNER, NOT A PROVIDER
   ============================================ */
.bc-partner-split {
  background: var(--bc-white);
  overflow: hidden;
}

.bc-partner-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.bc-partner-split__photo {
  background-size: cover;
  background-position: center;
  min-height: 460px;
}

.bc-partner-split__content {
  background: #3a5070;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bc-partner-split__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.bc-partner-split__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--bc-white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.bc-partner-split__text {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 14px;
}

.bc-partner-split__text:last-of-type {
  margin-bottom: 40px;
}

.bc-partner-split__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bc-white);
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.2s;
}

.bc-partner-split__link:hover {
  opacity: 0.8;
}

.bc-partner-split__link-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bc-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--bc-white);
}

/* ============================================
   10. HOW TO GET STARTED
   ============================================ */
.bc-steps {
  background: var(--bc-light);
  padding: 80px 40px;
}

.bc-steps__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bc-steps__title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 14px;
}

.bc-steps__desc {
  text-align: center;
  color: #666;
  margin-bottom: 56px;
  font-size: 18px;
  line-height: 1.6;
}

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

.bc-steps__item {
  text-align: center;
}

.bc-steps__num {
  font-size: 60px;
  font-weight: 900;
  color: #e8f4f8;
  line-height: 1;
  margin-bottom: 18px;
  -webkit-text-stroke: 2px var(--bc-blue);
}

.bc-steps__item-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--bc-heading);
  margin-bottom: 14px;
}

.bc-steps__item-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   11. BLOG PREVIEW
   ============================================ */
.bc-blog {
  background: var(--bc-white);
  padding: 80px 40px;
}

.bc-blog__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bc-blog__title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 52px;
}

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

.bc-blog__card {
  border: 1px solid var(--bc-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bc-white);
}

.bc-blog__card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.bc-blog__card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.bc-blog__card-body {
  padding: 24px;
}

.bc-blog__card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--bc-heading);
  margin-bottom: 12px;
  line-height: 1.4;
}

.bc-blog__card-excerpt {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.bc-blog__card-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--bc-blue);
}

.bc-blog__card-link:hover {
  text-decoration: underline;
}

/* ============================================
   12. FINAL CTA
   ============================================ */
.bc-final-cta {
  position: relative;
  background: linear-gradient(135deg, var(--bc-navy) 0%, var(--bc-navy-dark) 100%);
  padding: 96px 40px;
  overflow: hidden;
}

.bc-final-cta__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 165, 218, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.bc-final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bc-final-cta__text {
  max-width: 560px;
}

.bc-final-cta__text .section-label {
  color: var(--bc-blue);
  margin-bottom: 14px;
  display: inline-block;
}

.bc-final-cta__title {
  font-size: 42px;
  font-weight: 800;
  color: var(--bc-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.bc-final-cta__text-body {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.bc-final-cta .btn-primary {
  font-size: 16px;
  padding: 16px 40px;
}

.bc-final-cta__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 165, 218, 0.25);
  aspect-ratio: 4 / 3;
}

.bc-final-cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-final-cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 46, 79, 0.25) 0%, transparent 50%, rgba(0, 165, 218, 0.15) 100%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .bc-final-cta {
    padding: 64px 24px;
  }
  .bc-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bc-final-cta__media {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .bc-final-cta__title {
    font-size: 32px;
  }
}

/* ============================================
   13. FOOTER
   ============================================ */
.bc-footer {
  background: var(--bc-navy-dark);
  padding: 80px 40px 30px;
  color: rgba(255,255,255,0.7);
}

.bc-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.bc-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.bc-footer__logo-img {
  height: 56px;
  width: auto;
}

.bc-footer__tagline {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.bc-footer__contact-line {
  font-size: 15px;
  line-height: 1.8;
}

.bc-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.bc-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}

.bc-footer__social-link:hover {
  background: var(--bc-blue);
  color: white;
}

.bc-footer__col-title {
  color: var(--bc-white);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
}

.bc-footer__link {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.bc-footer__link:hover {
  color: var(--bc-blue);
}

.bc-footer__contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.bc-footer__contact-link:hover {
  color: var(--bc-blue);
}

.bc-footer__address {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
  font-style: normal;
}

.bc-footer__hours {
  font-size: 15px;
  margin-bottom: 6px;
}

.bc-footer__remote {
  font-size: 15px;
  color: var(--bc-blue);
  margin-top: 10px;
  display: block;
}

.bc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bc-footer__copyright {
  font-size: 14px;
}

.bc-footer__privacy {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.bc-footer__privacy:hover {
  color: var(--bc-blue);
}

/* ============================================
   INTERIOR PAGES
   ============================================ */
.bc-page {
  padding: 80px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.bc-page h1 {
  font-size: 42px;
  margin-bottom: 28px;
}

.bc-page p {
  margin-bottom: 18px;
}

/* ── 404 ── */
.bc-404 {
  padding: 120px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.bc-404 h1 {
  font-size: 80px;
  color: var(--bc-blue);
  margin-bottom: 18px;
}

.bc-404 p {
  font-size: 20px;
  color: var(--bc-text);
  margin-bottom: 36px;
}

/* ============================================
   INNER HERO (shared across interior pages)
   ============================================ */
.bc-inner-hero {
  background: var(--bc-navy);
  padding: 80px 40px;
  text-align: center;
}

.bc-inner-hero .section-label {
  color: rgba(0, 165, 218, 0.9);
  margin-bottom: 16px;
}

.bc-inner-hero__title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: var(--bc-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.bc-inner-hero__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   CTA BANNER (shared bottom section)
   ============================================ */
.bc-cta-banner {
  background: var(--bc-navy);
  padding: 80px 40px;
  text-align: center;
}

.section-label--white {
  color: rgba(0, 165, 218, 0.9);
}

.bc-cta-banner__title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--bc-white);
  margin-bottom: 16px;
}

.bc-cta-banner__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.bc-cta-banner__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE: SERVICES (page-services.php)
   ============================================ */

/* — Services Hero enhancements — */

/* Idaho watermark — bottom-left of hero white space */
.bc-hero__idaho-watermark {
  position: absolute;
  left: 30px;
  bottom: 140px;
  width: 264px;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
}

.bc-hero--services .bc-hero__idaho-watermark {
  bottom: 140px;
}

/* Google review card — glassmorphism, positioned over the photo */
.bc-hero__review {
  position: absolute;
  left: 50%;
  bottom: 140px;
  z-index: 3;
  width: 340px;
  background: rgba(15, 30, 51, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 24px 22px;
  color: var(--bc-white);
}

.bc-hero__review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.bc-hero__review-stars {
  font-size: 18px;
  color: #f59e0b;
  letter-spacing: 2px;
}

.bc-hero__review-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.bc-hero__review-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 16px;
  font-style: italic;
}

.bc-hero__review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bc-hero__review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--bc-white);
}

.bc-hero__review-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.bc-hero__review-g {
  flex-shrink: 0;
}

/* — Stats Strip — */
.bc-svc-stats-strip {
  background: var(--bc-white);
  border-bottom: 1px solid #e8edf2;
  padding: 0 40px;
}

.bc-svc-stats-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-svc-stats-strip__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 20px;
  text-align: center;
}

.bc-svc-stats-strip__num {
  font-size: 38px;
  font-weight: 800;
  color: var(--bc-blue);
  line-height: 1;
  margin-bottom: 6px;
}

.bc-svc-stats-strip__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bc-svc-stats-strip__divider {
  width: 1px;
  height: 48px;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* — Services Overview Grid — */
.bc-svc-overview {
  padding: 80px 40px;
  background: var(--bc-light);
}

.bc-svc-overview__inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.bc-svc-overview__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 14px;
}

.bc-svc-overview__desc {
  font-size: 16px;
  color: var(--bc-text);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 48px;
}

.bc-svc-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bc-svc-overview__card {
  background: var(--bc-white);
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 32px 24px 28px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bc-svc-overview__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(24, 46, 79, 0.10);
  border-color: rgba(0, 165, 218, 0.3);
}

.bc-svc-overview__card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
}

.bc-svc-overview__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bc-svc-overview__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--bc-heading);
  margin-bottom: 8px;
}

.bc-svc-overview__card p {
  font-size: 14px;
  color: var(--bc-text);
  line-height: 1.65;
  margin-bottom: 12px;
  flex-grow: 1;
}

.bc-svc-overview__card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-blue);
}

/* — Service Deep-Dive Sections — */
.bc-svc-section {
  padding: 80px 40px;
}

.bc-svc-section--white {
  background: var(--bc-white);
}

.bc-svc-section--light {
  background: var(--bc-light);
}

.bc-svc-section__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.bc-svc-section__inner--reverse {
  grid-template-columns: 1fr 320px;
}

.bc-svc-section__inner--reverse .bc-svc-section__media {
  order: 2;
}

.bc-svc-section__inner--reverse .bc-svc-section__content {
  order: 1;
}

.bc-svc-section__img-wrap {
  background: rgba(0, 165, 218, 0.05);
  border: 1px solid rgba(0, 165, 218, 0.1);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.bc-svc-section__img-wrap img {
  width: 100%;
  max-width: 240px;
  height: auto;
}

/* Photo-style image wrap — full bleed with drop shadow */
.bc-svc-section__img-wrap--photo {
  background: none;
  border: none;
  padding: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(24, 46, 79, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.bc-svc-section__img-wrap--photo img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  min-height: 280px;
}

/* — LoRa section collage layout (ag-tech page) — */
.bc-svc-section__inner--collage {
  grid-template-columns: minmax(380px, 460px) 1fr;
  gap: 80px;
  max-width: 1180px;
}

.bc-lora-collage {
  position: relative;
  padding: 0 40px 70px 0;
}

.bc-lora-collage__primary {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(24, 46, 79, 0.22),
    0 10px 24px rgba(0, 0, 0, 0.08);
  transform: rotate(-1.2deg);
  transition: transform 0.4s ease;
  background: var(--bc-white);
}

.bc-lora-collage__primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.bc-lora-collage__primary img {
  width: 100%;
  height: auto;
  display: block;
}

.bc-lora-collage__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(24, 46, 79, 0.28),
    0 0 0 6px var(--bc-light);
  transform: rotate(2.5deg);
  transition: transform 0.4s ease;
  z-index: 2;
}

.bc-lora-collage__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc-lora-collage:hover .bc-lora-collage__primary {
  transform: rotate(-1.2deg) translateY(-3px);
}

.bc-lora-collage:hover .bc-lora-collage__secondary {
  transform: rotate(2.5deg) translateY(-3px);
}

.bc-svc-section__content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 14px;
  line-height: 1.2;
}

.bc-svc-section__lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--bc-heading);
  line-height: 1.6;
  margin-bottom: 14px;
}

.bc-svc-section__content > p:not(.bc-svc-section__lead) {
  font-size: 16px;
  color: var(--bc-text);
  line-height: 1.8;
  margin-bottom: 24px;
}

.bc-svc-section__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bc-svc-section__content ul li {
  font-size: 15px;
  color: var(--bc-text);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.bc-svc-section__content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bc-blue);
  font-weight: 700;
  font-size: 16px;
}

/* — Mid-page dark CTA — */
.bc-svc-dark-cta {
  background: linear-gradient(135deg, #182e4f 0%, #0f1e33 100%);
  padding: 80px 40px;
}

.bc-svc-dark-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bc-svc-dark-cta__text h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--bc-white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.bc-svc-dark-cta__text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.bc-svc-dark-cta__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bc-svc-dark-cta__tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  color: var(--bc-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.bc-svc-dark-cta__tile:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* — Automated Protection Suite — */
.bc-svc-aps {
  padding: 80px 40px;
  background: var(--bc-light);
  text-align: center;
}

.bc-svc-aps__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bc-svc-aps__title {
  font-size: 34px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 10px;
}

.bc-svc-aps__subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--bc-blue);
  margin-bottom: 16px;
}

.bc-svc-aps__desc {
  font-size: 16px;
  color: var(--bc-text);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 48px;
}

.bc-svc-aps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.bc-svc-aps__card {
  background: var(--bc-white);
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 36px 28px;
}

.bc-svc-aps__card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 165, 218, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bc-svc-aps__card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--bc-blue);
}

.bc-svc-aps__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-heading);
  margin-bottom: 10px;
}

.bc-svc-aps__card p {
  font-size: 15px;
  color: var(--bc-text);
  line-height: 1.7;
}

/* — Partners strip (compact) — */
.bc-svc-partners {
  padding: 48px 40px;
  background: var(--bc-white);
  border-top: 1px solid #e8edf2;
  border-bottom: 1px solid #e8edf2;
}

.bc-svc-partners__inner {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.bc-svc-partners__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bc-text);
  margin-bottom: 24px;
}

.bc-svc-partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.bc-svc-partners__logos img {
  height: 64px;
  width: auto;
  opacity: 1;
  filter: none;
}

/* — Final CTA (services page) — */
.bc-svc-final-cta {
  background: linear-gradient(135deg, #182e4f 0%, #0f1e33 100%);
  padding: 80px 40px;
}

.bc-svc-final-cta__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.bc-svc-final-cta__text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--bc-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.bc-svc-final-cta__text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 480px;
}

.bc-svc-final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.bc-svc-final-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-white);
  text-decoration: none;
  transition: color 0.2s;
}

.bc-svc-final-cta__phone svg {
  color: var(--bc-blue);
}

.bc-svc-final-cta__phone:hover {
  color: var(--bc-blue);
}

/* ── Reusable section watermark ── */
.bc-section-watermark {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  height: 340px;
  width: auto;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

/* ── Testimonial strip ── */
.bc-testimonial-strip {
  padding: 48px 0;
  background: var(--bc-white);
}

.bc-testimonial-strip--featured {
  padding: 56px 40px;
  background: var(--bc-white);
}

.bc-testimonial-strip__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.bc-testimonial-strip--featured .bc-testimonial-strip__inner {
  background: var(--bc-light);
  border: 1px solid var(--bc-border);
  border-radius: 16px;
  padding: 44px 48px;
  max-width: 860px;
}

.bc-testimonial-strip__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.bc-testimonial-strip__stars {
  font-size: 24px;
  color: var(--bc-star);
  letter-spacing: 4px;
}

.bc-testimonial-strip__quote {
  font-size: 22px;
  font-weight: 600;
  color: var(--bc-navy);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 24px;
}

.bc-testimonial-strip__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bc-testimonial-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--bc-border);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-text);
}

.bc-testimonial-strip__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 165, 218, 0.08);
  border: 1px solid rgba(0, 165, 218, 0.2);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-blue);
}

/* ============================================
   PAGE: MANAGED SECURITY (page-managed-security.php)
   ============================================ */

/* — 5-column overview grid variant — */
.bc-svc-overview__grid--5col {
  grid-template-columns: repeat(5, 1fr);
}

.bc-svc-overview__card--static {
  cursor: default;
}

.bc-svc-overview__card--static:hover {
  transform: none;
  box-shadow: none;
}

/* — Unified tool section (Huntress / ESET) — */
.bc-sec-tool {
  padding: 80px 40px;
}

.bc-sec-tool--light {
  background: var(--bc-light);
}

.bc-sec-tool--white {
  background: var(--bc-white);
}

.bc-sec-tool__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header: side-by-side intro + illustration */
.bc-sec-tool__header {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 56px;
}

.bc-sec-tool__header--centered {
  display: block;
  text-align: center;
}

.bc-sec-tool__intro {
  flex: 1;
}

.bc-sec-tool__intro--centered {
  max-width: 760px;
  margin: 0 auto;
}

.bc-sec-tool__logo {
  max-height: 56px;
  width: auto;
  margin-bottom: 24px;
}

.bc-sec-tool__header--centered .bc-sec-tool__logo {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.bc-sec-tool__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--bc-heading);
  line-height: 1.2;
  margin-bottom: 16px;
}

.bc-sec-tool__lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--bc-heading);
  line-height: 1.6;
  margin-bottom: 12px;
}

.bc-sec-tool__desc {
  font-size: 15px;
  color: var(--bc-text);
  line-height: 1.7;
}

.bc-sec-tool__illustration {
  flex-shrink: 0;
  width: 280px;
}

.bc-sec-tool__illustration--lg {
  width: 360px;
}

.bc-sec-tool__illustration img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* SVG icons inside feature-num */
.bc-sec-tool__feature-num svg {
  color: var(--bc-blue);
}

/* Features: row-based grid (4 top, 3 bottom) */
.bc-sec-tool__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.bc-sec-tool__features-row {
  display: grid;
  gap: 24px;
}

.bc-sec-tool__features-row--4 {
  grid-template-columns: repeat(4, 1fr);
}

.bc-sec-tool__features-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.bc-sec-tool__feature {
  background: var(--bc-white);
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bc-sec-tool--white .bc-sec-tool__feature {
  background: var(--bc-light);
}

.bc-sec-tool__feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.bc-sec-tool__feature-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--bc-blue);
  line-height: 1;
  margin-bottom: 12px;
}

.bc-sec-tool__feature h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bc-heading);
  margin-bottom: 8px;
}

.bc-sec-tool__feature p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--bc-text);
}

.bc-sec-tool__cta {
  text-align: center;
}

/* — Security page responsive — */
@media (max-width: 1024px) {
  .bc-svc-overview__grid--5col {
    grid-template-columns: repeat(3, 1fr);
  }

  .bc-sec-tool__features-row--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-sec-tool__features-row--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-sec-tool__illustration {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .bc-svc-overview__grid--5col {
    grid-template-columns: 1fr;
  }

  .bc-sec-tool {
    padding: 48px 20px;
  }

  .bc-sec-tool__header {
    flex-direction: column;
    text-align: center;
  }

  .bc-sec-tool__illustration {
    width: 200px;
  }

  .bc-sec-tool__title {
    font-size: 26px;
  }

  .bc-sec-tool__features-row--4,
  .bc-sec-tool__features-row--3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PAGE: REVIEWS (page-reviews.php)
   ============================================ */

/* Reviews hero */
.bc-reviews-hero {
  position: relative;
  padding: 120px 40px 70px;
  text-align: center;
  overflow: hidden;
}

.bc-reviews-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bc-reviews-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 46, 79, 0.88) 0%, rgba(24, 46, 79, 0.75) 100%);
}

.bc-reviews-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.bc-reviews-hero__title {
  font-size: 46px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  line-height: 1.15;
}

.bc-reviews-hero__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

.bc-reviews-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 12px 28px;
}

.bc-reviews-hero__stars {
  font-size: 20px;
  color: var(--bc-star);
  letter-spacing: 2px;
}

.bc-reviews-hero__rating {
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.bc-reviews-hero__rating-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Reviews grid */
.bc-reviews-grid {
  background: var(--bc-light);
  padding: 60px 40px 80px;
}

.bc-reviews-grid__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bc-reviews-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bc-reviews-grid__card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 10px;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.bc-reviews-grid__card:hover {
  box-shadow: 0 8px 24px rgba(24, 46, 79, 0.1);
  transform: translateY(-2px);
}

.bc-reviews-grid__stars {
  font-size: 18px;
  color: var(--bc-star);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.bc-reviews-grid__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--bc-text);
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}

.bc-reviews-grid__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bc-border);
  padding-top: 16px;
}

.bc-reviews-grid__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bc-reviews-grid__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--bc-heading);
}

.bc-reviews-grid__company {
  font-size: 13px;
  color: var(--bc-blue);
  font-weight: 500;
}

.bc-reviews-grid__g {
  flex-shrink: 0;
  opacity: 0.5;
}

/* Pagination */
.bc-reviews-grid__pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.bc-reviews-grid__page-link {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--bc-border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-text);
  background: white;
  text-decoration: none;
  transition: all 0.2s;
}

.bc-reviews-grid__page-link:hover {
  border-color: var(--bc-blue);
  color: var(--bc-blue);
}

.bc-reviews-grid__page-link--active {
  background: var(--bc-blue);
  border-color: var(--bc-blue);
  color: white;
}

@media (max-width: 900px) {
  .bc-reviews-grid__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-reviews-hero__title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .bc-reviews-grid__cards {
    grid-template-columns: 1fr;
  }

  .bc-reviews-hero {
    padding: 100px 24px 50px;
  }

  .bc-reviews-hero__title {
    font-size: 30px;
  }
}

/* ============================================
   PAGE: TERMS & CONDITIONS (page-terms-conditions.php)
   ============================================ */

/* Legal hero */
.bc-legal-hero {
  background: var(--bc-navy);
  padding: 100px 40px 60px;
  text-align: center;
}

.bc-legal-hero__title {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}

.bc-legal-hero__updated {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

/* Legal content */
.bc-legal {
  background: var(--bc-white);
  padding: 60px 40px 80px;
}

.bc-legal__inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Table of contents */
.bc-legal__toc {
  background: var(--bc-light);
  border: 1px solid var(--bc-border);
  border-radius: 10px;
  padding: 32px 36px;
  margin-bottom: 48px;
}

.bc-legal__toc-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 16px;
}

.bc-legal__toc-list {
  padding-left: 20px;
  margin: 0;
  columns: 2;
  column-gap: 32px;
}

.bc-legal__toc-list li {
  font-size: 14px;
  line-height: 2;
  color: var(--bc-text);
  break-inside: avoid;
}

.bc-legal__toc-list li a {
  color: var(--bc-blue);
  text-decoration: none;
}

.bc-legal__toc-list li a:hover {
  text-decoration: underline;
}

/* Sections */
.bc-legal__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--bc-border);
}

.bc-legal__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bc-legal__section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 16px;
  line-height: 1.3;
}

.bc-legal__section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-heading);
  margin: 24px 0 12px;
}

.bc-legal__section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--bc-text);
  margin-bottom: 16px;
}

.bc-legal__section p:last-child {
  margin-bottom: 0;
}

.bc-legal__section ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.bc-legal__section ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--bc-text);
  margin-bottom: 6px;
}

.bc-legal__section a {
  color: var(--bc-blue);
  text-decoration: none;
}

.bc-legal__section a:hover {
  text-decoration: underline;
}

/* Contact address block */
.bc-legal__contact {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
  color: var(--bc-text);
}

.bc-legal__contact strong {
  color: var(--bc-heading);
}

@media (max-width: 768px) {
  .bc-legal-hero__title {
    font-size: 32px;
  }

  .bc-legal__toc-list {
    columns: 1;
  }
}

/* ============================================
   AG TECH — Full-bleed 50/50 split sections
   ============================================ */
.bc-ag-split {
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

.bc-ag-split--light {
  background: var(--bc-light);
}

.bc-ag-split__photo {
  width: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.bc-ag-split__content {
  width: 50%;
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.bc-ag-split__content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 14px;
  line-height: 1.3;
}

.bc-ag-split__content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--bc-text);
  margin-bottom: 14px;
}

.bc-ag-split__content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.bc-ag-split__content ul li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--bc-text);
  margin-bottom: 4px;
}

/* Size variants */
.bc-ag-split--40 .bc-ag-split__photo {
  width: 40%;
}

.bc-ag-split--40 .bc-ag-split__content {
  width: 60%;
  padding: 60px 64px;
  align-items: flex-start;
}

.bc-ag-split__content--left {
  align-items: center !important;
}

.bc-ag-split__content--left > * {
  max-width: 520px;
  width: 100%;
}

/* B logo watermark */
.bc-ag-split--has-watermark {
  position: relative;
  overflow: hidden;
}

.bc-ag-split__watermark {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
}

.bc-ag-split--35 .bc-ag-split__photo {
  width: 35%;
}

.bc-ag-split--35 .bc-ag-split__content {
  width: 65%;
  padding: 60px 64px;
  align-items: center;
}

.bc-ag-split--35 .bc-ag-split__content > * {
  max-width: 520px;
  width: 100%;
}

/* Reverse: photo on right */
.bc-ag-split--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .bc-ag-split,
  .bc-ag-split--reverse {
    flex-direction: column;
    min-height: auto;
  }

  .bc-ag-split__photo {
    width: 100%;
    min-height: 280px;
  }

  .bc-ag-split--40 .bc-ag-split__photo,
  .bc-ag-split--35 .bc-ag-split__photo {
    width: 100%;
  }

  .bc-ag-split__content,
  .bc-ag-split--40 .bc-ag-split__content,
  .bc-ag-split--35 .bc-ag-split__content {
    width: 100%;
    padding: 40px 24px;
  }

  .bc-ag-split__content h2 {
    font-size: 26px;
  }

  .bc-ag-split__watermark {
    display: none;
  }

  /* Service detail sections */
  .bc-svc-section {
    padding: 48px 20px;
  }

  .bc-svc-section__inner,
  .bc-svc-section__inner--reverse,
  .bc-svc-section__inner--collage {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bc-svc-section__inner--reverse .bc-svc-section__media {
    order: 0;
  }

  .bc-svc-section__inner--reverse .bc-svc-section__content {
    order: 0;
  }

  /* LoRa collage stacks cleanly on mobile */
  .bc-lora-collage {
    padding: 0 0 24px 0;
    max-width: 520px;
    margin: 0 auto;
  }

  .bc-lora-collage__primary {
    transform: rotate(-0.8deg);
  }

  .bc-lora-collage__secondary {
    position: relative;
    right: auto;
    bottom: auto;
    width: 70%;
    margin: -40px 0 0 auto;
    transform: rotate(1.8deg);
  }

  .bc-lora-collage:hover .bc-lora-collage__primary {
    transform: rotate(-0.8deg) translateY(-3px);
  }

  .bc-lora-collage:hover .bc-lora-collage__secondary {
    transform: rotate(1.8deg) translateY(-3px);
  }

  .bc-svc-section__content h2 {
    font-size: 26px;
  }

  .bc-svc-section__img-wrap {
    padding: 24px;
  }

  .bc-svc-section__img-wrap--photo img {
    min-height: 220px;
  }

  /* Dark CTA */
  .bc-svc-dark-cta {
    padding: 48px 20px;
  }

  .bc-svc-dark-cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bc-svc-dark-cta__text h2 {
    font-size: 24px;
  }

  .bc-svc-dark-cta__tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Partners strip */
  .bc-svc-partners {
    padding: 36px 20px;
  }

  .bc-svc-partners__logos {
    gap: 20px;
  }

  .bc-svc-partners__logos img {
    height: 44px;
  }

  /* Final CTA */
  .bc-svc-final-cta {
    padding: 48px 20px;
  }

  .bc-svc-final-cta__inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .bc-svc-final-cta__text h2 {
    font-size: 28px;
  }

  .bc-svc-final-cta__text p {
    max-width: none;
  }

  /* Testimonial strip */
  .bc-testimonial-strip__quote {
    font-size: 18px;
  }

  .bc-testimonial-strip--featured {
    padding: 40px 20px;
  }

  .bc-testimonial-strip--featured .bc-testimonial-strip__inner {
    padding: 32px 24px;
  }
}

/* ============================================
   PAGE: MSP (page-msp.php)
   ============================================ */
.bc-msp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.bc-msp-compare-card {
  border-radius: 10px;
  padding: 36px;
  border: 1px solid var(--bc-border);
}

.bc-msp-compare-card--bad {
  background: #fafafa;
}

.bc-msp-compare-card--good {
  background: rgba(0, 165, 218, 0.05);
  border-color: rgba(0, 165, 218, 0.3);
}

.bc-msp-compare-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 20px;
}

.bc-msp-compare-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bc-msp-compare-card__list li {
  font-size: 18px;
  color: var(--bc-text);
  line-height: 1.6;
}

.bc-msp-tiers {
  background: var(--bc-white);
  padding: 80px 40px;
  text-align: center;
}

.bc-msp-tiers__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bc-msp-tiers__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 12px;
}

.bc-msp-tiers__desc {
  font-size: 17px;
  color: var(--bc-text);
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.bc-msp-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.bc-msp-tier-card {
  background: var(--bc-light);
  border: 1px solid var(--bc-card-border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.bc-msp-tier-card--featured {
  background: var(--bc-white);
  border-color: var(--bc-blue);
  box-shadow: 0 8px 32px rgba(0, 165, 218, 0.14);
}

.bc-msp-tier-card__badge {
  background: var(--bc-blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}

.bc-msp-tier-card__header {
  padding: 28px 28px 0;
}

.bc-msp-tier-card__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--bc-heading);
  margin-bottom: 6px;
}

.bc-msp-tier-card__tagline {
  font-size: 14px;
  color: var(--bc-blue);
  font-weight: 600;
}

.bc-msp-tier-card__body {
  padding: 20px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bc-msp-tier-card__desc {
  font-size: 14px;
  color: var(--bc-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bc-msp-tier-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bc-msp-tier-card__list li {
  font-size: 14px;
  color: var(--bc-text);
  line-height: 1.5;
}

.bc-msp-tier-card__cta {
  display: block;
  text-align: center;
}

.bc-msp-tiers__note {
  font-size: 14px;
  color: var(--bc-text);
  max-width: 600px;
  margin: 32px auto 0;
  text-align: center;
  font-style: italic;
}

/* ============================================
   PAGE: CONTACT (page-contact.php)
   ============================================ */

/* ── Contact Hero ── */
.bc-contact-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.bc-contact-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}

.bc-contact-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 46, 79, 0.55) 0%, rgba(24, 46, 79, 0.4) 100%);
}

.bc-contact-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 40px 0;
}

.bc-contact-hero__badge {
  display: inline-block;
  background: rgba(0, 165, 218, 0.2);
  border: 1px solid rgba(0, 165, 218, 0.4);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.bc-contact-hero__title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--bc-white);
  line-height: 1.15;
}

/* ── Visit Our Office ── */
.bc-contact-office {
  background: var(--bc-white);
  padding: 80px 40px;
}

.bc-contact-office__heading {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--bc-blue);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.bc-contact-office__sub {
  text-align: center;
  font-size: 16px;
  color: var(--bc-text);
  margin-bottom: 48px;
}

.bc-contact-office__card {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bc-white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(24, 46, 79, 0.1);
  overflow: hidden;
  border: 1px solid var(--bc-card-border);
}

.bc-contact-office__info {
  padding: 40px;
}

.bc-contact-office__map {
  min-height: 360px;
}

.bc-contact-office__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Contact blocks (shared) */
.bc-contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.bc-contact-block--phone {
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bc-card-border);
}

.bc-contact-block__icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 165, 218, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bc-contact-block__icon svg {
  width: 22px;
  height: 22px;
  color: var(--bc-blue);
}

.bc-contact-block__phone-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--bc-heading);
  text-decoration: none;
}

.bc-contact-block__phone-number:hover {
  color: var(--bc-blue);
}

.bc-contact-block__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-heading);
  margin-bottom: 4px;
}

.bc-contact-block__value {
  font-size: 15px;
  color: var(--bc-text);
  line-height: 1.6;
  display: block;
}

a.bc-contact-block__value {
  color: var(--bc-heading);
  font-weight: 600;
  text-decoration: none;
}

a.bc-contact-block__value:hover {
  color: var(--bc-blue);
}

.bc-contact-block__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-blue);
  text-decoration: none;
  margin-top: 4px;
  display: inline-block;
}

.bc-contact-block__link:hover {
  text-decoration: underline;
}

/* ── IT Support Stats Section (on contact page) ── */
/* ── Contact IT Support Section ── */
.bc-contact-support {
  background: var(--bc-light);
  padding: 80px 40px;
}

.bc-contact-support__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--bc-heading);
  text-align: center;
  margin-bottom: 48px;
}

.bc-contact-support__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bc-contact-support__desc {
  font-size: 16px;
  color: var(--bc-text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.bc-contact-support__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bc-contact-support__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bc-contact-support__point-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bc-contact-support__point-icon svg {
  width: 26px;
  height: 26px;
  color: var(--bc-blue);
}

.bc-contact-support__point span {
  font-size: 15px;
  color: var(--bc-text);
  line-height: 1.6;
}

.bc-contact-support__image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(24, 46, 79, 0.18), 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ── Contact page responsive ── */
@media (max-width: 768px) {
  .bc-contact-hero {
    min-height: 280px;
  }

  .bc-contact-hero__inner {
    padding: 32px 20px 0;
  }

  .bc-contact-hero__badge {
    font-size: 11px;
    padding: 6px 16px;
  }

  .bc-contact-office {
    padding: 48px 20px;
  }

  .bc-contact-office__heading {
    font-size: 28px;
  }

  .bc-contact-office__sub {
    margin-bottom: 32px;
  }

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

  .bc-contact-office__info {
    padding: 28px 20px;
  }

  .bc-contact-office__map {
    min-height: 260px;
  }

  .bc-contact-block__phone-number {
    font-size: 20px;
  }

  .bc-contact-block__icon {
    width: 38px;
    height: 38px;
  }

  .bc-contact-block__icon svg {
    width: 18px;
    height: 18px;
  }

  .bc-contact-block {
    gap: 12px;
    margin-bottom: 22px;
  }

  .bc-contact-support {
    padding: 48px 20px;
  }

  .bc-contact-support__title {
    font-size: 26px;
  }

  .bc-contact-support__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bc-contact-support__point span {
    font-size: 14px;
  }
}

/* ============================================
   BLOG INDEX (archive.php)
   ============================================ */

/* Blog hero banner */
.bc-blog-hero {
  position: relative;
  padding: 115px 40px 100px;
  text-align: center;
  overflow: hidden;
}

.bc-blog-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bc-blog-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 46, 79, 0.75) 0%, rgba(24, 46, 79, 0.6) 100%);
}

.bc-blog-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bc-blog-hero__title {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.bc-blog-hero__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* Blog pagination (archive page) */
.bc-blog__pagination {
  margin-top: 52px;
  display: flex;
  justify-content: center;
}

.bc-blog__pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.bc-blog__pagination a,
.bc-blog__pagination span {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid var(--bc-border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-text);
  background: white;
  transition: all 0.2s;
}

.bc-blog__pagination a:hover {
  border-color: var(--bc-blue);
  color: var(--bc-blue);
}

.bc-blog__pagination .current {
  background: var(--bc-blue);
  border-color: var(--bc-blue);
  color: white;
}

.bc-blog__empty {
  text-align: center;
  padding: 60px 0;
}

.bc-blog__empty p {
  font-size: 17px;
  color: var(--bc-text);
  margin-bottom: 24px;
}

/* ============================================
   SINGLE POST (single.php)
   ============================================ */

/* Post hero with featured image */
.bc-post-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bc-post-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bc-post-hero__bg--fallback {
  background: linear-gradient(135deg, var(--bc-navy) 0%, #2a5a8c 100%);
}

.bc-post-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 46, 79, 0.6);
}

.bc-post-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 80px 40px 48px;
  width: 100%;
}

.bc-post-hero__title {
  font-size: 38px;
  font-weight: 800;
  color: white;
  line-height: 1.25;
}

/* Inline CTA bar below hero */
.bc-post-cta {
  background: var(--bc-light);
  border-bottom: 1px solid var(--bc-border);
}

.bc-post-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bc-post-cta__text p {
  font-size: 28px;
  font-weight: 700;
  color: var(--bc-heading);
  margin: 0;
  line-height: 1.3;
}

.bc-post-cta__inner .btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Post content */
.bc-post {
  background: var(--bc-white);
  padding: 60px 0 80px;
}

.bc-post__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.bc-post__content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--bc-text);
}

.bc-post__content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--bc-heading);
  margin: 40px 0 16px;
}

.bc-post__content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--bc-heading);
  margin: 32px 0 12px;
}

.bc-post__content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-heading);
  margin: 28px 0 10px;
}

.bc-post__content p {
  margin-bottom: 20px;
}

.bc-post__content ul,
.bc-post__content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.bc-post__content li {
  margin-bottom: 8px;
}

.bc-post__content a {
  color: var(--bc-blue);
  text-decoration: underline;
}

.bc-post__content a:hover {
  color: var(--bc-navy);
}

.bc-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 28px 0;
}

.bc-post__content blockquote {
  border-left: 4px solid var(--bc-blue);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--bc-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.bc-post__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
}

.bc-post__content th,
.bc-post__content td {
  padding: 12px 16px;
  border: 1px solid var(--bc-border);
  text-align: left;
}

.bc-post__content th {
  background: var(--bc-light);
  font-weight: 700;
  color: var(--bc-heading);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .bc-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .bc-ad-cta__photo {
    min-height: 360px;
  }

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

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

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

  /* archive grid 2-col at tablet */

  .bc-blog-hero__title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  /* — Nav mobile — */
  .bc-nav {
    padding: 0 16px;
    height: 60px;
  }

  .bc-nav__logo-img {
    height: 48px;
    max-width: 220px;
  }

  .bc-nav__links {
    display: none;
  }

  .bc-nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bc-white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    padding: 8px 20px 16px;
    gap: 0;
    z-index: 99;
  }

  .bc-nav__links--open li {
    padding: 14px 0;
    border-bottom: 1px solid #e8edf2;
    list-style: none;
  }

  .bc-nav__links--open li:last-child {
    border-bottom: none;
  }

  .bc-nav__links--open a {
    font-size: 17px;
    font-weight: 600;
    display: block;
    color: var(--bc-navy);
  }

  /* Mobile submenu — tap-to-expand accordion */
  .bc-nav__links--open .menu-item-has-children {
    position: relative;
    padding-right: 48px;
  }

  .bc-nav__links--open .menu-item-has-children > a::after {
    display: none;
  }

  .bc-nav__links--open .menu-item-has-children > a {
    display: inline-block;
  }

  .bc-nav__links--open .bc-nav__submenu-toggle {
    display: flex;
    position: absolute;
    top: 8px;
    right: 0;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--bc-navy);
    transition: transform 0.25s ease;
  }

  .bc-nav__links--open .menu-item-has-children.is-open > .bc-nav__submenu-toggle {
    transform: rotate(180deg);
  }

  .bc-nav__links--open .sub-menu {
    display: none;
    list-style: none;
    padding: 6px 0 0 14px;
    margin: 10px 0 -4px 0;
    border-left: 2px solid rgba(0, 165, 218, 0.3);
    background: transparent;
    position: static;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    border-top: none;
    border-right: none;
    border-bottom: none;
  }

  .bc-nav__links--open .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }

  .bc-nav__links--open .sub-menu li {
    padding: 10px 0;
    border-bottom: none;
  }

  .bc-nav__links--open .sub-menu a {
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    color: var(--bc-text);
  }

  .bc-nav__links--open .bc-nav__mobile-cta {
    display: block;
    padding: 16px 0 4px;
    border-bottom: none;
  }

  .bc-nav__links--open .bc-nav__mobile-contact {
    display: block;
    text-align: center;
    width: 100%;
    padding: 16px;
    font-size: 17px;
    color: var(--bc-white) !important;
    border-radius: 6px;
  }

  .bc-nav__cta {
    gap: 10px;
  }

  .bc-nav__contact-btn {
    display: none;
  }

  .bc-nav__phone {
    display: none;
  }

  .bc-nav__hamburger {
    display: flex;
    align-items: center;
  }

  /* — Hero mobile — */
  .bc-hero {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 20px;
  }

  .bc-hero__bg {
    background-position: center top !important;
  }

  .bc-hero__gradient {
    background: linear-gradient(to bottom,
      #ffffff 0%,
      #ffffff 30%,
      rgba(255,255,255,0.92) 45%,
      rgba(255,255,255,0.55) 65%,
      rgba(255,255,255,0.3) 100%);
    z-index: 1;
  }

  .bc-hero__content {
    padding: 32px 20px 0;
    align-items: flex-start;
    flex-direction: column;
    z-index: 3;
    order: 1;
  }

  .bc-hero__text {
    max-width: 100%;
  }

  .bc-hero__headline {
    margin-bottom: 20px;
  }

  .bc-hero__headline span {
    font-size: 50px;
    line-height: 0.92;
  }

  .bc-hero__subhead {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .bc-hero__buttons {
    flex-direction: column;
    gap: 10px;
  }

  .bc-hero__buttons a {
    text-align: center;
    width: 100%;
  }

  .bc-hero__buttons .btn-outline-dark {
    background: var(--bc-navy);
    color: var(--bc-white);
    border-color: var(--bc-navy);
  }

  .bc-hero__idaho-watermark {
    position: relative;
    left: auto;
    bottom: auto;
    width: 200px;
    margin: 20px auto 20px;
    opacity: 1;
    z-index: 3;
    transform: none;
    order: 2;
  }

  /* — Container padding — */
  .bc-container,
  .bc-container--narrow {
    padding: 0 20px;
  }

  /* — Section padding reductions — */
  .bc-stats,
  .bc-reviews,
  .bc-services,
  .bc-apart,
  .bc-steps,
  .bc-blog-section,
  .bc-callout,
  .bc-partners {
    padding: 48px 20px;
  }

  .bc-stats__split {
    flex-direction: column;
    min-height: auto;
  }

  .bc-stats__media {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .bc-stats__team {
    max-height: 380px;
  }

  .bc-stats__media {
    display: block;
  }

  .bc-stats__slider {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    aspect-ratio: 1638 / 1060;
    border-radius: 0;
  }

  .bc-stats__slide {
    background-size: cover;
    background-position: center;
  }

  .bc-stats__content {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
  }

  .bc-stats__title-main {
    font-size: 28px;
  }

  .bc-stats__title-sub {
    font-size: 18px;
  }

  .bc-apart__watermark {
    display: none;
  }

  .bc-stats__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 300px;
  }

  .bc-reviews__title {
    font-size: 26px;
  }

  .bc-reviews__grid {
    flex-direction: column;
    align-items: center;
  }

  .bc-reviews__card {
    max-width: 100%;
  }

  .bc-services__title,
  .bc-apart__title,
  .bc-steps__title,
  .bc-blog__title {
    font-size: 28px;
  }

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

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

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

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

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

  .bc-ad-cta__content {
    padding: 48px 28px;
  }

  .bc-ad-cta__headline {
    font-size: 30px;
  }

  .bc-ad-cta__photo {
    min-height: 300px;
  }

  .bc-ad-cta__buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

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

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

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

  .bc-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .bc-partner-split__content {
    padding: 48px 24px;
  }

  .bc-partner-split__title {
    font-size: 28px;
  }

  .bc-final-cta {
    padding: 48px 20px;
  }

  .bc-final-cta__title {
    font-size: 28px;
  }

  /* — Services hero: stack watermark + review below text on mobile — */
  .bc-hero--services {
    flex-direction: column;
    min-height: auto;
  }

  .bc-hero--services .bc-hero__idaho-watermark {
    position: relative;
    display: block;
    width: 100%;
    max-width: 200px;
    opacity: 1;
    margin: 20px auto 0;
    order: 2;
    left: auto;
    bottom: auto;
  }

  .bc-hero--services .bc-hero__review {
    position: static;
    display: block;
    width: calc(100% - 40px);
    max-width: 400px;
    margin: 0 auto 24px;
    left: auto;
    bottom: auto;
    order: 11;
    background: rgba(15, 30, 51, 0.85);
  }

  .bc-hero--services .bc-hero__content {
    order: 1;
    padding-bottom: 16px;
  }

  /* — Floating mobile CTA bar — */
  .bc-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  }

  .bc-mobile-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: var(--bc-white);
  }

  .bc-mobile-cta__btn--call {
    background: var(--bc-blue);
    width: 100%;
  }

  /* Bottom padding so floating bar doesn't overlap footer content */
  body {
    padding-bottom: 56px;
  }

  .bc-svc-stats-strip {
    padding: 0 20px;
  }

  .bc-svc-stats-strip__inner {
    flex-wrap: wrap;
  }

  .bc-svc-stats-strip__item {
    flex: 0 0 50%;
    padding: 24px 16px;
  }

  .bc-svc-stats-strip__divider {
    display: none;
  }

  .bc-svc-overview__title {
    font-size: 24px;
  }

  .bc-svc-overview__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .bc-svc-section {
    padding: 48px 20px;
  }

  .bc-svc-section__content h2 {
    font-size: 24px;
  }

  .bc-svc-section__inner,
  .bc-svc-section__inner--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bc-svc-section__inner--reverse .bc-svc-section__media,
  .bc-svc-section__inner--reverse .bc-svc-section__content {
    order: unset;
  }

  .bc-svc-section__img-wrap {
    max-width: 260px;
    margin: 0 auto;
    aspect-ratio: auto;
    padding: 32px;
  }

  .bc-svc-section__img-wrap--photo {
    max-width: 100%;
    padding: 0;
  }

  .bc-svc-dark-cta {
    padding: 48px 20px;
  }

  .bc-svc-dark-cta__text h2 {
    font-size: 22px;
  }

  .bc-svc-dark-cta__inner {
    grid-template-columns: 1fr;
  }

  .bc-svc-dark-cta__tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-svc-aps {
    padding: 48px 20px;
  }

  .bc-svc-aps__title {
    font-size: 24px;
  }

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

  .bc-svc-partners {
    padding: 48px 20px;
  }

  .bc-svc-partners__logos {
    gap: 20px;
  }

  .bc-svc-partners__logos img {
    height: 44px;
  }

  .bc-svc-final-cta {
    padding: 48px 20px;
  }

  .bc-svc-final-cta__text h2 {
    font-size: 24px;
  }

  .bc-svc-final-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .bc-svc-final-cta__text p {
    max-width: 100%;
  }

  /* — Ag Tech page responsive — */
  .bc-agtech-intro__inner {
    grid-template-columns: 1fr;
  }

  .bc-agtech-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .bc-agtech-stat {
    flex: 1;
    min-width: 120px;
  }

  .bc-agtech-section__inner,
  .bc-agtech-section__inner--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .bc-agtech-section__icon-wrap {
    flex-direction: row;
    text-align: left;
  }

  .bc-agtech-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* — MSP page responsive — */
  .bc-msp-compare {
    grid-template-columns: 1fr 1fr;
  }

  .bc-msp-tiers__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* — Contact page responsive — */
  .bc-contact__inner {
    grid-template-columns: 1fr;
  }

  /* — Blog/Post responsive — */
  /* blog single-col at mobile handled by .bc-blog__grid */

  .bc-post-hero__title {
    font-size: 28px;
  }

  .bc-post-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .bc-single__sidebar {
    position: static;
  }

  .bc-inner-hero {
    padding: 48px 20px;
  }

  .bc-cta-banner {
    padding: 48px 20px;
  }
}

/* ============================================
   RESPONSIVE — Small phones
   ============================================ */
@media (max-width: 480px) {
  .bc-hero__headline span {
    font-size: 50px;
  }

  .bc-hero__content {
    padding: 24px 16px 40px;
  }

  .bc-svc-stats-strip__item {
    flex: 0 0 100%;
    padding: 20px 16px;
  }

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

  .bc-svc-dark-cta__tiles {
    grid-template-columns: 1fr;
  }

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

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

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