@font-face {
  font-family: "Galderglynn Titling";
  src: url("../fonts/Galderglynn Titling Th.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Naville";
  src: url("../fonts/Naville-Regular DEMO.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bw-navy: #1e2a3b;
  --bw-navy-soft: #24354a;
  --bw-primary: #214b8c;
  --bw-primary-soft: #e3e9f4;
  --bw-gray-light: #f5f5f7;
  --bw-border-subtle: #e0e3ea;
  --bw-text-main: #22252c;
  --bw-text-muted: #6c757d;
  --bw-radius-lg: 14px;
  --bw-radius-md: 10px;
  --bw-shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  /* Site-wide typography (content pages + cards + footer) */
  --bw-font-body: 1rem;
  --bw-line-body: 1.6;
  --bw-font-lead: 1.0625rem;
  --bw-line-lead: 1.55;
  --bw-font-sm: 0.9375rem;
  --bw-font-caption: 0.9375rem;
  --bw-font-page-title: clamp(1.5rem, 2.4vw, 1.75rem);
  --bw-font-subsection: 1.125rem;
  --bw-font-section-label: 0.8125rem;
  --bw-letter-section-label: 0.06em;
  --bw-font-footer: 1rem;
  --bw-font-footer-h5: 1.25rem;
  --bw-font-footer-h6: 1.0625rem;
}

.bw-home-wide {
  width: 90%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/* Home: What we deliver + Recent Portfolio — true 95% viewport width (no max-width cap) */
.bw-home-wide--95 {
  width: 95%;
  max-width: none;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: var(--bw-font-body);
  line-height: var(--bw-line-body);
  color: var(--bw-text-main);
  background-color: #ffffff;
}

/* Inner pages & shared copy blocks */
.bw-page-title {
  font-size: var(--bw-font-page-title);
  font-weight: 700;
  line-height: 1.25;
  color: var(--bw-text-main);
}

.bw-page-lead {
  font-size: var(--bw-font-lead);
  line-height: var(--bw-line-lead);
}

.bw-page-section-label {
  font-size: var(--bw-font-section-label);
  font-weight: 700;
  letter-spacing: var(--bw-letter-section-label);
  text-transform: uppercase;
}

.bw-page-text {
  font-size: var(--bw-font-body);
  line-height: var(--bw-line-body);
}

.bw-page-subsection-title {
  font-size: var(--bw-font-subsection);
  font-weight: 700;
  line-height: 1.35;
  color: var(--bw-text-main);
}

.bw-text-caption {
  font-size: var(--bw-font-caption);
  line-height: 1.5;
}

.bw-site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.bw-top-bar {
  background: linear-gradient(90deg, #13263e 0%, #1a3554 45%, #13263e 100%);
  color: rgba(238, 244, 255, 0.95);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bw-top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
  min-height: 40px;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.bw-top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.bw-top-bar__link:hover {
  color: #ffffff;
}

.bw-top-bar__contact-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem 1.25rem;
}

@media (min-width: 576px) {
  .bw-top-bar__contact-end {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
}

.bw-social-blocks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
}

/* Desktop: width + space-between set by JS to match navbar brand (BUILDWELL STUDIO) */
@media (min-width: 576px) {
  .bw-top-bar .bw-social-blocks[data-brand-width-synced] {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
    width: var(--bw-social-track-width, auto);
    max-width: 100%;
  }
}

.bw-social-blocks li {
  display: flex;
}

.bw-social-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
  font-size: 0.85rem;
}

.bw-social-block:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-1px);
}

.bw-social-blocks--footer {
  justify-content: flex-start;
  gap: 0.55rem;
}

.bw-social-block--footer {
  width: 42px;
  height: 42px;
  font-size: 1.05rem;
  border-radius: 10px;
}

@media (max-width: 575.98px) {
  .bw-top-bar__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    min-height: 38px;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    gap: 0.5rem;
  }

  .bw-top-bar__contact-end {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    text-align: left;
  }

  /* Show icons only on mobile — hide text labels */
  .bw-top-bar__link span {
    display: none;
  }

  .bw-top-bar__link {
    white-space: nowrap;
    justify-content: flex-start;
  }

  .bw-social-blocks {
    justify-content: flex-start;
  }
}

.bw-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--bw-border-subtle);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06), 0 4px 24px rgba(15, 23, 42, 0.04);
}

.bw-main {
  padding-top: 0.5rem;
}

.navbar-brand {
  letter-spacing: 0.02em;
}

.bw-navbar-brand {
  margin-right: 1rem;
  /* Offset ~5px larger wordmark so overall navbar height stays the same */
  padding-top: calc(0.3rem - 3px);
  padding-bottom: calc(0.3rem - 3px);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  max-width: calc(100vw - 5.5rem);
}

.bw-navbar-brand:focus-visible {
  outline: 2px solid var(--bw-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.bw-navbar-title {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.22rem;
  min-width: 0;
  max-width: 100%;
  width: max-content;
}

/* [logo] + UILDWELL — B is the mark; text uses Galderglynn Titling */
.bw-navbar-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.04em;
  font-family: "Galderglynn Titling", "Times New Roman", Times, serif;
  font-size: clamp(0.88rem, 2.35vw, calc(1.18rem + 5px));
  font-weight: 600;
  line-height: 1;
  color: #0a0a0a;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.bw-navbar-logo-as-b {
  display: block;
  flex-shrink: 0;
  height: 1em;
  width: auto;
  max-height: clamp(31px, 5.5vw, calc(36px + 5px));
  object-fit: contain;
  object-position: center bottom;
  /* Optical alignment with titling caps; nudge ~5px upward */
  transform: translateY(calc(0.04em - 3px));
}

.bw-navbar-wordmark__text {
  padding-top: 0.02em;
}

/* STUDIO + rules — Naville */
.bw-navbar-studio {
  display: flex;
  align-items: center;
  gap: 0.42em;
  width: 100%;
  margin-top: 0.02rem;
}

.bw-navbar-studio__rule {
  flex: 1 1 auto;
  min-width: 0.35rem;
  height: 1px;
  background-color: var(--bw-primary);
  opacity: 0.88;
}

.bw-navbar-studio__label {
  font-family: "Naville", system-ui, sans-serif;
  font-size: clamp(0.58rem, 1.65vw, calc(0.74rem + 4px));
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--bw-primary);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 380px) {
  .bw-navbar-wordmark {
    font-size: clamp(0.78rem, 3.2vw, calc(0.95rem + 5px));
    letter-spacing: 0.05em;
  }

  .bw-navbar-studio {
    gap: 0.32em;
  }
}

