/* Bluecrane brand overrides - navy + gold from logo */
:root {
  --theme: #122453;
  --theme2: #213367;
  --theme3: #f0bc1c;
  --bc-navy: #122453;
  --bc-navy-2: #213367;
  --bc-gold: #ffd700;
  --bc-gold-2: #f0bc1c;
  --bc-gold-dark: #e6c200;
}

.body-2 {
  background: #060710;
}

/* Primary buttons - navy → blue gradient, gold accent on hover */
.rr-btn {
  background: linear-gradient(135deg, #122453 0%, #2d5bff 100%) !important;
}
.rr-btn:hover {
  background: linear-gradient(135deg, #0c34c0 0%, #122453 100%) !important;
}

.header-section.style8 .rr-btn,
.hero-section-8 .rr-btn {
  background: linear-gradient(135deg, #122453 0%, #2d5bff 100%) !important;
}

.rr-btn-2 {
  border-color: var(--bc-gold-2) !important;
}

.section-title-8__sub-title .sub-title,
.hero-section-8__content .title strong span,
.about-8__inner .title span,
.service-8 .title span,
.step-8 .title span,
.case-studies-8 .title span,
.why-choose-us-8 .title span,
.data-insights-8 .title span,
.blog-8 .title span,
.join-us-8 .title span,
.campaign-8 .title span,
.bc-services-page .title span,
.bc-why-services .title span,
.bc-testimonials .title span,
.bc-what-we-build .title span {
  color: var(--bc-gold-2);
}

/* Mobile + tablet: glow + thick stroke makes accent titles unreadable */
@media (max-width: 1199.98px) {
  .section-title-8__wrapper .title span {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #8eb0ff !important;
    color: #8eb0ff !important;
    -webkit-text-stroke: 0 !important;
    filter: none !important;
    text-shadow: none !important;
  }

  .about-8__inner .title span,
  .service-8 .title span,
  .step-8 .title span,
  .case-studies-8 .title span,
  .why-choose-us-8 .title span,
  .data-insights-8 .title span,
  .blog-8 .title span,
  .join-us-8 .title span,
  .campaign-8 .title span,
  .bc-services-page .title span,
  .bc-why-services .title span,
  .bc-testimonials .title span,
  .bc-what-we-build .title span,
  .hall-of-fame .hof-title span {
    -webkit-text-fill-color: var(--bc-gold-2) !important;
    color: var(--bc-gold-2) !important;
  }
}

.hero-section-8__content .hero-ambition-line strong span {
  color: var(--bc-gold) !important;
}

.footer-8 a:hover,
.main-menu ul li a:hover,
.footer-links a:hover {
  color: var(--bc-gold-2) !important;
}

.logo img,
.header-logo img,
.offcanvas__logo img {
  max-height: 78px;
  width: auto;
  height: auto;
}

@media (max-width: 1199px) {
  .header-section.style8 .header-logo img,
  .header-section.style8 .logo img {
    max-height: 68px;
  }
}

.footer-8__top .logo img {
  max-height: 64px;
  width: auto;
}

/* ---- Hero background: subtle ken-burns + glow ---- */
.hero-section-8__wrapper {
  position: relative;
  overflow: hidden;
  /* Move paint to ::before so we can animate without fighting data-background */
  background-image: none !important;
}

.hero-section-8__wrapper::before {
  content: "";
  position: absolute;
  inset: -6%;
  z-index: 0;
  background-image: url("../img/home-8/hero-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform-origin: center center;
  animation: bc-hero-kenburns 22s ease-in-out infinite alternate,
             bc-hero-glow 8s ease-in-out infinite alternate;
  will-change: transform, filter;
  pointer-events: none;
}

.hero-section-8__wrapper > * {
  position: relative;
  z-index: 1;
}

@keyframes bc-hero-kenburns {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.06) translate(-1.2%, 0.8%);
  }
}

@keyframes bc-hero-glow {
  from {
    filter: brightness(1) saturate(1);
  }
  to {
    filter: brightness(1.07) saturate(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section-8__wrapper::before {
    animation: none;
    inset: 0;
    transform: none;
    filter: none;
  }
}

/* ---- Mobile hamburger: high contrast on dark header ---- */
.header-section.style8 .sidebar__toggle {
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 48px !important;
  height: 48px !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 100px !important;
  background: #122453 !important;
  border: 1px solid rgba(240, 188, 28, 0.55) !important;
  color: #ffffff !important;
  font-size: 1.25rem !important;
  box-shadow: 0 0 0 1px rgba(45, 91, 255, 0.25), 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.header-section.style8 .sidebar__toggle i,
.header-section.style8 .sidebar__toggle .fas {
  color: #ffffff !important;
}

.header-section.style8 .sidebar__toggle:hover,
.header-section.style8 .sidebar__toggle:focus {
  background: #213367 !important;
  border-color: #f0bc1c !important;
  color: #ffd700 !important;
}

.header-section.style8 .sidebar__toggle:hover i,
.header-section.style8 .sidebar__toggle:focus i {
  color: #ffd700 !important;
}

/* Tablet & below: hamburger + offcanvas only (desktop nav needs 1400px+) */
@media (max-width: 1399.98px) {
  .header-section.style8 .mean__menu-wrapper {
    display: none !important;
  }

  .header-section.style8 .header-hamburger-inner {
    display: none !important;
  }

  .header-section.style8 .header__hamburger {
    display: block !important;
  }

  .header-section.style8 {
    padding-top: 16px;
  }

  .header-section.style8 .header-main {
    gap: 12px;
  }

  .header-section.style8 .header__inner {
    width: auto;
    flex: 1;
    gap: 12px;
  }
}

@media (min-width: 1400px) {
  .header-section.style8 .header__hamburger {
    display: none !important;
  }

  .header-section.style8 .mean__menu-wrapper {
    display: block !important;
  }
}

.header-section.style8.sticky {
  background: rgba(6, 7, 16, 0.94) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Offcanvas mobile nav polish */
.offcanvas__info .mobile-menu .mean-container .mean-bar {
  background: transparent;
  min-height: 0;
  padding: 0;
}

.offcanvas__info .mobile-menu .mean-container a.meanmenu-reveal {
  display: none !important;
}

.offcanvas__info .mobile-menu .mean-container .mean-nav {
  margin-top: 0;
  background: transparent;
  float: none;
}

.offcanvas__info .mobile-menu .mean-container .mean-nav ul li a {
  color: #122453;
  border-top-color: rgba(18, 36, 83, 0.12);
  text-transform: none;
  font-weight: 600;
  font-size: 16px;
}

.offcanvas__info .mobile-menu .mean-container .mean-nav ul li a.mean-expand {
  border: none;
}

/* Hero h4: keep label + badge on one centered row (theme uses display:flex) */
.hero-section-8__content .hero-ambition-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.hero-section-8__content .hero-ambition-line .hero-powered-label {
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
  font-size: inherit;
  line-height: inherit;
  color: #ffffff;
}

.hero-section-8__content .hero-ambition-line strong {
  flex-shrink: 0;
}

.hero-section-8__content .title {
  max-width: 920px;
}

/* Hero floating stat badge (replaces baked-in hero-counter.png text) */
.hero-section-8__inner .shape.hero-stat-badge {
  width: auto;
  max-width: none;
  pointer-events: none;
}

.hero-stat-badge__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 240px;
  padding: 26px 32px 22px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(12, 28, 72, 0.94), rgba(8, 18, 48, 0.9));
  border: 1px solid rgba(120, 180, 255, 0.4);
  box-shadow:
    0 22px 48px rgba(0, 10, 40, 0.5),
    0 0 36px rgba(64, 140, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: perspective(720px) rotateY(18deg) rotateX(8deg) rotateZ(-4deg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stat-badge__card strong {
  display: block;
  font-family: "Outfit", var(--tj-ff-heading, sans-serif);
  font-size: 84px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #c8e7ff;
  text-shadow: 0 0 24px rgba(100, 190, 255, 0.55);
}

.hero-stat-badge__card span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.25;
  color: #ffffff;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .hero-stat-badge__card {
    min-width: 220px;
    padding: 22px 26px 20px;
  }

  .hero-stat-badge__card strong {
    font-size: 72px;
  }

  .hero-stat-badge__card span {
    font-size: 18px;
  }
}

/* Mobile: stack "Built for" + badge as two clean centered lines */
@media (max-width: 767px) {
  .hero-section-8__content .hero-ambition-line {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-section-8__content .hero-ambition-line .hero-powered-label {
    white-space: nowrap;
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-section-8__content .hero-ambition-line strong {
    display: inline-flex;
    max-width: 100%;
  }

  .hero-section-8__content .hero-ambition-line span {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }

  .hero-section-8__content .title {
    font-size: 32px;
    line-height: 1.2;
  }
}

@media (max-width: 575px) {
  .hero-section-8__content .hero-ambition-line .hero-powered-label {
    font-size: 24px;
  }

  .hero-section-8__content .hero-ambition-line span {
    font-size: 22px !important;
  }
}

.admin-shell {
  font-family: system-ui, sans-serif;
  background: #0b1020;
  color: #e8eefc;
  min-height: 100vh;
}
.admin-shell a { color: #f0bc1c; }
.admin-nav {
  background: #122453;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.admin-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
}
.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(240, 188, 28, 0.25);
  color: #ffd700;
}
.admin-main { padding: 1.5rem; max-width: 1200px; margin: 0 auto; }
.admin-card {
  background: #151b2e;
  border: 1px solid #243055;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
  border-bottom: 1px solid #243055;
  padding: 0.6rem;
  text-align: left;
  font-size: 0.9rem;
}
.admin-form label { display: block; margin: 0.5rem 0 0.2rem; font-size: 0.85rem; }
.admin-form input, .admin-form textarea, .admin-form select {
  width: 100%;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #243055;
  background: #0b1020;
  color: #fff;
}
.admin-btn {
  display: inline-block;
  margin-top: 0.75rem;
  background: linear-gradient(135deg, #122453, #2d5bff);
  color: #fff !important;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}
.admin-btn.danger { background: #8b1e1e; }
.flash-ok { background: #1a3d2a; color: #9dffb0; padding: 0.75rem; border-radius: 4px; margin-bottom: 1rem; }
.flash-err { background: #3d1a1a; color: #ff9d9d; padding: 0.75rem; border-radius: 4px; margin-bottom: 1rem; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #122453;
  color: #fff;
  padding: 1rem 1.5rem;
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner button {
  background: #f0bc1c;
  color: #122453;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.policy-content { color: #cfd6e6; line-height: 1.7; }
.policy-content h1, .policy-content h2, .policy-content h3 { color: #fff; margin-top: 1.5rem; }
.policy-content a { color: #f0bc1c; text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: #ffe08a; }
.article-body p { margin: 0 0 1rem; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem; padding-left: 1.35rem; }
.article-body li { margin-bottom: 0.45rem; }
.article-body strong { color: #fff; }

/* News cards: author avatar + single-line meta + equal card heights */
.blog-8__inner {
  align-items: stretch;
}

.blog-8__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 12px;
}

.blog-8__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 8px;
}

.blog-8__content .title {
  flex: 1;
  margin-bottom: 18px;
}

.blog-8__box {
  margin-top: auto;
  padding-bottom: 4px;
}

.blog-8__box .author {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-8__box .author img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.blog-8__box .author-details {
  min-width: 0;
  flex: 1;
}

.blog-8__box .author-details .blog-8__meta,
.blog-8__box .author-details ul.blog-8__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-8__box .author-details .blog-8__meta li {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  color: #E6E6E6;
  position: relative;
  white-space: nowrap;
}

.blog-8__box .author-details .blog-8__meta li:not(:first-child)::before {
  position: absolute;
  content: "";
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #D9D9D9;
}

.blog-8__box .author-details .blog-8__meta-author {
  color: #fff !important;
  font-weight: 600;
  font-size: 15px !important;
}

.blog-8__thumb .tag {
  max-width: calc(100% - 36px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
}

@media (max-width: 1199px) {
  .blog-8__box .author-details .blog-8__meta {
    gap: 8px 14px;
  }

  .blog-8__box .author-details .blog-8__meta li {
    font-size: 13px;
  }
}

/* Site-wide content entrance (nav excluded) */
body.bc-reveal-pending .bc-page-el,
body.bc-reveal-pending .bc-hero-el,
body.bc-reveal-pending .bc-reveal-el,
body.bc-hero-pending .bc-hero-el,
body.bc-hero-pending .bc-reveal-el {
  opacity: 0;
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  body.bc-reveal-pending .bc-page-el,
  body.bc-reveal-pending .bc-hero-el,
  body.bc-reveal-pending .bc-reveal-el,
  body.bc-hero-pending .bc-hero-el,
  body.bc-hero-pending .bc-reveal-el,
  .bc-page-el,
  .bc-hero-el,
  .bc-reveal-el,
  .page-home .fade-top {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
  }
}

.inner-page-dark .breadcrumb-wrapper,
.inner-page-dark {
  background: #060710;
}

/* About page: clean story layout, left-aligned like homepage */
.about-page .rr-container-1240 {
  text-align: left;
}

.about-page__layout {
  display: grid;
  /* Right column locked so image export size stays predictable */
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 3.5rem;
  align-items: stretch;
}

.about-page__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.about-page__story {
  max-width: none;
  margin: 0;
  min-width: 0;
}

.about-page__story .section-title-8__wrapper {
  text-align: left;
  margin-bottom: 2rem;
}

.about-page__story .title {
  max-width: none;
}

.about-page__media {
  width: 480px;
  min-height: 100%;
  height: 100%;
}

.about-page__media-frame {
  width: 100%;
  height: 100%;
  min-height: 1280px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(120, 160, 255, 0.22);
}

.about-page__media-frame img {
  display: block;
  width: 100%;
  height: 120%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.about-page__copy p {
  color: #cfd6e6;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 1.35rem;
  font-family: "Outfit", sans-serif;
  text-align: left;
}

.about-page__line {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 20px !important;
  line-height: 1.55 !important;
  margin-bottom: 1rem !important;
}

.about-page__line--final {
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
  font-size: 22px !important;
  color: #fff !important;
}

.about-page__close {
  max-width: none;
  margin: 3.5rem 0 0;
  padding: 3rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.about-page__close-title {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 1.75rem;
  text-align: left;
}

.about-page__cta {
  margin-top: 2.5rem;
  text-align: left;
}

@media (max-width: 1199px) {
  .about-page__layout {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 2.25rem;
  }

  .about-page__media {
    width: 400px;
  }

  .about-page__media-frame {
    min-height: 1100px;
  }
}

/* Desktop/tablet image only; hide on mobile */
@media (max-width: 991px) {
  .about-page__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-page__media {
    display: none;
  }
}

@media (max-width: 767px) {
  .about-page__copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-page__line {
    font-size: 18px !important;
  }

  .about-page__line--final {
    font-size: 19px !important;
  }

  .about-page__close {
    margin-top: 3rem;
    padding-top: 2.25rem;
  }

  .about-page__close-title {
    font-size: 22px;
  }
}

/* ---- Hero typewriter badge ---- */
.hero-section-8__content .sub-title.hero-typewriter-badge {
  max-width: min(960px, calc(100% - 24px));
  width: auto;
  white-space: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
  padding-left: 4px;
  padding-right: 14px;
  gap: 10px;
}

/* Theme forces ALL .sub-title span to 34x34 - only the icon should be that size */
.hero-section-8__content .hero-typewriter-badge > span:first-child {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3B49E0;
  border-radius: 120px;
}

.hero-section-8__content .hero-typewriter-badge .hero-typewriter-text,
.hero-section-8__content .hero-typewriter-badge .hero-typewriter-cursor {
  width: auto !important;
  height: auto !important;
  min-width: 0;
  background: transparent !important;
  border-radius: 0 !important;
  display: inline !important;
  white-space: nowrap;
  line-height: 24px;
  flex: 0 1 auto;
}

.hero-typewriter-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-typewriter-cursor {
  display: inline-block !important;
  margin-left: 2px;
  color: #f0bc1c;
  animation: bc-cursor-blink 1s step-end infinite;
  font-weight: 400;
  flex-shrink: 0 !important;
}

@keyframes bc-cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 767px) {
  .hero-section-8__content .sub-title.hero-typewriter-badge {
    font-size: 12px;
    line-height: 18px;
    gap: 8px;
    max-width: calc(100vw - 32px);
  }

  .hero-section-8__content .hero-typewriter-badge > span:first-child {
    width: 28px;
    height: 28px;
  }

  .hero-section-8__content .hero-typewriter-badge .hero-typewriter-text,
  .hero-section-8__content .hero-typewriter-badge .hero-typewriter-cursor {
    line-height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-typewriter-cursor { animation: none; opacity: 0.6; }
}

/* ---- Products dropdown ---- */
.header-section.style8 .products-mega {
  min-width: 340px !important;
  padding: 0.75rem !important;
  background: #0f1629 !important;
  border: 1px solid #243055 !important;
  border-radius: 12px !important;
}

.header-section.style8 .product-menu-item {
  display: flex !important;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0.75rem !important;
  border-radius: 8px;
  border-bottom: none !important;
  white-space: normal !important;
  line-height: 1.35 !important;
}

.header-section.style8 .product-menu-item:hover {
  background: rgba(45, 91, 255, 0.15);
}

.product-menu-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
}

.product-menu-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-menu-name {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  font-style: normal;
}

.product-menu-desc {
  color: #9aa6bf;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
}

/* Mobile offcanvas product items inherit same structure */
.mobile-menu .product-menu-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

/* ---- About section image (Bluecrane photo) ---- */
.about-8__thumb--bluecrane img {
  border-radius: 28px;
  border: 1px solid rgba(45, 91, 255, 0.65);
  box-shadow: 0 0 0 1px rgba(18, 36, 83, 0.4), 0 20px 50px rgba(0, 0, 0, 0.45);
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.05) contrast(1.02);
}

.service-tagline {
  color: #8eb0ff;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0.35rem 0 0.65rem;
  font-family: "Outfit", sans-serif;
}

/* ---- Hall of Fame (majestic client listing) ---- */
.hall-of-fame .hof-intro {
  text-align: left;
  margin-bottom: 3rem;
  max-width: 760px;
}

.hall-of-fame .hof-eyebrow {
  color: #f0bc1c;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.hall-of-fame .hof-title {
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  font-family: "Outfit", sans-serif;
}

.hall-of-fame .hof-title span {
  background: linear-gradient(180deg, #2d5bff, #7291ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hall-of-fame .hof-lead {
  color: #aab3c5;
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.hall-of-fame .hof-count {
  color: rgba(240, 188, 28, 0.9);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.hof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.hof-plaque {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 300px;
  padding: 2rem 1.75rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(45, 91, 255, 0.18), transparent 55%),
    linear-gradient(165deg, #141c34 0%, #0a0f1c 100%);
  border: 1px solid rgba(240, 188, 28, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.hof-plaque:hover,
.hof-plaque:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(240, 188, 28, 0.65);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  outline: none;
}

.hof-plaque__mark {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #f0bc1c 0%, #b8860b 70%);
  box-shadow: 0 0 12px rgba(240, 188, 28, 0.55);
}

.hof-plaque__logo {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hof-plaque__logo img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.hof-plaque__initials {
  color: #0a0f1c;
  font-weight: 700;
  font-size: 1.5rem;
}

.hof-plaque__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hof-plaque__sector {
  display: block;
  color: #8eb0ff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.hof-plaque__name {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 1.25;
  margin: 0;
  max-width: 18ch;
}

.hof-plaque__cta {
  margin-top: auto;
  padding-top: 1.35rem;
  color: #f0bc1c;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hof-plaque__cta i {
  margin-left: 0.35rem;
  font-size: 0.75rem;
}

.hof-footer {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.hof-footer p {
  color: #cfd6e6;
  font-size: 1.15rem;
  margin: 0;
}

.hall-of-fame-detail .rr-container-1240 {
  max-width: 1100px;
}

.hof-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: #8eb0ff;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.hof-detail__back:hover {
  color: var(--bc-gold-2);
}

.hof-detail__hero {
  margin-bottom: 1.75rem;
}

.hof-detail__identity {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hof-detail__logo {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hof-detail__logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.hof-detail__sector {
  color: #8eb0ff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 0.45rem;
}

.hof-detail__name {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.65rem;
}

.hof-detail__headline {
  margin: 0;
  color: #cfd6e6;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 36rem;
}

.hof-detail__summary {
  max-width: 48rem;
  margin: 0 0 1.5rem;
  color: #e6e6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.hof-detail__stage {
  margin: 2.5rem 0 3.25rem;
  background: transparent;
}

.hof-detail__stage--desktop {
  margin-top: 1.25rem;
}

.hof-detail__stage--mobile {
  margin-top: 0.5rem;
  margin-bottom: 3.5rem;
}

.hof-detail__shot {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hof-detail__shot img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hof-detail__shot--desktop {
  max-width: 1080px;
  margin-right: auto;
  margin-left: 0;
}

.hof-detail__shot--mobile {
  max-width: 720px;
  margin-left: auto;
  margin-right: 0;
}

.hof-detail__block {
  max-width: 48rem;
  margin: 0 0 2.5rem;
}

.hof-detail__block h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.hof-detail__block p {
  margin: 0;
  color: #e6e6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.hof-detail__work {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.hof-detail__work li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

.hof-detail__work li i {
  margin-top: 0.35rem;
  color: #2d5bff;
}

.hof-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 991.98px) {
  .hof-detail__shot--desktop,
  .hof-detail__shot--mobile {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hof-detail__identity {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .hof-grid {
    grid-template-columns: 1fr;
  }

  .hof-plaque {
    min-height: 240px;
  }

  .hof-plaque__name {
    font-size: 1.35rem;
  }

  .hof-detail__stage {
    margin: 1.75rem 0 2.25rem;
  }
}

/* ---- Approach / process section ---- */
.step-8__intro {
  max-width: 640px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.step-8__phase {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-gold-2);
}

/* Service card icons (Font Awesome) */
.service-8__content .icon i {
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

/* ---- Industry expertise ---- */
.industry-expertise-8__header {
  display: block;
  margin-bottom: 2.5rem;
}

.industry-expertise-8__header .section-title-8__wrapper {
  max-width: 820px;
}

.industry-expertise-8__intro {
  margin: 1rem 0 0;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.industry-expertise-8__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1199px) {
  .industry-expertise-8__grid {
    grid-template-columns: 1fr;
  }
}

.industry-expertise-8__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c1228;
}

.industry-expertise-8__media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.industry-expertise-8__media .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-expertise-8__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #18025c 0%, #2d5bff 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.industry-expertise-8__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.35rem 1.5rem;
}

.industry-expertise-8__focus {
  margin: 0 0 0.35rem;
  color: var(--bc-gold-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.industry-expertise-8__body .title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.industry-expertise-8__body .text {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.industry-expertise-8__featured {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 0 0 1.25rem;
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.industry-expertise-8__featured img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.industry-expertise-8__featured .label {
  display: block;
  margin-bottom: 0.15rem;
  color: #8eb0ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-expertise-8__featured strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.industry-expertise-8__featured p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.industry-expertise-8__body .rr-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Why Choose Us */
.why-choose-us-8__intro {
  max-width: 720px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.why-choose-us-8__icon i {
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

/* Impact section */
.data-insights-8__wrap .section-title-8__wrapper .decs {
  max-width: 520px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.6;
}

.data-insights-8__badge {
  position: absolute;
  top: 35px;
  right: 20px;
  z-index: 2;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #18025c 0%, #2d5bff 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 28px rgba(18, 36, 83, 0.35);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  max-width: 150px;
  text-align: center;
}

@media (max-width: 575px) {
  .data-insights-8__badge {
    top: 16px;
    right: 12px;
    font-size: 12px;
    max-width: 120px;
    padding: 0.55rem 0.75rem;
  }
}

/* Decorative shapes must never take layout space */
.testimonials-8__wrapper .shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.testimonials-8__wrapper .shapes .shape-1,
.testimonials-8__wrapper .shapes .shape-2 {
  position: absolute;
  line-height: 0;
}

.testimonials-8__wrapper .shapes .shape-1 {
  top: 0;
  left: 0;
}

.testimonials-8__wrapper .shapes .shape-2 {
  right: 0;
  bottom: 0;
}

.testimonials-8__wrapper .rr-container-1240 {
  position: relative;
  z-index: 1;
}

.partners-8.section-spacing-100 {
  padding-bottom: 60px;
}

.partners-8__slider {
  margin-top: 2rem;
}

.tech-ecosystem-8__intro {
  max-width: 720px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.tech-ecosystem-8__slider {
  margin-top: 2.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-ecosystem-8__track {
  display: flex;
  width: max-content;
  align-items: stretch;
  animation: techEcosystemScroll 45s linear infinite;
  will-change: transform;
}

.tech-ecosystem-8__slider:hover .tech-ecosystem-8__track,
.tech-ecosystem-8__track:hover {
  animation-play-state: running !important;
}

.tech-ecosystem-8__group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 22px 40px;
  flex-shrink: 0;
}

.tech-ecosystem-8__item {
  flex-shrink: 0;
}

.tech-ecosystem-8__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 88px;
  text-decoration: none;
  background: none;
  border: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.tech-ecosystem-8__item a:hover {
  opacity: 0.85;
  background: none;
  border: none;
  transform: none;
}

.tech-ecosystem-8__item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.tech-ecosystem-8__item span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
  font-family: "Outfit", sans-serif;
}

@keyframes techEcosystemScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Core Belief (replaces testimonials until real quotes are ready) */
.core-belief-8__body {
  max-width: 600px;
}

.core-belief-8__body p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
  font-family: "Outfit", sans-serif;
}

.core-belief-8__body p:last-child {
  margin-bottom: 0;
}

.core-belief-8__mission {
  color: #fff !important;
  font-weight: 500;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 767.98px) {
  .core-belief-8__body {
    max-width: 100%;
    text-align: center;
  }

  .core-belief-8 .testimonials-8__wrap .section-title-8__wrapper {
    text-align: center;
  }

  .core-belief-8 .section-title-8__sub-title {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .tech-ecosystem-8__intro {
    font-size: 15px;
    padding: 0 8px;
  }

  .tech-ecosystem-8__group {
    gap: 32px;
    padding: 18px 28px;
  }

  .tech-ecosystem-8__item a {
    min-width: 72px;
    gap: 6px;
  }

  .tech-ecosystem-8__item img {
    width: 36px;
    height: 36px;
  }

  .tech-ecosystem-8__item span {
    font-size: 11px;
  }

  .tech-ecosystem-8__track {
    animation-duration: 35s;
  }
}

/* ---- Our Work (client organizations) ---- */
.our-work-8__intro {
  max-width: 720px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.our-work-8__slider {
  width: 100%;
  overflow: hidden;
  margin-top: 1.25rem;
}

.our-work-8__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.our-work-8__track--left {
  animation: ourWorkScrollLeft 50s linear infinite;
}

.our-work-8__track--right {
  animation: ourWorkScrollRight 50s linear infinite;
}

.our-work-8__group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
  flex-shrink: 0;
}

.our-work-8__card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  height: 92px;
  padding: 0 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.our-work-8__card:hover {
  background: rgba(45, 91, 255, 0.18);
  border-color: rgba(45, 91, 255, 0.45);
}

.our-work-8__card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.our-work-8__card span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  font-family: "Outfit", sans-serif;
  white-space: nowrap;
}

@keyframes ourWorkScrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes ourWorkScrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 767.98px) {
  .our-work-8__intro {
    font-size: 15px;
    padding: 0 8px;
  }

  .our-work-8__card {
    min-width: 230px;
    height: 80px;
    padding: 0 16px;
    gap: 12px;
  }

  .our-work-8__card img {
    width: 40px;
    height: 40px;
  }

  .our-work-8__card span {
    font-size: 14px;
  }

  .our-work-8__track--left,
  .our-work-8__track--right {
    animation-duration: 40s;
  }
}

/* ---- Global responsive polish ---- */
@media (max-width: 1399.98px) {
  .hero-section-8__content .sub-title.hero-typewriter-badge {
    max-width: calc(100% - 32px);
    white-space: nowrap;
    font-size: 14px;
  }

  .hero-section-8__btn {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .service-8__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-expertise-8__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-choose-us-8__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .data-insights-8__inner {
    gap: 2rem;
  }

  .section-title-8__wrapper .title {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 991.98px) {
  .industry-expertise-8__grid,
  .service-8__inner,
  .why-choose-us-8__inner {
    grid-template-columns: 1fr !important;
  }

  .hero-section-8__content .title {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.15;
  }

  .hero-section-8__content .hero-ambition-line {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    line-height: 1.3;
  }

  .hero-section-8__content .hero-ambition-line span {
    font-size: inherit !important;
    line-height: inherit !important;
  }

  .data-insights-8__inner {
    grid-template-columns: 1fr !important;
    margin-right: 0 !important;
    gap: 1.75rem;
    justify-items: center;
  }

  .data-insights-8__wrap {
    width: 100%;
  }

  .data-insights-8__wrap .section-title-8__wrapper,
  .data-insights-8__wrap .section-title-8__wrapper.hero {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .data-insights-8__wrap .section-title-8__sub-title {
    display: flex;
    justify-content: center;
  }

  .data-insights-8__wrap .section-title-8__wrapper .title {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .data-insights-8__wrap .section-title-8__wrapper .decs {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .data-insights-8__box {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .data-insights-8__box .image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .hero-section-8__content .sub-title.hero-typewriter-badge {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    row-gap: 6px;
  }

  .hero-section-8__content .hero-typewriter-badge .hero-typewriter-text {
    white-space: normal;
  }

  .rr-container-1240 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .industry-expertise-8__media {
    height: 180px;
  }

  .case-studies-8__item,
  .industry-expertise-8__card {
    max-width: 100%;
  }

  .data-insights-8.section-spacing-pt-100 {
    padding-left: 0;
    padding-right: 0;
  }

  .data-insights-8__wrapper {
    overflow-x: hidden;
  }

  .data-insights-8__box {
    max-width: min(100%, 360px);
  }

  .data-insights-8__badge {
    right: 8px;
    top: 12px;
  }
}

/* ---- Our Impact metrics panel ---- */
.impact-metrics-8__header {
  margin-bottom: 2.5rem;
}

.impact-metrics-8__intro {
  max-width: 680px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.impact-metrics-8__grid.panel-section-8__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.impact-metrics-8__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.15rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 100%;
}

.impact-metrics-8__label {
  display: block;
  margin-bottom: 1rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.impact-metrics-8__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid currentColor;
  box-shadow: 0 0 18px currentColor;
}

.impact-metrics-8__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.impact-metrics-8__value {
  margin: 0 0 1rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.85rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: inherit;
}

.impact-metrics-8__card--years {
  color: #3dd68c;
  border-color: rgba(61, 214, 140, 0.35);
}

.impact-metrics-8__card--years .impact-metrics-8__pill {
  background: rgba(61, 214, 140, 0.12);
  color: #3dd68c;
}

.impact-metrics-8__card--hours {
  color: #5b8cff;
  border-color: rgba(91, 140, 255, 0.35);
}

.impact-metrics-8__card--hours .impact-metrics-8__pill {
  background: rgba(91, 140, 255, 0.12);
  color: #8eb0ff;
}

.impact-metrics-8__card--initiatives {
  color: #b794f6;
  border-color: rgba(183, 148, 246, 0.35);
}

.impact-metrics-8__card--initiatives .impact-metrics-8__pill {
  background: rgba(183, 148, 246, 0.12);
  color: #c4b5fd;
}

.impact-metrics-8__card--orgs {
  color: #2dd4bf;
  border-color: rgba(45, 212, 191, 0.35);
}

.impact-metrics-8__card--orgs .impact-metrics-8__pill {
  background: rgba(45, 212, 191, 0.12);
  color: #5eead4;
}

@media (max-width: 1199.98px) {
  .impact-metrics-8__grid.panel-section-8__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .impact-metrics-8__grid.panel-section-8__inner {
    grid-template-columns: 1fr;
  }

  .impact-metrics-8__intro {
    font-size: 15px;
    padding: 0 8px;
  }
}

/* ---- Outcomes comparison (WITHOUT JUA / WITH JUA) ---- */
.outcomes-compare-8__intro {
  max-width: 760px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.outcomes-compare-8__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.7fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.outcomes-compare-8__table {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.25rem 1.35rem 1rem;
  position: relative;
}

.outcomes-compare-8__heads {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.outcomes-compare-8__col-head strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.outcomes-compare-8__col-head--before strong {
  color: #5b8cff;
}

.outcomes-compare-8__col-head--after strong {
  color: #3dd68c;
}

.outcomes-compare-8__vs {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12131a;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.outcomes-compare-8__row {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.outcomes-compare-8__row:last-child {
  border-bottom: 0;
}

.outcomes-compare-8__metric {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  grid-column: 1;
}

.outcomes-compare-8__before {
  grid-column: 2;
}

.outcomes-compare-8__after {
  grid-column: 4;
}

.outcomes-compare-8__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 91, 255, 0.15);
  color: #8eb0ff;
  flex-shrink: 0;
}

.outcomes-compare-8__metric h4 {
  margin: 0 0 0.15rem;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
}

.outcomes-compare-8__metric p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.35;
}

.outcomes-compare-8__val {
  display: block;
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.outcomes-compare-8__before .outcomes-compare-8__val {
  color: #8eb0ff;
}

.outcomes-compare-8__after .outcomes-compare-8__val {
  color: #3dd68c;
}

.outcomes-compare-8__bar {
  display: block;
  height: 8px;
  border-radius: 999px;
  width: var(--bar, 50%);
  max-width: 100%;
}

.outcomes-compare-8__bar--before {
  background: linear-gradient(90deg, #2d5bff, #5b8cff);
}

.outcomes-compare-8__bar--after {
  background: linear-gradient(90deg, #1f9d63, #3dd68c);
}

.outcomes-compare-8__impact {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(61, 214, 140, 0.35);
  border-radius: 20px;
  padding: 1.35rem 1.2rem;
}

.outcomes-compare-8__impact h3 {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
}

.outcomes-compare-8__impact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.outcomes-compare-8__impact li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #3dd68c;
}

.outcomes-compare-8__impact li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.outcomes-compare-8__impact li i {
  margin-top: 0.45rem;
  font-size: 18px;
}

.outcomes-compare-8__impact strong {
  display: block;
  color: #3dd68c;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.outcomes-compare-8__impact span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.4;
}

@media (max-width: 1199.98px) {
  .outcomes-compare-8__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .outcomes-compare-8__intro {
    font-size: 15px;
    padding: 0 8px;
  }

  .outcomes-compare-8__heads,
  .outcomes-compare-8__row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .outcomes-compare-8__metric-head,
  .outcomes-compare-8__vs {
    display: none;
  }

  .outcomes-compare-8__before,
  .outcomes-compare-8__after {
    grid-column: 1;
  }

  .outcomes-compare-8__heads {
    display: flex;
    justify-content: space-between;
  }

  .outcomes-compare-8__row {
    padding: 1rem 0;
  }
}

/* ---- Services page (home-8 type scale) ---- */
.bc-services-page__intro,
.bc-why-services__intro,
.bc-testimonials__intro,
.bc-what-we-build__intro {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.bc-services-page__kicker {
  margin: 14px 0 0;
  color: #e6e6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.bc-services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bc-service-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 1.25rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  position: relative;
  transition: background 0.35s ease;
}

.bc-service-row:last-child {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.bc-service-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.bc-service-row__media {
  position: relative;
  display: block;
  width: 100%;
  min-height: 180px;
  aspect-ratio: 5 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #101628;
  flex-shrink: 0;
}

.bc-service-row__media--empty {
  border: 2px dashed rgba(240, 188, 28, 0.65);
  background: linear-gradient(160deg, #121a33 0%, #0b1020 100%);
}

.bc-service-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.bc-service-row__media-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
  color: #f0bc1c;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
  background: rgba(8, 12, 24, 0.45);
  pointer-events: none;
}

.bc-service-row:hover .bc-service-row__media img {
  transform: scale(1.04);
}

.bc-service-row__main {
  min-width: 0;
}

.bc-service-row__left {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 0.85rem;
}

.bc-service-row__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, #18025c 0%, #2d5bff 100%);
  color: #fff;
  font-size: 1.25rem;
}

.bc-service-row__title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

.bc-service-row__title a {
  color: #fff;
  text-decoration: none;
}

.bc-service-row__title a:hover {
  color: var(--bc-gold-2);
}

.bc-service-row__tagline {
  margin: 0 0 0.75rem;
  color: #cfd6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.bc-service-row__desc {
  margin: 0 0 1.1rem;
  color: #e6e6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  max-width: 640px;
}

.bc-service-row__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.bc-service-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.bc-service-row__list li i {
  margin-top: 0.35rem;
  color: #2d5bff;
  font-size: 14px;
}

.bc-service-row__arrow {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.bc-service-row__arrow i {
  transform: rotate(45deg);
}

.bc-service-row__arrow:hover {
  background: #2d5bff;
  border-color: #2d5bff;
  color: #fff;
}

.bc-why-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bc-why-services__item {
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.bc-why-services__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  background: linear-gradient(180deg, #18025c 0%, #2d5bff 100%);
  color: #fff;
  font-size: 1.2rem;
}

.bc-why-services__item h4 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}

.bc-why-services__item p {
  margin: 0;
  color: #e6e6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

/* ---- Testimonials (home + services) ---- */
.bc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bc-testimonial-card {
  padding: 2rem 1.75rem;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
}

.bc-testimonial-card--featured {
  border-color: #2d5bff;
  box-shadow: 0 0 24px rgba(41, 72, 220, 0.18);
}

.bc-testimonial-card__stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.1rem;
  color: var(--bc-gold-2);
  font-size: 14px;
}

.bc-testimonial-card__quote {
  margin: 0 0 1.5rem;
  color: #e6e6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  quotes: none;
}

.bc-testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.bc-testimonial-card__photo,
.bc-testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bc-testimonial-card__avatar {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #18025c 0%, #2d5bff 100%);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.bc-testimonial-card__person strong {
  display: block;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.bc-testimonial-card__person span {
  display: block;
  color: #cfd6e6;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  margin-top: 0.2rem;
}

@media (max-width: 1199.98px) {
  .bc-why-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-service-row {
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .bc-service-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.75rem 0.5rem;
  }

  .bc-service-row__media {
    max-width: 420px;
  }

  .bc-service-row__arrow {
    justify-self: start;
  }

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

  .bc-why-services__item h4 {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .bc-why-services__grid {
    grid-template-columns: 1fr;
  }

  .bc-service-row__title {
    font-size: 20px;
  }
}

/* ---- What We Build ---- */
.bc-what-we-build__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.bc-what-we-build__card {
  padding: 2rem 1.75rem;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bc-what-we-build__card:hover {
  border-color: #2d5bff;
  box-shadow: 0 0 24px rgba(41, 72, 220, 0.18);
}

.bc-what-we-build__logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.bc-what-we-build__logo img {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.bc-what-we-build__card h4 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
}

.bc-what-we-build__card p {
  margin: 0 0 1.5rem;
  color: #e6e6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  flex: 1;
}

.bc-what-we-build__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.bc-what-we-build__ext {
  color: #8eb0ff;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.bc-what-we-build__ext:hover {
  color: var(--bc-gold-2);
}

.bc-what-we-build__clients {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bc-what-we-build__clients-label {
  margin: 0 0 1.25rem;
  color: #cfd6e6;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.bc-what-we-build__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-bottom: 1.5rem;
}

.bc-what-we-build__client {
  display: grid;
  place-items: center;
  width: 110px;
  height: 56px;
  padding: 0.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.85;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}

.bc-what-we-build__client:hover {
  opacity: 1;
  border-color: rgba(45, 91, 255, 0.45);
}

.bc-what-we-build__client img {
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
}

.bc-what-we-build__hof {
  display: inline-block;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 188, 28, 0.55);
  padding-bottom: 2px;
}

.bc-what-we-build__hof:hover {
  color: var(--bc-gold-2);
}

@media (max-width: 991.98px) {
  .bc-what-we-build__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1199.98px) {
  .bc-what-we-build__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .bc-what-we-build__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Service detail (CMS-ready short + long content) ---- */
.bc-service-detail__layout {
  max-width: 820px;
}

.bc-service-detail__layout--media {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 3rem;
  align-items: start;
}

.bc-service-detail__tagline {
  margin: 0 0 0.75rem;
  color: #8eb0ff;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.bc-service-detail__title {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.bc-service-detail__summary {
  margin: 0 0 1.5rem;
  color: #e6e6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.bc-service-detail__list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.bc-service-detail__list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.bc-service-detail__list li i {
  margin-top: 0.35rem;
  color: #2d5bff;
}

.bc-service-detail__body {
  margin: 0 0 1.5rem;
  color: #cfd6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.bc-service-detail__body p {
  margin: 0 0 1.1rem;
}

.bc-service-detail__media img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

@media (max-width: 991.98px) {
  .bc-service-detail__layout--media {
    grid-template-columns: 1fr;
  }

  .bc-service-detail__title {
    font-size: 32px;
  }
}

/* ---- Editorial service detail pages ---- */
.page-service-detail .bc-svc-hero {
  padding-top: 140px;
  padding-bottom: 72px;
  background:
    radial-gradient(80% 60% at 12% 0%, rgba(45, 91, 255, 0.18), transparent 55%),
    radial-gradient(60% 50% at 90% 20%, rgba(240, 188, 28, 0.08), transparent 50%);
}

.bc-svc-breadcrumb {
  margin-bottom: 1.75rem;
}

.bc-svc-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  color: #8a93a8;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
}

.bc-svc-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
}

.bc-svc-breadcrumb a {
  color: #8eb0ff;
  text-decoration: none;
}

.bc-svc-breadcrumb a:hover {
  color: var(--bc-gold-2);
}

.bc-svc-hero__eyebrow {
  margin: 0 0 1rem;
  color: #8eb0ff;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bc-svc-hero__title {
  margin: 0 0 1.25rem;
  max-width: 18ch;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.bc-svc-hero__lead {
  margin: 0 0 2rem;
  max-width: 42rem;
  color: #cfd6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.bc-svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.bc-svc-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 420px);
  gap: 2.5rem;
  align-items: center;
}

.bc-svc-hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #101628;
}

.bc-svc-hero__media--empty {
  border: 2px dashed rgba(240, 188, 28, 0.7);
  background: linear-gradient(160deg, #121a33 0%, #0b1020 100%);
}

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

.bc-svc-hero__media-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
  color: #f0bc1c;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  background: rgba(8, 12, 24, 0.42);
  pointer-events: none;
}

.bc-svc-section {
  padding: 5rem 0;
}

.bc-svc-section--muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bc-svc-section__heading {
  margin: 0 0 2rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
}

.bc-svc-section__narrow {
  max-width: 46rem;
}

.bc-svc-section h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.25;
}

.bc-svc-section p {
  margin: 0;
  color: #e6e6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.bc-svc-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.bc-svc-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.bc-svc-points li {
  padding: 1rem 1.1rem;
  border-left: 2px solid #2d5bff;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.bc-svc-caps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.bc-svc-cap {
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.bc-svc-cap h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.bc-svc-cap p {
  margin: 0;
  color: #cfd6e6;
  font-size: 16px;
  line-height: 1.6;
}

.bc-svc-value {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 2.25rem;
}

.bc-svc-value h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.bc-svc-value p {
  margin: 0;
  color: #cfd6e6;
  font-size: 16px;
  line-height: 1.6;
}

.bc-svc-approach {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.bc-svc-approach li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bc-svc-approach li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bc-svc-approach__num {
  color: #8eb0ff;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.bc-svc-approach h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.bc-svc-approach p {
  margin: 0;
  color: #cfd6e6;
  font-size: 16px;
  line-height: 1.65;
}

.bc-svc-why {
  padding: 5.5rem 0;
  background:
    linear-gradient(180deg, rgba(18, 36, 83, 0.35), rgba(6, 7, 16, 0.2)),
    rgba(255, 255, 255, 0.015);
}

.bc-svc-why__inner {
  max-width: 46rem;
}

.bc-svc-why h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.bc-svc-why h2 span,
.bc-svc-why__inner > h2 {
  /* keep accent available if used later */
}

.bc-svc-why p {
  margin: 0 0 1.75rem;
  color: #e6e6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.bc-svc-why__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.bc-svc-why__points li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.bc-svc-why__points li i {
  margin-top: 0.3rem;
  color: var(--bc-gold-2);
}

.bc-svc-close {
  padding: 5.5rem 0 6rem;
}

.bc-svc-close__inner {
  max-width: 40rem;
  padding: 2.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bc-svc-close h2 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
}

.bc-svc-close p {
  margin: 0 0 1.75rem;
  color: #cfd6e6;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .bc-svc-hero__layout {
    grid-template-columns: 1fr;
  }

  .bc-svc-hero__media {
    max-width: 480px;
  }

  .bc-svc-section__grid,
  .bc-svc-caps,
  .bc-svc-value {
    grid-template-columns: 1fr;
  }

  .bc-svc-hero__title {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .page-service-detail .bc-svc-hero {
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .bc-svc-section,
  .bc-svc-why,
  .bc-svc-close {
    padding: 3.5rem 0;
  }

  .bc-svc-approach li {
    grid-template-columns: 48px minmax(0, 1fr);
  }
}

/* ---- FAQs page ---- */
.page-faqs .bc-faq-hero {
  padding-top: 140px;
  padding-bottom: 48px;
}

.bc-faq-breadcrumb {
  margin-bottom: 1.25rem;
}

.bc-faq-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #8b95a8;
  font-size: 0.9rem;
}

.bc-faq-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #5c667a;
}

.bc-faq-breadcrumb a {
  color: #cfd6e6;
  text-decoration: none;
}

.bc-faq-breadcrumb a:hover {
  color: #f0bc1c;
}

.bc-faq-hero__eyebrow {
  margin: 0 0 0.75rem;
  color: #f0bc1c;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.bc-faq-hero__title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  max-width: 18ch;
}

.bc-faq-hero__lead {
  margin: 0;
  color: #cfd6e6;
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 42rem;
}

.bc-faq {
  padding-top: 0;
}

.bc-faq__wrap {
  max-width: 860px;
}

.bc-faq__group {
  margin-bottom: 2.75rem;
}

.bc-faq__group-title {
  margin: 0 0 1rem;
  color: #f0bc1c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.bc-faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 1.15rem 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.bc-faq__question:hover .bc-faq__question-text {
  color: #f0bc1c;
}

.bc-faq__question:focus-visible {
  outline: 2px solid #f0bc1c;
  outline-offset: 4px;
}

.bc-faq__question-text {
  flex: 1;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  transition: color 0.2s ease;
}

.bc-faq__item.is-open .bc-faq__question-text {
  color: #f0bc1c;
}

.bc-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
}

.bc-faq__icon::before,
.bc-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #f0bc1c;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.bc-faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.bc-faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.bc-faq__item.is-open .bc-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.bc-faq__answer {
  overflow: hidden;
  height: 0;
  transition: height 0.32s ease;
}

.bc-faq__answer-inner {
  padding: 0 2.5rem 1.35rem 0;
}

.bc-faq__answer-inner p {
  margin: 0 0 0.9rem;
  color: #cfd6e6;
  font-size: 1rem;
  line-height: 1.7;
}

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

.bc-faq__steps {
  margin: 0.35rem 0 1rem;
  padding-left: 1.2rem;
  color: #e8edf7;
}

.bc-faq__steps li {
  margin-bottom: 0.4rem;
  line-height: 1.55;
}

.bc-faq__cta {
  margin-top: 3rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bc-faq__cta-note {
  margin: 0 0 1.25rem;
  color: #cfd6e6;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 38rem;
}

@media (max-width: 767.98px) {
  .page-faqs .bc-faq-hero {
    padding-top: 120px;
    padding-bottom: 36px;
  }

  .bc-faq__answer-inner {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bc-faq__answer,
  .bc-faq__icon::before,
  .bc-faq__icon::after,
  .bc-faq__question-text {
    transition: none;
  }
}

/* ---- Contact page (form only, high-contrast fields) ---- */
.bc-contact__intro {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.bc-contact__title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.2;
}

.bc-contact__lead {
  margin: 0;
  color: #cfd6e6;
  font-size: 1.05rem;
  line-height: 1.65;
}

.bc-contact-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.75rem;
  background: #151b2e;
  border: 1px solid #2a3555;
  border-radius: 12px;
}

.bc-contact-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.bc-contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
}

.bc-contact-form__field--full {
  grid-column: 1 / -1;
}

.bc-contact-form__field label {
  display: block;
  margin: 0 0 0.4rem;
  color: #e8edf7 !important;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.bc-contact-form__field input,
.bc-contact-form__field select,
.bc-contact-form__field textarea {
  width: 100%;
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid #3a4668;
  border-radius: 8px;
  background: #0b1020 !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  line-height: 1.45;
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.bc-contact-form__field select {
  background-image: linear-gradient(45deg, transparent 50%, #f0bc1c 50%),
    linear-gradient(135deg, #f0bc1c 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.bc-contact-form__field textarea {
  min-height: 150px;
  resize: vertical;
}

.bc-contact-form__field input::placeholder,
.bc-contact-form__field textarea::placeholder {
  color: #9aa6bf !important;
  opacity: 1;
  -webkit-text-fill-color: #9aa6bf;
}

.bc-contact-form__field input:focus,
.bc-contact-form__field select:focus,
.bc-contact-form__field textarea:focus {
  outline: none;
  border-color: #f0bc1c;
  box-shadow: 0 0 0 3px rgba(240, 188, 28, 0.2);
}

.bc-contact-form__field option {
  background: #0b1020;
  color: #fff;
}

.bc-contact-form__submit {
  margin-top: 1.35rem;
}

@media (max-width: 767.98px) {
  .bc-contact-form {
    padding: 1.25rem;
  }

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

/* Home service cards: always-visible photo slot + readable hover bg */
.service-8__item--with-photo {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  isolation: isolate;
  overflow: hidden;
}

.service-8__item--with-photo .image {
  z-index: 0;
}

/* Dark scrim so hover background image never washes out the copy */
.service-8__item--with-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 24px;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(8, 12, 24, 0.42) 0%,
      rgba(8, 12, 24, 0.78) 45%,
      rgba(8, 12, 24, 0.9) 100%
    );
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.service-8__item--with-photo:hover::before {
  opacity: 1;
  visibility: visible;
}

.service-8__item--with-photo .service-8__photo,
.service-8__item--with-photo .service-8__content {
  position: relative;
  z-index: 2;
}

.service-8__item--with-photo:hover .service-8__content .title,
.service-8__item--with-photo:hover .service-8__content .title a,
.service-8__item--with-photo:hover .service-8__content .decs,
.service-8__item--with-photo:hover .service-tagline {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.service-8__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #101628;
}

.service-8__photo:has(.service-8__photo-label) {
  border: 2px dashed rgba(240, 188, 28, 0.55);
}

.service-8__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-8__photo-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: #f0bc1c;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(8, 12, 24, 0.4);
  pointer-events: none;
}

/* Footer contact note: do not use theme .decs (34px display size) */
.footer-8__widgets-box .footer-contact-note {
  margin: 0;
  max-width: 22rem;
  color: #cfd6e6;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.footer-8__widgets-box--contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.65rem;
}

.footer-8__widgets-box--contact .title {
  margin-bottom: 0;
}

.footer-8__widgets-box--contact .rr-btn {
  margin-top: 0;
}