.navbar-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  color: var(--bw-text-muted);
  border-radius: 6px;
  border: 1px solid transparent;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--bw-primary);
}

.navbar-nav .nav-link.active {
  background-color: #3a5f9f;
  color: #ffffff;
  border-color: #3a5f9f;
  box-shadow: 0 0 0 1px rgba(58, 95, 159, 0.18);
}

.navbar-nav .btn {
  font-size: 0.9rem;
}

.bw-hero {
  position: relative;
  min-height: clamp(380px, 56vh, 620px);
  display: flex;
  align-items: center;
  background-color: #0b1220;
  overflow: hidden;
  --bw-hero-bg-y: 50%;
}

/* Accent rule under hero — separates BuildWell band from next section */
.bw-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(33, 75, 140, 0.35) 0%,
    var(--bw-primary) 45%,
    rgba(33, 75, 140, 0.35) 100%
  );
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.15);
}

/* Home + service banners — same viewport height */
.bw-hero--bg,
.bw-hero--service {
  min-height: clamp(520px, 78vh, 880px);
}

.bw-hero--bg {
  background-color: #0b1220;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center var(--bw-hero-bg-y, 50%);
  background-repeat: no-repeat;
}

/* Cross-fading layers (home); falls back to single background when layers absent */
.bw-hero-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bw-hero-bg-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: -28%;
  width: 100%;
  height: 156%;
  background-size: cover;
  background-position: center var(--bw-hero-bg-y, 50%);
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.35s ease-in-out;
  will-change: background-position;
}

.bw-hero-bg-layer.bw-hero-bg-layer--active {
  opacity: 1;
}

.bw-hero--bg:has(.bw-hero-bg-layers) {
  background-image: none;
}

.bw-hero--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 75% at 50% 42%, rgba(8, 14, 28, 0.45) 0%, rgba(8, 12, 20, 0.72) 72%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.55) 0%, rgba(8, 12, 20, 0.65) 40%, rgba(8, 12, 20, 0.78) 100%);
  pointer-events: none;
}

.bw-hero .container {
  position: relative;
  z-index: 2;
}

.bw-hero--bg .bw-hero-center,
.bw-hero--service .bw-hero-center {
  padding: 4rem 0 4.5rem;
}

.bw-hero-center {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 3.5rem 0 4rem;
}

.bw-hero-title {
  display: flex;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: unset;
  font-weight: unset;
  letter-spacing: unset;
  line-height: 1.1;
  color: inherit;
}

/* Intro hero: same BUILDWELL + STUDIO lockup as navbar; scaled + light colors on dark */
.bw-hero-brand.bw-navbar-title {
  align-items: center;
  text-align: left;
  gap: 0.32rem;
}

.bw-hero-brand .bw-navbar-wordmark {
  color: #ffffff;
  font-size: clamp(1.35rem, 4.2vw, 2.45rem);
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(33, 75, 140, 0.35);
}

.bw-hero-brand .bw-navbar-logo-as-b {
  max-height: clamp(40px, 7.5vw, 68px);
  transform: translateY(calc(0.04em - 4px));
}

.bw-hero-brand .bw-navbar-studio__label {
  color: #c8e0ff;
  font-size: clamp(0.72rem, 2vw, 1.05rem);
  letter-spacing: 0.22em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.bw-hero-brand .bw-navbar-studio__rule {
  background-color: rgba(255, 255, 255, 0.42);
  opacity: 1;
}

@media (max-width: 380px) {
  .bw-hero-brand .bw-navbar-wordmark {
    font-size: clamp(1rem, 4.5vw, 1.45rem);
  }

  .bw-hero-brand .bw-navbar-logo-as-b {
    max-height: clamp(34px, 9vw, 48px);
  }
}

/* Hero rotating messages (synced with background slides) */
.bw-hero-copy {
  position: relative;
  width: 100%;
  min-height: clamp(7rem, 20vw, 10.5rem);
  margin: 1.25rem auto 0;
  max-width: 42rem;
}

.bw-hero-message {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  pointer-events: none;
}

.bw-hero-message.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bw-hero-message.is-leaving {
  opacity: 0;
  transform: translateY(-12px);
}

.bw-hero-message:not(.is-active):not(.is-leaving) {
  visibility: hidden;
}

.bw-hero-message.is-active,
.bw-hero-message.is-leaving {
  visibility: visible;
  z-index: 1;
}

.bw-hero-message__line {
  margin: 0 0 0.45rem;
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
  font-weight: 600;
  line-height: 1.4;
  color: #f0f6ff;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.65),
    0 1px 2px rgba(0, 0, 0, 0.8);
}

.bw-hero-message__line:last-child {
  margin-bottom: 0;
}

.bw-hero-message__line--emph {
  margin-top: 0.15rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.45rem, 4.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow:
    0 3px 16px rgba(0, 0, 0, 0.7),
    0 0 48px rgba(100, 160, 255, 0.25);
}

.bw-hero-message__line--accent {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #a8d4ff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.bw-hero-message__price {
  font-size: 1.15em;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 32px rgba(120, 180, 255, 0.45);
}

/* Blue headline variant — large emphasis line in brand blue */
.bw-hero-message__line--blue {
  color: #7eb8f7;
  text-shadow:
    0 3px 16px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(80, 150, 255, 0.3);
}

/* Subheadline — smaller muted line below the main headline */
.bw-hero-message__line--sub {
  margin-top: 1rem;
  font-size: clamp(0.88rem, 1.55vw, 1.05rem) !important;
  font-weight: 400 !important;
  line-height: 1.65;
  color: rgba(210, 228, 255, 0.72);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
  letter-spacing: 0;
}

/* Service page hero typography */
.bw-hero-title.bw-hero-title--service {
  display: block;
  justify-content: unset;
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 4.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(33, 75, 140, 0.3);
}

.bw-hero-subtitle {
  margin: 0 auto;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(232, 242, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.bw-hero-message.is-animating .bw-hero-message__line {
  opacity: 0;
  animation: bw-hero-line-in 0.65s ease forwards;
}

.bw-hero-message.is-animating .bw-hero-message__line:nth-child(2) {
  animation-delay: 0.14s;
}

.bw-hero-message.is-animating .bw-hero-message__line:nth-child(3) {
  animation-delay: 0.28s;
}

.bw-hero-message.is-animating .bw-hero-message__line:nth-child(4) {
  animation-delay: 0.42s;
}

@keyframes bw-hero-line-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bw-hero-bg-layer {
    top: 0;
    height: 100%;
    transition-duration: 0.01ms;
    will-change: auto;
  }

  .bw-hero--service {
    will-change: auto;
  }

  .bw-hero-message,
  .bw-hero-message.is-animating .bw-hero-message__line {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Shared section labels (Who we are / What we deliver) */
.bw-section-heading {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.bw-section-heading--home {
  color: var(--bw-primary);
}

.bw-section-heading--showcase {
  color: var(--bw-navy);
}

.bw-home-band--blue .bw-section-heading--showcase {
  color: rgba(232, 242, 255, 0.98);
}

/* Home — Recent Portfolio intro (centered; lead size matches other section copy) */
.bw-portfolio-section-lead {
  max-width: 640px;
  font-size: var(--bw-font-lead);
  line-height: var(--bw-line-lead);
}

/* Smooth anchor scrolling (Portfolio / Pricing nav) */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

#portfolio,
#pricing {
  scroll-margin-top: 7.5rem;
}

/* Home — alternating white / blue section bands */
.bw-home-band--white {
  background-color: #ffffff;
  color: var(--bw-text-main);
}

.bw-home-band--blue {
  position: relative;
  background:
    radial-gradient(1200px 360px at 8% -10%, rgba(101, 130, 179, 0.28) 0%, rgba(101, 130, 179, 0) 65%),
    radial-gradient(1000px 320px at 92% 110%, rgba(67, 95, 144, 0.24) 0%, rgba(67, 95, 144, 0) 70%),
    linear-gradient(145deg, #0f1f35 0%, #152b49 45%, #1d3b61 100%);
  color: #eef4ff;
  border-top: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bw-home-band--blue::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(
    90deg,
    var(--bw-primary) 0%,
    rgba(33, 75, 140, 0.45) 50%,
    var(--bw-primary) 100%
  );
  opacity: 0.95;
  pointer-events: none;
}

.bw-home-band--blue > .container,
.bw-home-band--blue > .bw-home-wide,
.bw-home-band--blue > .container-fluid {
  position: relative;
  z-index: 1;
}

.bw-home-band--blue .bw-section-heading--home {
  color: rgba(232, 242, 255, 0.98);
}

.bw-home-band--blue .bw-portfolio-section-lead,
.bw-home-band--blue .bw-showcase-lead {
  color: rgba(229, 238, 252, 0.88);
}

.bw-home-band--white .bw-portfolio-section-lead {
  color: var(--bw-text-muted);
}

/* Showcase quote button: dark/primary on white sections, white-card on blue */
.bw-home-band--white a.bw-showcase-quote-btn {
  background: linear-gradient(135deg, var(--bw-navy) 0%, var(--bw-primary) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(26, 86, 219, 0.22);
}

.bw-home-band--white a.bw-showcase-quote-btn:hover {
  background: linear-gradient(135deg, #162231 0%, #1a4080 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(26, 86, 219, 0.32);
  transform: translateY(-4px);
}

/* Pricing section on blue background */
.bw-pricing.bw-home-band--blue .bw-pricing__title {
  color: rgba(232, 242, 255, 0.95);
}

.bw-pricing.bw-home-band--blue .bw-pricing__fixed-label {
  color: rgba(232, 242, 255, 0.88);
}

.bw-pricing.bw-home-band--blue .bw-pricing__divider {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28) 20%, rgba(255, 255, 255, 0.28) 80%, transparent);
}

/* FAQ section on blue background */
.bw-faq.bw-home-band--blue .bw-section-heading--home {
  color: rgba(232, 242, 255, 0.98);
}

.bw-faq.bw-home-band--blue .bw-portfolio-section-lead {
  color: rgba(229, 238, 252, 0.88);
}

.bw-home-band--blue .bw-project-card {
  color: var(--bw-text-main);
}

.bw-home-band--blue .bw-project-card .text-muted {
  color: var(--bw-text-muted) !important;
}

/* Home — How We Work */
.bw-how-we-work {
  /* background from .bw-home-band--blue */
}

@media (min-width: 992px) {
  .bw-how-we-work__steps {
    position: relative;
  }

  .bw-how-we-work__steps::before {
    content: "";
    position: absolute;
    top: 2.85rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(179, 204, 241, 0.25) 12%,
      rgba(179, 204, 241, 0.45) 50%,
      rgba(179, 204, 241, 0.25) 88%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 0;
  }

  .bw-how-we-work__steps > [class*="col-"] {
    position: relative;
    z-index: 1;
  }
}

.bw-step-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--bw-border-subtle);
  border-radius: var(--bw-radius-lg);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bw-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 75, 140, 0.22);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.bw-step-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(33, 75, 140, 0.35);
}

.bw-step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: var(--bw-primary-soft);
  color: var(--bw-primary);
  font-size: 1.15rem;
}

.bw-step-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--bw-text-main);
}

.bw-step-card__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--bw-text-muted);
}

/* Home — Why Choose Us (on dark blue background) */
.bw-why-choose {
  /* background from .bw-home-band--blue */
}

.bw-why-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--bw-radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.bw-why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.bw-why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.bw-why-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.bw-why-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bw-primary, #1a56db) 0%, #2d6cdf 100%);
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.5);
  flex-shrink: 0;
}

.bw-why-card__num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  letter-spacing: -0.03em;
  align-self: flex-start;
}

.bw-why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.bw-why-card__text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(200, 220, 255, 0.72);
}

/* ─── FAQ Section ──────────────────────────────────────────────────────────── */

.bw-faq__accordion {
  max-width: 820px;
  margin: 0 auto;
}

.bw-faq__item {
  background: #ffffff;
  border: 1px solid var(--bw-border-subtle) !important;
  border-radius: var(--bw-radius-lg) !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.bw-faq__item:last-child {
  margin-bottom: 0;
}

.bw-faq__btn {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--bw-text-main);
  background: #ffffff;
  padding: 1.1rem 1.35rem;
  box-shadow: none !important;
}

.bw-faq__btn:not(.collapsed) {
  color: var(--bw-primary);
  background: var(--bw-primary-soft, #eef4ff);
  box-shadow: none !important;
}

.bw-faq__btn:focus {
  box-shadow: none !important;
  outline: none;
}

.bw-faq__body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--bw-text-muted);
  padding: 0.9rem 1.35rem 1.25rem;
  border-top: 1px solid var(--bw-border-subtle);
  background: #f8fbff;
}

/* Home — Pricing (Archilance-style plans) */
.bw-pricing {
  /* background from .bw-home-band--white */
}

.bw-pricing__label {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0;
  background: linear-gradient(135deg, #1a3d6e 0%, var(--bw-primary) 50%, #3d6fad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bw-pricing__divider {
  width: min(6rem, 32vw);
  height: 2px;
  margin: 0.9rem auto 1.1rem;
  background: linear-gradient(90deg, transparent, rgba(33, 75, 140, 0.55) 20%, rgba(33, 75, 140, 0.55) 80%, transparent);
}

.bw-pricing__title {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bw-text-main);
}

.bw-plan-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #dde3ee;
  border-radius: 12px;
  padding: 1.65rem 1.35rem 1.5rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bw-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.bw-plan-card--standard {
  border-color: rgba(33, 75, 140, 0.35);
  box-shadow: 0 16px 42px rgba(33, 75, 140, 0.12);
}

.bw-plan-card__tier {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bw-text-main);
  margin-bottom: 0.65rem;
}

.bw-plan-card__price {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--bw-navy);
  letter-spacing: -0.02em;
}

.bw-plan-card__duration {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--bw-text-muted);
  letter-spacing: 0;
}

.bw-plan-card__hours {
  margin-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bw-text-main);
}

.bw-plan-card__rate {
  margin-top: 0.15rem;
  margin-bottom: 1.15rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bw-text-muted);
}

.bw-plan-card__spacer {
  min-height: 3.1rem;
  margin-bottom: 1.15rem;
}

.bw-plan-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.bw-plan-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.65rem;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.bw-plan-card__btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--bw-navy) 0%, var(--bw-primary) 100%);
  border-color: var(--bw-navy);
}

.bw-plan-card__btn--primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #162231 0%, #1a4080 100%);
  transform: translateY(-1px);
}

.bw-plan-card__btn--secondary {
  color: var(--bw-navy);
  background: #ffffff;
  border-color: #c5cedd;
}

.bw-plan-card__btn--secondary:hover {
  color: var(--bw-primary);
  border-color: var(--bw-primary);
  background: #f6f9fc;
}

.bw-plan-card__features-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bw-text-main);
  margin-bottom: 0.85rem;
}

.bw-plan-feature-list {
  flex-grow: 1;
}

.bw-plan-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #3a4150;
}

.bw-plan-feature-list li:last-child {
  margin-bottom: 0;
}

.bw-plan-feature__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #3a6bb8 0%, var(--bw-primary) 100%);
  color: #ffffff;
  font-size: 0.58rem;
}

.bw-pricing__fixed-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bw-text-main);
  margin-bottom: 0;
}

.bw-home-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 16rem);
  padding: 0.95rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: var(--bw-radius-lg);
  border: none;
  box-shadow: 0 10px 28px rgba(33, 75, 140, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.bw-home-quote-btn:hover,
.bw-home-quote-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(33, 75, 140, 0.34);
  color: #ffffff;
}

@media (min-width: 992px) {
  .bw-pricing__grid > [class*="col-"]:nth-child(2) .bw-plan-card {
    min-height: 100%;
  }
}

@media (max-width: 575.98px) {
  .bw-plan-card {
    padding: 1.35rem 1.1rem 1.25rem;
  }

  .bw-plan-card__price {
    font-size: 1.75rem;
  }
}

/* Home — About band: full-bleed split, light theme */
.bw-home-about {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border-top: 2px solid #e2e8f3;
  border-bottom: 2px solid #d8e0ef;
  box-shadow:
    inset 0 12px 0 #f1f4fb,
    inset 0 -14px 0 rgba(33, 75, 140, 0.18);
}

.bw-home-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(33, 75, 140, 0.045) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

.bw-home-about__row {
  min-height: 0;
}

@media (min-width: 992px) {
  .bw-home-about__row {
    min-height: min(34vh, 360px);
  }
}

.bw-home-about__visual-col {
  position: relative;
  z-index: 1;
}

.bw-home-about__visual {
  position: relative;
  min-height: 220px;
  height: 100%;
}

@media (min-width: 992px) {
  .bw-home-about__visual {
    min-height: 100%;
  }
}

.bw-home-about__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.bw-home-about__visual-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #f8fafc;
  background: linear-gradient(135deg, rgba(15, 31, 53, 0.88) 0%, rgba(21, 43, 73, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.bw-home-about__caption-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #c7d9f8;
  flex-shrink: 0;
}

.bw-home-about__content-col {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

.bw-home-about__content-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  padding: 1.75rem 1.25rem 2rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--bw-text-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

@media (min-width: 992px) {
  .bw-home-about__content-inner {
    padding: 1.85rem 2rem 2rem 1.75rem;
    margin-left: 0;
    margin-right: auto;
    max-width: 34rem;
  }
}

@media (min-width: 1200px) {
  .bw-home-about__content-inner {
    padding-left: 2.5rem;
    max-width: 36rem;
  }
}

.bw-home-about__title {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: #152032;
  margin-bottom: 0.65rem;
}

.bw-home-about__title-accent {
  background: linear-gradient(90deg, #214b8c 0%, #3a6bb8 50%, #214b8c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bw-home-about__lead {
  font-size: var(--bw-font-lead);
  line-height: var(--bw-line-lead);
  color: var(--bw-text-muted);
  margin-bottom: 0.9rem;
}

.bw-home-about__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bw-home-about__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: var(--bw-font-sm);
  line-height: 1.45;
  color: #3d4759;
}

.bw-home-about__hi-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--bw-primary);
  background: var(--bw-primary-soft);
  border: 1px solid rgba(33, 75, 140, 0.18);
}

.bw-home-about__actions {
  margin-top: 0;
}

.bw-home-about__btn-primary {
  box-shadow: 0 6px 18px rgba(33, 75, 140, 0.22);
}

.bw-project-category-link {
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.bw-project-category-link:hover {
  background-color: rgba(33, 75, 140, 0.18) !important;
  color: var(--bw-primary) !important;
  transform: translateY(-1px);
}

.bw-hero--service {
  background-size: cover;
  background-position: center var(--bw-hero-bg-y, 50%);
  background-repeat: no-repeat;
  will-change: background-position;
}

.bw-hero--service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 75% at 50% 42%, rgba(8, 14, 28, 0.45) 0%, rgba(8, 12, 20, 0.72) 72%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.58) 0%, rgba(8, 12, 20, 0.62) 40%, rgba(8, 12, 20, 0.8) 100%);
  pointer-events: none;
}

.bw-hero--service-architectural-design-planning {
  background-image: url("../images/services/architectural-design-planning.png");
}

.bw-hero--service-structural-mep-coordination,
.bw-hero--service-structural-design-analysis {
  background-image: url("../images/services/structural-design-analysis.png");
}

.bw-hero--service-3d-design-visualization {
  background-image: url("../images/services/3d-design-visualization.png");
}

.bw-hero--service-revit-drafting-bim-services,
.bw-hero--service-mep-drawings {
  background-image: url("../images/services/mep-drawings.png");
}

.bw-hero--service-construction-city-permit-drawings {
  background-image: url("../images/services/construction-city-permit-drawings.png");
}

.bw-hero--service-construction-estimation-material-takeoff {
  background-image: url("../images/services/construction-estimation-material-takeoff.png");
}

/* Services dropdown – modern, professional */
.bw-navbar .dropdown-menu {
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  min-width: 205px;
  max-width: 230px;
  border: 1px solid var(--bw-border-subtle);
  border-radius: var(--bw-radius-md);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
  background-color: #ffffff;
  overflow: hidden;
}

.bw-navbar .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  line-height: 1.25;
  white-space: normal;
  color: var(--bw-text-main);
  border-radius: 0;
  margin: 0;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.bw-navbar .dropdown-item:hover,
.bw-navbar .dropdown-item:focus {
  background-color: var(--bw-primary-soft);
  color: var(--bw-primary);
}

.bw-navbar .dropdown-divider {
  margin: 0.35rem 0.5rem;
  border-color: var(--bw-border-subtle);
}

.bw-navbar .nav-link.dropdown-toggle {
  font-weight: 500;
}

@media (min-width: 992px) {
  .bw-services-dropdown {
    position: relative;
  }

  /* Fade out when closed — short duration so it doesn’t feel sluggish */
  .bw-navbar .bw-services-dropdown .dropdown-menu {
    display: block !important;
    left: 0;
    right: auto;
    margin-top: 0.35rem;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.22s ease,
      transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.22s;
  }

  /* Invisible bridge so the cursor can move into the menu without losing hover */
  .bw-navbar .bw-services-dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 0.75rem;
  }

  /* While fading out, allow pointer so user can re-enter and cancel close */
  .bw-navbar .bw-services-dropdown .dropdown-menu.bw-services-dropdown-menu--catch {
    pointer-events: auto !important;
  }

  /* Open via JS class (delayed close) or keyboard focus inside the item */
  .bw-navbar .bw-services-dropdown.bw-services-dropdown--open .dropdown-menu,
  .bw-navbar .bw-services-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.35s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }
}

.bw-service-card {
  border-radius: var(--bw-radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--bw-border-subtle);
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.bw-service-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--bw-border-subtle);
  background-image: linear-gradient(135deg, #f5f7fb, #e7edf8);
  position: relative;
}

.bw-service-icon::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 10px;
  border: 2px solid rgba(33, 75, 140, 0.3);
}

.bw-service-icon.mep::after {
  border-style: dashed;
}

.bw-service-icon.structural::after {
  border-top-width: 3px;
}

.bw-service-icon.architectural::after {
  border-radius: 4px;
}

.bw-service-icon.visualization::after {
  border-radius: 50%;
  border-style: solid;
}

.bw-service-icon.permit::after {
  border-style: double;
  border-width: 3px;
}

.bw-service-icon.takeoff::after {
  border-style: dotted;
  border-width: 2px;
}

.letter-spacing-tight {
  letter-spacing: 0.08em;
}

.bw-showcase-lead {
  max-width: 640px;
  font-size: var(--bw-font-lead);
  line-height: var(--bw-line-lead);
  color: var(--bw-text-muted);
}

.bw-home-band--blue .bw-showcase-lead {
  color: rgba(229, 238, 252, 0.9);
}

.bw-showcase-title {
  color: var(--bw-text-main);
}

.bw-home-band--blue .bw-showcase-title {
  color: #f3f7ff;
}

.bw-services-showcase {
  /* background from .bw-home-band--blue */
}

.bw-service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: var(--bw-radius-lg);
  border: 1px solid rgba(179, 204, 241, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 247, 255, 0.94) 100%);
  color: #12263f;
  box-shadow: 0 12px 28px rgba(9, 18, 31, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.bw-service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 218, 250, 0.8);
  box-shadow: 0 18px 46px rgba(4, 10, 18, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 242, 255, 0.98) 100%);
}

.bw-service-tile:focus-visible {
  outline: 2px solid var(--bw-primary);
  outline-offset: 2px;
}

.bw-service-tile__icon {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #12315f;
  background: linear-gradient(160deg, rgba(223, 236, 255, 0.92) 0%, rgba(197, 218, 250, 0.92) 100%);
  box-shadow: inset 0 0 0 1px rgba(56, 94, 158, 0.22);
}

.bw-service-tile__icon i {
  font-size: 1.45rem;
}

.bw-service-tile h3 {
  color: #102946;
}

.bw-service-tile p {
  font-size: var(--bw-font-sm);
  line-height: var(--bw-line-body);
  color: #4e5f76;
}

.bw-service-tile__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: #14386c;
  margin-top: auto;
}

.bw-service-tile:hover .bw-service-tile__cta {
  text-decoration: underline;
  text-underline-offset: 3px;
}

a.bw-showcase-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--bw-radius-lg);
  border: 1px solid rgba(179, 204, 241, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 247, 255, 0.94) 100%);
  color: #14386c;
  box-shadow: 0 12px 28px rgba(9, 18, 31, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

a.bw-showcase-quote-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 218, 250, 0.8);
  box-shadow: 0 18px 46px rgba(4, 10, 18, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 242, 255, 0.98) 100%);
  color: #0f2547;
}

a.bw-showcase-quote-btn:focus-visible {
  outline: 2px solid var(--bw-primary);
  outline-offset: 2px;
}

.bw-project-card {
  border-radius: var(--bw-radius-lg);
  padding: 1rem;
  border: 1px solid var(--bw-border-subtle);
  background-color: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.bw-project-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.bw-project-title-link:hover {
  color: var(--bw-primary);
  text-decoration: underline;
  text-decoration-color: rgba(33, 75, 140, 0.35);
}

.bw-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--bw-radius-md);
  background-color: var(--bw-gray-light);
}

.bw-slider-inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 65%;
}

.bw-slider--detail {
  border-radius: 16px;
}

.bw-slider-inner--detail {
  padding-top: 58%;
}

.bw-service-detail-intro {
  max-width: 52rem;
}

.bw-service-detail-deliverables li {
  margin-bottom: 0.4rem;
}

.bw-service-detail-deliverables li:last-child {
  margin-bottom: 0;
}

.bw-slider-inner--service-page {
  padding-top: 76%;
}

.bw-project-card--service-page {
  padding: 1.2rem 1.15rem 1.25rem;
}

@media (min-width: 992px) {
  .bw-project-card--service-page {
    padding: 1.45rem 1.35rem 1.5rem;
  }
}

.bw-project-detail-card {
  border-radius: var(--bw-radius-lg);
  border: 1px solid var(--bw-border-subtle);
  background-color: #ffffff;
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.bw-project-detail-inner {
  width: 95%;
  max-width: 95%;
  margin-inline: auto;
}

.bw-project-gallery-wrapper {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.bw-slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 360ms ease, transform 360ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bw-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bw-slider-item.active {
  opacity: 1;
  transform: translateX(0);
}

.bw-slider-placeholder {
  padding: 1rem;
  background: repeating-linear-gradient(
    -45deg,
    #f0f2f7,
    #f0f2f7 6px,
    #e4e7f0 6px,
    #e4e7f0 12px
  );
}

.bw-slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background-color: rgba(255, 255, 255, 0.9);
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
}

.bw-slider-control.prev {
  left: 0.5rem;
}

.bw-slider-control.next {
  right: 0.5rem;
}

.bw-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0 0.25rem;
}

.bw-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--bw-primary);
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.6;
  transition: background-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.bw-slider-dot.is-active {
  background-color: var(--bw-primary);
  opacity: 1;
  transform: scale(1.15);
}

.bw-country-select-wrap {
  min-width: 0;
}

.bw-country-flag-img {
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid var(--bw-border-subtle);
  object-fit: cover;
  background-color: #f3f4f6;
}

.bw-country-select {
  font-size: 0.92rem;
  color: #212529;
  background-color: #ffffff;
  min-height: 38px;
}

.bw-country-select option {
  font-size: 0.92rem;
  color: #212529;
  background-color: #ffffff;
}

.bw-side-panel,
.bw-card {
  border-radius: var(--bw-radius-lg);
  border: 1px solid var(--bw-border-subtle);
  background-color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

/* Testimonials — Google-style review cards (above footer) */
.bw-testimonials {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid var(--bw-border-subtle);
  border-bottom: 1px solid var(--bw-border-subtle);
}

.bw-testimonials__header {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.bw-testimonials__eyebrow {
  font-size: clamp(1.28rem, 3.1vw, 1.72rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  line-height: 1.2;
  color: var(--bw-text-main);
}

.bw-testimonials__rating-line {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.bw-testimonials__stars {
  display: inline-flex;
  gap: 0.12rem;
  color: #fbbc04;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.bw-testimonials__header-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.bw-testimonials__stars--header {
  font-size: 1.35rem;
  gap: 0.18rem;
}

.bw-testimonials__stars .fa-star {
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.06));
}

.bw-testimonials__score {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bw-text-main);
  letter-spacing: -0.02em;
}

.bw-testimonials__title {
  font-size: clamp(1.55rem, 3.35vw, 2.1rem);
  font-weight: 800;
  color: var(--bw-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.bw-testimonials__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.bw-testimonials__g-icon {
  color: #5f6368;
  font-size: 1rem;
}

/* Full-width marquee row (right → left scroll) */
.bw-testimonials__marquee {
  overflow: hidden;
  width: 100%;
  margin-bottom: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.bw-testimonials__track {
  display: flex;
  width: max-content;
  animation: bw-testimonials-marquee 95s linear infinite;
}

.bw-testimonials__track:hover {
  animation-play-state: paused;
}

.bw-testimonials__group {
  display: flex;
  align-items: stretch;
  gap: 1.15rem;
  padding-right: 1.15rem;
  flex-shrink: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .bw-testimonials__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    row-gap: 1rem;
    column-gap: 1rem;
    padding: 0 1rem;
  }

  .bw-testimonials__group[aria-hidden="true"] {
    display: none;
  }

  .bw-testimonials__group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
    width: 100%;
  }

  .bw-testimonials__marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.bw-testimonial-card {
  background: #ffffff;
  border: 1px solid var(--bw-border-subtle);
  border-radius: var(--bw-radius-lg);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.bw-testimonial-card--marquee {
  flex: 0 0 auto;
  width: clamp(17.5rem, 78vw, 21.5rem);
  min-height: 100%;
}

.bw-testimonial-card:hover {
  border-color: rgba(33, 75, 140, 0.2);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.bw-testimonial-card__top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.bw-testimonial-card__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8eef6 0%, #d4e2f4 100%);
  color: var(--bw-primary);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.bw-testimonial-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bw-text-main);
  line-height: 1.2;
}

.bw-testimonial-card__posted {
  font-size: 0.75rem;
  color: var(--bw-text-muted);
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.28rem;
}

.bw-testimonial-card__posted .fa-google {
  font-size: 0.85rem;
  color: #5f6368;
}

.bw-testimonial-card__stars {
  display: flex;
  gap: 0.1rem;
  color: #fbbc04;
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}

.bw-testimonial-card__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #3c4043;
}

.bw-footer {
  background: linear-gradient(145deg, #101f36 0%, #172f4e 48%, #1f3f67 100%);
  border-top: 1px solid rgba(201, 219, 246, 0.22);
  color: #eef4ff;
  font-size: var(--bw-font-footer);
  line-height: var(--bw-line-body);
}

.bw-footer h5 {
  font-size: var(--bw-font-footer-h5);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.bw-footer h6 {
  font-size: var(--bw-font-footer-h6);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bw-footer .small {
  font-size: var(--bw-font-sm) !important;
  line-height: var(--bw-line-body);
}

.bw-footer a {
  text-decoration: none;
  color: rgba(218, 231, 252, 0.86);
}

.bw-footer a:hover {
  color: #ffffff;
}

.bw-footer-service-list li {
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.bw-footer-service-list li:last-child {
  margin-bottom: 0;
}

.bw-footer-service-link {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: rgba(218, 231, 252, 0.92);
  line-height: 1.35;
  transition: color 0.15s ease;
}

.bw-footer-service-link:hover {
  color: #ffffff;
}

.bw-footer-service-link__arrow {
  flex-shrink: 0;
  width: 1rem;
  margin-top: 0.12em;
  font-size: 0.65rem;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.15s ease;
}

.bw-footer-service-link:hover .bw-footer-service-link__arrow {
  transform: translateX(3px);
  opacity: 1;
}

.bw-footer .text-muted {
  color: rgba(200, 216, 239, 0.84) !important;
}

.bw-footer .border-top {
  border-color: rgba(201, 219, 246, 0.24) !important;
}

.bw-footer-grid > .col {
  min-width: 0;
}

.bw-footer .bw-social-block {
  color: rgba(255, 255, 255, 0.92);
}

.bw-footer .bw-social-block:hover {
  color: #ffffff;
}

.bw-footer-contact-line {
  color: rgba(200, 216, 239, 0.84);
}

.btn-primary {
  background-color: var(--bw-primary);
  border-color: var(--bw-primary);
}

.btn-primary:hover {
  background-color: var(--bw-navy-soft);
  border-color: var(--bw-navy-soft);
}

.btn-outline-secondary {
  border-color: #c5cad6;
  color: #4b5563;
}

.btn-outline-secondary:hover {
  background-color: #e4e7f0;
  border-color: #c5cad6;
  color: #111827;
}

.badge.bg-primary-subtle {
  background-color: var(--bw-primary-soft) !important;
  color: var(--bw-primary) !important;
}

.bw-whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background: linear-gradient(145deg, #1faa59 0%, #159447 100%);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.65rem 1rem 0.65rem 0.8rem;
  box-shadow: 0 12px 26px rgba(14, 77, 38, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bw-whatsapp-float i {
  font-size: 1.2rem;
}

.bw-whatsapp-float span {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.bw-whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(14, 77, 38, 0.34);
  color: #ffffff;
}

/* Click-to-zoom lightbox (project sliders) */
.bw-slider-img--zoomable {
  cursor: zoom-in;
}

.bw-lightbox[hidden] {
  display: none !important;
}

.bw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.bw-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 18, 0.88);
  cursor: zoom-out;
}

.bw-lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  text-align: center;
}

.bw-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 2.5rem);
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.bw-lightbox__caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.bw-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.bw-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.bw-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.bw-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.26);
}

.bw-lightbox__nav--prev {
  left: 1rem;
}

.bw-lightbox__nav--next {
  right: 1rem;
}

body.bw-lightbox-open {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .bw-hero--bg,
  .bw-hero--service {
    min-height: clamp(460px, 70vh, 720px);
  }

  .bw-hero-bg-layer {
    top: -22%;
    height: 144%;
  }

  .bw-hero--bg .bw-hero-center,
  .bw-hero--service .bw-hero-center {
    padding: 2.5rem 0 3rem;
  }

  .bw-hero-message__line--emph {
    font-size: clamp(1.3rem, 5vw, 1.85rem);
  }

  .bw-hero-center {
    padding: 2rem 0;
  }

  .bw-project-card {
    padding: 0.85rem;
  }

  .bw-service-card {
    padding: 1.25rem;
  }
}

/* ─── Hero 70/30 split layout ─────────────────────────────────────────────── */

.bw-hero--split {
  /* stretch children to full hero height instead of centering */
  align-items: stretch;
}

/* Wrapper sits at z-index 2 (same as .bw-hero .container was) */
.bw-hero .bw-hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
}

/* Left column — 60% */
.bw-hero-split__left {
  flex: 0 0 60%;
  display: flex;
  align-items: center;
  padding: 4rem 3.5rem 4rem 4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.bw-hero-split__left-inner {
  width: 100%;
  max-width: 38rem;
}

/* Override centering from .bw-hero-center for the split context */
.bw-hero--split .bw-hero-title {
  justify-content: flex-start;
}

.bw-hero--split .bw-hero-copy {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
  /* Height set and animated by JS — no min-height needed */
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.bw-hero--split .bw-hero-message__line {
  text-align: left;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.bw-hero--split .bw-hero-message__line--emph {
  font-size: clamp(1.85rem, 4.8vw, 3.1rem);
}

.bw-hero--split .bw-hero-message__line--accent {
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
}

.bw-hero--split .bw-hero-message__line--sub {
  font-size: clamp(0.88rem, 1.4vw, 1.02rem) !important;
  margin-top: 0.85rem;
}

/* CTAs in left column */
.bw-hero-split__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.bw-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--bw-primary);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.bw-hero-btn-primary:hover {
  background: #1a4080;
  color: #ffffff;
  transform: translateY(-1px);
}

.bw-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.bw-hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

/* Right column — 40% */
.bw-hero-split__right {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.25rem;
  background: rgba(6, 12, 24, 0.42);
  backdrop-filter: blur(6px);
}

/* Right panel card */
.bw-hero-panel {
  width: 100%;
  max-width: 19rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.bw-hero-panel__badge {
  display: inline-block;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  background: #f5a623;
  color: #1a1f2e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  width: fit-content;
}

.bw-hero-panel__title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.22;
  margin: 0;
  letter-spacing: -0.02em;
}

.bw-hero-panel__title span {
  color: #6aaaf5;
}

.bw-hero-panel__sub {
  font-size: 0.92rem;
  color: rgba(200, 220, 250, 0.82);
  margin: 0;
  line-height: 1.52;
}

.bw-hero-panel__pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.5rem;
  background: var(--bw-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(33, 75, 140, 0.38);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.bw-hero-panel__pricing-btn:hover {
  background: #1a4080;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(33, 75, 140, 0.48);
}

.bw-hero-panel__call {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: rgba(210, 230, 255, 0.88);
  transition: color 0.15s ease;
}

.bw-hero-panel__call:hover {
  color: #ffffff;
}

.bw-hero-panel__call-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(210, 230, 255, 0.88);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.bw-hero-panel__call:hover .bw-hero-panel__call-icon {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}

.bw-hero-panel__call-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.bw-hero-panel__call-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.bw-hero-panel__call-text small {
  font-size: 0.76rem;
  color: rgba(185, 210, 248, 0.72);
  line-height: 1.3;
}

/* ─── Top bar: FOLLOW US label + LinkedIn icon ─────────────────────────────── */

.bw-top-bar__follow {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.bw-top-bar__follow-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #ffffff;
  white-space: nowrap;
}

.bw-top-bar__follow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #0A66C2;
  color: #fff;
  font-size: 0.78rem;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.bw-top-bar__follow-icon:hover {
  background: #004182;
  color: #fff;
  box-shadow: 0 0 10px rgba(10, 102, 194, 0.7), 0 0 20px rgba(10, 102, 194, 0.35);
  transform: translateY(-1px);
}

/* ─── Footer: LinkedIn pill button ─────────────────────────────────────────── */

.bw-footer-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  border: none;
  background: #0A66C2;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.bw-footer-linkedin-btn:hover {
  background: #004182;
  color: #fff;
  box-shadow: 0 4px 16px rgba(10, 102, 194, 0.45);
  transform: translateY(-1px);
}

/* Mobile: stack left then right */
@media (max-width: 991.98px) {
  .bw-hero--split {
    align-items: flex-start;
  }

  .bw-hero .bw-hero-split {
    flex-direction: column;
  }

  .bw-hero-split__left {
    flex: 1 0 auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2.5rem 1.5rem 2rem;
  }

  .bw-hero-split__left-inner {
    max-width: 100%;
  }

  .bw-hero-split__right {
    flex: 0 0 auto;
    width: 100%;
    padding: 2rem 1.5rem 2.5rem;
    backdrop-filter: none;
    background: rgba(6, 12, 24, 0.35);
  }

  .bw-hero-panel {
    max-width: 100%;
  }
}

