/* ------------------------------------------------------------------
   BlueRose Technologies — shared site styles
   Brand palette:
     --br-primary: #1B67A5 (deep blue)
     --br-cyan:    #16B3C6 (secondary)
     --br-yellow:  #F5E14F (accent)
   Direction A (.dir-classic): sober, structured, deep navy
   Direction B (.dir-editorial): higher contrast, yellow forward,
                                 large editorial type, asymmetric.
   ------------------------------------------------------------------ */

:root {
  --br-primary: #1B67A5;
  --br-primary-deep: #0d3f6e;
  --br-cyan: #16B3C6;
  --br-cyan-deep: #0d8896;
  --br-yellow: #F5E14F;
  --br-yellow-deep: #d6c133;
  --br-ink: #0b1a2a;
  --br-ink-soft: #2a3949;
  --br-ink-faint: #5e6b7a;
  --br-line: #e4e8ee;
  --br-line-strong: #c9d1dc;
  --br-bg: #ffffff;
  --br-bg-soft: #f6f8fb;
  --br-bg-dark: #06182d;
  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

.br-site,
.br-site * { box-sizing: border-box; }

.br-site {
  font-family: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--br-ink);
  background: var(--br-bg);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow: hidden;
}

.br-site h1, .br-site h2, .br-site h3, .br-site h4 {
  font-family: 'Rubik', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--br-ink);
  text-wrap: balance;
}

.br-site p { margin: 0; text-wrap: pretty; }

.br-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ----- NAVBAR ----- */
.br-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--br-line);
}
.br-nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 72px;
  padding: 0 56px;
  max-width: 1440px;
  margin: 0 auto;
}
.br-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--br-ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.br-logo-mark {
  width: 32px; height: 32px;
  position: relative;
}
.br-logo-suffix { color: var(--br-ink-faint); font-weight: 400; }

.br-nav-items {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.br-nav-item {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--br-ink-soft);
  cursor: pointer;
  text-decoration: none;
  border-radius: 6px;
  transition: color .18s var(--ease-out), background .18s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.br-nav-item:hover { color: var(--br-ink); background: var(--br-bg-soft); }
.br-nav-item .br-chev {
  width: 10px; height: 10px;
  transition: transform .18s var(--ease-out);
  opacity: .55;
}
.br-nav-item.has-mega:hover .br-chev { transform: rotate(180deg); }

.br-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--br-ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s var(--ease-out), background .2s var(--ease-out);
}
.br-nav-cta:hover { transform: translateY(-1px); background: var(--br-primary); }

/* ----- MEGA MENU ----- */
.br-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 760px;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 60px -20px rgba(11, 26, 42, .25);
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease-out), transform .25s var(--ease-out);
  z-index: 200;
}
.br-nav-item.has-mega:hover .br-mega,
.br-nav-item.has-mega:focus-within .br-mega,
.br-mega:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* The leftmost trigger (About) would overflow the viewport's left edge when
   centered, so anchor its panel to the trigger's left edge instead. */
.br-nav-items > .br-nav-item:first-child .br-mega {
  left: 0;
  transform: translateX(0) translateY(-6px);
}
.br-nav-items > .br-nav-item:first-child.has-mega:hover .br-mega,
.br-nav-items > .br-nav-item:first-child.has-mega:focus-within .br-mega,
.br-nav-items > .br-nav-item:first-child .br-mega:hover {
  transform: translateX(0) translateY(0);
}
/* Official BlueRose logo image — header (swaps in dark mode) + footer */
.br-logo-img { display: block; height: 44px; width: auto; }
.br-logo-img--light { display: none; }
.br-site.theme-dark .br-logo-img--dark { display: none; }
.br-site.theme-dark .br-logo-img--light { display: block; }
.br-footer-logo { display: block; height: 48px; width: auto; }
.br-mega-col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--br-ink-faint);
  margin-bottom: 14px;
}
.br-mega-link {
  display: flex; flex-direction: column;
  padding: 9px 10px;
  border-radius: 8px;
  margin: 0 -10px;
  cursor: pointer;
  transition: background .15s, transform .15s;
  text-decoration: none;
  color: inherit;
}
.br-mega-link:hover { background: var(--br-bg-soft); transform: translateX(2px); }
.br-mega-link-name { font-size: 14px; font-weight: 600; color: var(--br-ink); }
.br-mega-link-desc { font-size: 12px; color: var(--br-ink-faint); margin-top: 2px; }

.br-mega-feature {
  background: linear-gradient(150deg, var(--br-primary), var(--br-primary-deep));
  color: #fff;
  border-radius: 12px;
  padding: 22px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.br-mega-feature::before {
  content: '';
  position: absolute; inset: -30% -10% auto auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,225,79,.25), transparent 70%);
  pointer-events: none;
}
.br-mega-feature-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--br-yellow);
}
.br-mega-feature-title {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 6px;
  line-height: 1.15;
}
.br-mega-feature-body {
  font-size: 13px;
  opacity: .85;
  margin-top: 10px;
  line-height: 1.5;
}
.br-mega-feature-cta {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--br-yellow);
  align-self: flex-start;
}

/* ----- HERO ----- */
.br-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0 120px;
  background: var(--br-bg);
  transition: background .5s var(--ease-out), color .5s var(--ease-out);
}
.br-hero.dark {
  background: var(--br-bg-dark);
  color: #fff;
}
.br-hero.dark h1, .br-hero.dark .br-eyebrow, .br-hero.dark .br-hero-meta-label { color: #fff; }
.br-hero.dark .br-hero-sub { color: rgba(255,255,255,.78); }
.br-hero.dark .br-hero-meta-num { color: var(--br-yellow); }

.br-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.br-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--br-primary);
  padding: 6px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
}
.br-hero.dark .br-eyebrow { color: var(--br-cyan); }
.br-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--br-yellow);
  box-shadow: 0 0 0 4px rgba(245,225,79,.25);
  animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245,225,79,.25); }
  50% { box-shadow: 0 0 0 7px rgba(245,225,79,0); }
}

.br-hero-h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 20px 0 22px;
}
.br-hero-h1 .word {
  display: inline-block;
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .br-hero-h1.anim .word {
    opacity: 0;
    transform: translateY(18px);
    animation: wordRise .7s var(--ease-out) forwards;
  }
}
@keyframes wordRise {
  to { opacity: 1; transform: translateY(0); }
}
.br-hero-h1 .accent { color: var(--br-primary); }
.br-hero.dark .br-hero-h1 .accent { color: var(--br-cyan); }
.br-hero-h1 .underline {
  position: relative;
  background-image: linear-gradient(transparent 78%, var(--br-yellow) 78%, var(--br-yellow) 96%, transparent 96%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (prefers-reduced-motion: no-preference) {
  .br-hero-h1.anim .underline {
    background-size: 0% 100%;
    animation: underlineGrow 1.2s var(--ease-out) .9s forwards;
  }
}
@keyframes underlineGrow {
  to { background-size: 100% 100%; }
}

.br-hero-sub {
  font-size: 18px;
  color: var(--br-ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.br-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.br-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease-spring), box-shadow .2s var(--ease-out), background .2s var(--ease-out);
  background: var(--br-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.br-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .55s var(--ease-out);
  z-index: -1;
}
.br-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(11,26,42,.35); }
.br-btn:hover::after { transform: translateX(110%); }
.br-btn-primary { background: var(--br-primary); color: #fff; }
.br-btn-primary:hover { background: var(--br-primary-deep); }
.br-btn-ghost {
  background: transparent;
  color: var(--br-ink);
  border-color: var(--br-line-strong);
}
.br-hero.dark .br-btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.br-btn-ghost:hover { background: var(--br-bg-soft); }
.br-hero.dark .br-btn-ghost:hover { background: rgba(255,255,255,.08); }
.br-btn-accent { background: var(--br-yellow); color: var(--br-ink); }
.br-btn-accent:hover { background: var(--br-yellow-deep); }

.br-arrow { width: 14px; height: 14px; flex-shrink: 0; transition: transform .25s var(--ease-out); }
.br-btn:hover .br-arrow { transform: translateX(3px); }

.br-hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 36px;
}
.br-hero-meta-item {
  border-left: 2px solid var(--br-yellow);
  padding-left: 14px;
}
.br-hero-meta-num { font-size: 26px; font-weight: 600; font-family: 'Rubik', sans-serif; color: var(--br-ink); }
.br-hero-meta-label { font-size: 12px; color: var(--br-ink-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

.br-hero-visual {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* ----- HERO GLOBE STAGE ----- */
.br-hero-stage {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.br-globe-wrap {
  position: relative;
  width: 100%;
  animation: globeFloat 8s ease-in-out infinite;
}
@keyframes globeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.br-globe-svg {
  width: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 30px 50px rgba(11,26,42,0.18));
}
.br-hero.dark .br-globe-svg { filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); }
.br-globe-rail {
  position: absolute;
  left: 50%;
  bottom: -6%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  max-width: 86%;
}
.br-globe-chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--br-ink-soft);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--br-line);
  backdrop-filter: blur(8px);
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  animation: chipIn .6s var(--ease-out) forwards;
  box-shadow: 0 6px 16px -8px rgba(11,26,42,0.25);
}
.br-hero.dark .br-globe-chip {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
}
@keyframes chipIn { to { opacity: 1; transform: translateY(0); } }

.br-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #16B3C6;
  box-shadow: 0 0 0 4px rgba(22,179,198,.2);
  animation: livePulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
  display: inline-block;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22,179,198,.2); }
  50% { box-shadow: 0 0 0 7px rgba(22,179,198,0); }
}

/* ----- SECTIONS ----- */
.br-section { padding: 110px 0; position: relative; }
.br-section-tight { padding: 80px 0; }
.br-section-soft { background: var(--br-bg-soft); }
.br-section-dark { background: var(--br-bg-dark); color: #fff; }
.br-section-dark h2, .br-section-dark h3, .br-section-dark h4 { color: #fff; }

.br-section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.br-section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--br-primary);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.br-section-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--br-yellow);
  display: inline-block;
}
.br-section-h2 {
  font-size: 46px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.br-section-lede {
  font-size: 17px;
  color: var(--br-ink-soft);
  line-height: 1.55;
  max-width: 580px;
}
.br-section-dark .br-section-lede { color: rgba(255,255,255,.72); }

/* ----- COUNTERS ----- */
.br-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 48px;
  border-top: 1px solid var(--br-line);
  border-bottom: 1px solid var(--br-line);
  padding: 32px 0;
}
.br-counter { padding: 0 20px; border-left: 1px solid var(--br-line); }
.br-counter:first-child { border-left: none; padding-left: 0; }
.br-counter-num {
  font-family: 'Rubik', sans-serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--br-primary);
  display: flex;
  align-items: baseline;
}
.br-counter-suffix { font-size: 36px; color: var(--br-cyan); margin-left: 2px; }
.br-counter-label {
  margin-top: 12px;
  font-size: 13px;
  color: var(--br-ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ----- SOLUTION CARDS ----- */
.br-sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.br-sol-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 18px;
  padding: 26px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease-out), border-color .25s var(--ease-out), box-shadow .35s var(--ease-out);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.br-sol-card::before {
  content: '';
  position: absolute;
  inset: auto -40% -50% auto;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--br-card-glow, var(--br-cyan)), transparent 65%);
  opacity: 0;
  transition: opacity .4s var(--ease-out), transform .6s var(--ease-out);
  z-index: -1;
}
.br-sol-card:hover {
  transform: translateY(-6px);
  border-color: var(--br-primary);
  box-shadow: 0 28px 48px -22px rgba(11,26,42,.25);
}
.br-sol-card:hover::before {
  opacity: .35;
  transform: scale(1.15);
}
.br-sol-card.color-sky { --br-card-glow: rgba(27,103,165,.5); }
.br-sol-card.color-teal { --br-card-glow: rgba(22,179,198,.5); }
.br-sol-card.color-yellow { --br-card-glow: rgba(245,225,79,.7); }

.br-sol-card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--br-ink-faint);
  margin-bottom: 12px;
}
.br-sol-card-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.br-sol-card-desc {
  font-size: 14px;
  color: var(--br-ink-soft);
  line-height: 1.55;
  flex: 1;
}
.br-sol-card-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--br-line-strong);
}
.br-sol-card-metric-n {
  font-family: 'Rubik', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--br-primary);
}
.br-sol-card-metric-label {
  font-size: 12px;
  color: var(--br-ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.br-sol-card-arrow {
  position: absolute;
  top: 26px; right: 26px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--br-bg-soft);
  transition: background .25s, transform .25s;
}
.br-sol-card:hover .br-sol-card-arrow {
  background: var(--br-primary);
  color: #fff;
  transform: rotate(-45deg);
}

/* ----- SERVICES STRIP ----- */
.br-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--br-line);
  border: 1px solid var(--br-line);
  border-radius: 18px;
  overflow: hidden;
}
.br-service-cell {
  background: #fff;
  padding: 30px 26px;
  position: relative;
  transition: background .25s var(--ease-out);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
}
.br-service-cell:hover { background: var(--br-bg-soft); }
.br-service-cell .br-service-icon {
  width: 44px; height: 44px;
  margin-bottom: 16px;
  color: var(--br-primary);
  transition: transform .35s var(--ease-spring), color .25s;
}
.br-service-cell:hover .br-service-icon {
  transform: scale(1.1) rotate(-6deg);
  color: var(--br-cyan);
}
.br-service-name { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.br-service-body { font-size: 13px; color: var(--br-ink-faint); line-height: 1.5; flex: 1; }
.br-service-learn {
  font-size: 12px;
  font-weight: 600;
  color: var(--br-primary);
  margin-top: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
  display: flex; align-items: center; gap: 4px;
}
.br-service-cell:hover .br-service-learn { opacity: 1; transform: translateY(0); }

/* ----- INDUSTRIES (FLIP CARDS) ----- */
.br-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.br-industry-card {
  height: 320px;
  perspective: 1200px;
  cursor: pointer;
}
.br-industry-flip {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .7s var(--ease-out);
}
.br-industry-card:hover .br-industry-flip { transform: rotateY(180deg); }
.br-industry-face {
  position: absolute; inset: 0;
  border-radius: 18px;
  padding: 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.br-industry-front {
  background: var(--br-ink);
  color: #fff;
  overflow: hidden;
}
.br-industry-front::after {
  content: '';
  position: absolute; inset: auto -40% -50% auto;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--br-primary), transparent 65%);
  opacity: .6;
}
.br-industry-front .br-industry-name {
  font-family: 'Rubik', sans-serif;
  font-size: 28px;
  font-weight: 600;
  position: relative;
}
.br-industry-front .br-industry-lead {
  font-size: 14px;
  opacity: .8;
  position: relative;
  max-width: 220px;
}
.br-industry-back {
  background: var(--br-yellow);
  transform: rotateY(180deg);
  color: var(--br-ink);
}
.br-industry-back .br-industry-name { font-size: 18px; font-weight: 600; }
.br-industry-back .br-industry-body { font-size: 14px; line-height: 1.5; }
.br-industry-back .br-industry-stat {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  font-weight: 600;
}

/* ----- CHART ----- */
.br-chart {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.br-chart-bars { display: flex; flex-direction: column; gap: 22px; }
.br-chart-row { display: grid; grid-template-columns: 220px 1fr 70px; gap: 18px; align-items: center; }
.br-chart-label { font-size: 14px; color: var(--br-ink); font-weight: 500; }
.br-chart-track {
  height: 14px;
  background: var(--br-line);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.br-chart-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--br-primary), var(--br-cyan));
  border-radius: inherit;
  width: 0;
  transition: width 1.6s var(--ease-out);
}
.br-chart-value {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--br-primary);
  text-align: right;
}
.br-section-dark .br-chart-label { color: rgba(255,255,255,.85); }
.br-section-dark .br-chart-track { background: rgba(255,255,255,.08); }
.br-section-dark .br-chart-value { color: var(--br-yellow); }

/* ----- TESTIMONIALS ----- */
.br-testimonials {
  position: relative;
  background: linear-gradient(145deg, var(--br-primary), var(--br-primary-deep));
  color: #fff;
  border-radius: 28px;
  padding: 64px 64px 56px;
  overflow: hidden;
}
.br-testimonials::before, .br-testimonials::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.br-testimonials::before {
  top: -120px; right: -100px;
  width: 360px; height: 360px;
  background: rgba(245,225,79,.25);
}
.br-testimonials::after {
  bottom: -140px; left: -80px;
  width: 380px; height: 380px;
  background: rgba(22,179,198,.35);
}
.br-testimonials-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: center;
}
.br-testimonial-quote {
  font-family: 'Rubik', sans-serif;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.015em;
  position: relative;
}
.br-testimonial-quote::before {
  content: '"';
  font-size: 88px;
  position: absolute;
  top: -36px; left: -36px;
  color: var(--br-yellow);
  font-family: 'Rubik', sans-serif;
  line-height: 1;
}
.br-testimonial-who { margin-top: 26px; font-size: 14px; font-weight: 600; }
.br-testimonial-org { font-size: 12px; opacity: .7; }
.br-testimonial-nav { display: flex; gap: 8px; margin-top: 30px; }
.br-testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: width .25s var(--ease-out), background .25s;
}
.br-testimonial-dot.active { background: var(--br-yellow); width: 28px; border-radius: 8px; }

.br-testimonial-logos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.br-testimonial-logo {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}

/* ----- CASE STUDIES ----- */
.br-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.br-case {
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 18px;
  padding: 24px;
  cursor: pointer;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  display: flex; flex-direction: column;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.br-case:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -18px rgba(11,26,42,.18); }
.br-case-sector {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--br-ink-faint);
  margin-bottom: 16px;
}
.br-case-title {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--br-ink);
  flex: 1;
}
.br-case-result {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--br-line);
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--br-primary);
  display: flex; align-items: center; justify-content: space-between;
}
.br-case-thumb {
  height: 90px;
  border-radius: 12px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.br-case-thumb.sky { background: linear-gradient(135deg, var(--br-primary), var(--br-cyan)); }
.br-case-thumb.teal { background: linear-gradient(135deg, var(--br-cyan), var(--br-primary)); }
.br-case-thumb.yellow { background: linear-gradient(135deg, var(--br-yellow), var(--br-cyan)); }

/* ----- TIMELINE ----- */
.br-timeline { position: relative; padding: 0 0 12px; }
.br-timeline-track {
  position: relative;
  display: flex;
  gap: 0;
  border-top: 2px solid var(--br-line);
  padding-top: 32px;
  margin-top: 16px;
}
.br-timeline-track::before {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  height: 2px;
  background: var(--br-primary);
  width: 0;
  animation: timelineFill 2s var(--ease-out) forwards;
  animation-delay: .3s;
}
@keyframes timelineFill { to { width: 100%; } }
.br-timeline-node {
  flex: 1;
  position: relative;
  padding: 0 8px;
  cursor: pointer;
}
.br-timeline-node::before {
  content: '';
  position: absolute;
  top: -39px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--br-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--br-primary);
  transition: transform .3s var(--ease-spring);
}
.br-timeline-node:hover::before { transform: translateX(-50%) scale(1.4); background: var(--br-yellow); box-shadow: 0 0 0 1px var(--br-yellow-deep); }
.br-timeline-year {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--br-primary);
}
.br-timeline-label {
  font-size: 12px;
  color: var(--br-ink-faint);
  margin-top: 6px;
  line-height: 1.4;
}

/* ----- FOOTER ----- */
.br-footer {
  background: var(--br-bg-dark);
  color: #fff;
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}
.br-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.br-footer-brand h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
}
.br-footer-brand p { font-size: 14px; color: rgba(255,255,255,.65); max-width: 280px; line-height: 1.5; }
.br-footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.br-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s var(--ease-spring);
  border: 1px solid rgba(255,255,255,.08);
}
.br-social:hover {
  background: var(--br-yellow);
  color: var(--br-ink);
  transform: translateY(-3px) rotate(-6deg);
}
.br-footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--br-yellow);
  margin-bottom: 18px;
}
.br-footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.72);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color .2s, transform .2s;
  cursor: pointer;
}
.br-footer-col a:hover { color: var(--br-yellow); transform: translateX(3px); }

.br-footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

/* Footer ISO certifications */
.br-footer-certs { display: flex; gap: 10px; margin-top: 20px; }
.br-cert-badge {
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px; padding: 6px 12px;
}

/* ----- ABOUT (visual storytelling) ----- */
.br-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.br-about-figure {
  position: relative;
  aspect-ratio: 1.1;
  background: var(--br-bg-soft);
  border-radius: 28px;
  padding: 30px;
  overflow: hidden;
}
.br-about-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}
.br-about-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
}
.br-about-bullet-marker {
  width: 32px; height: 32px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--br-yellow);
  color: var(--br-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.br-about-bullet-title { font-weight: 600; color: var(--br-ink); margin-bottom: 2px; }
.br-about-bullet-body { color: var(--br-ink-soft); font-size: 14px; line-height: 1.5; }

/* ----- MODAL ----- */
.br-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 45, 0.55);
  backdrop-filter: blur(6px);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out);
}
.br-modal-overlay.open { opacity: 1; pointer-events: auto; }
.br-modal {
  background: #fff;
  border-radius: 28px;
  width: 100%; max-width: 760px;
  padding: 44px;
  position: relative;
  transform: scale(.95);
  transition: transform .35s var(--ease-spring);
  max-height: 80%;
  overflow: auto;
  scrollbar-width: thin;
}
.br-modal-overlay.open .br-modal { transform: scale(1); }
.br-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--br-bg-soft); color: var(--br-ink);
  border: none; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.br-modal-tag {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--br-primary); margin-bottom: 12px;
}
.br-modal-title { font-size: 32px; line-height: 1.15; font-weight: 600; margin-bottom: 14px; }
.br-modal-body { font-size: 15px; color: var(--br-ink-soft); line-height: 1.6; }
.br-modal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--br-line);
}
.br-modal-grid-item { font-family: 'Rubik', sans-serif; }
.br-modal-grid-num { font-size: 28px; font-weight: 600; color: var(--br-primary); }
.br-modal-grid-label { font-size: 12px; color: var(--br-ink-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* =============================================================
   DIRECTION B — Modern Editorial overrides
   ============================================================= */
.dir-editorial { font-family: 'Montserrat', system-ui, sans-serif; }
.dir-editorial h1, .dir-editorial h2, .dir-editorial h3 { font-family: 'Rubik', sans-serif; font-weight: 500; }
.dir-editorial .br-hero { padding: 64px 0 96px; }
.dir-editorial .br-hero-h1 { font-size: 76px; font-weight: 500; letter-spacing: -0.045em; line-height: 0.98; }
.dir-editorial .br-hero-inner { grid-template-columns: 1fr 1.1fr; gap: 48px; }
.dir-editorial .br-hero-panel { border-radius: 4px; border-color: var(--br-ink); box-shadow: 6px 6px 0 var(--br-yellow); }
.dir-editorial .br-hero-panel-title { font-weight: 500; }
.dir-editorial .br-section-h2 { font-size: 64px; font-weight: 500; letter-spacing: -0.035em; line-height: 1; }
.dir-editorial .br-sol-card { border-radius: 28px; padding: 32px; min-height: 320px; }
.dir-editorial .br-sol-card-name { font-size: 28px; }
.dir-editorial .br-services-grid { grid-template-columns: repeat(2, 1fr); border-radius: 28px; }
.dir-editorial .br-service-cell { padding: 40px; min-height: 240px; }
.dir-editorial .br-service-name { font-size: 24px; }
.dir-editorial .br-industry-card { height: 380px; }
.dir-editorial .br-counter-num { color: var(--br-ink); font-size: 80px; font-weight: 500; }
.dir-editorial .br-counter-suffix { color: var(--br-yellow-deep); font-size: 56px; }
.dir-editorial .br-counters {
  border: none;
  background: var(--br-yellow);
  border-radius: 28px;
  padding: 48px;
  gap: 32px;
}
.dir-editorial .br-counter { border-left: 1px solid rgba(11,26,42,.12); padding-left: 24px; }
.dir-editorial .br-counter:first-child { border-left: none; padding-left: 0; }
.dir-editorial .br-counter-label { color: var(--br-ink-soft); }

.dir-editorial .br-eyebrow { border: none; background: var(--br-ink); color: #fff; }
.dir-editorial .br-section-eyebrow { color: var(--br-ink); }

.dir-editorial .br-testimonials {
  background: var(--br-yellow);
  color: var(--br-ink);
  border-radius: 0;
  border-top: 1px solid var(--br-ink);
  border-bottom: 1px solid var(--br-ink);
}
.dir-editorial .br-testimonial-quote::before { color: var(--br-primary); }
.dir-editorial .br-testimonial-dot { background: rgba(11,26,42,.2); }
.dir-editorial .br-testimonial-dot.active { background: var(--br-ink); }
.dir-editorial .br-testimonial-logo { background: rgba(11,26,42,.06); border-color: rgba(11,26,42,.15); color: var(--br-ink); }

.dir-editorial .br-case {
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--br-ink);
  padding: 32px 0;
  min-height: 0;
}
.dir-editorial .br-cases-grid { grid-template-columns: 1fr; gap: 0; }
.dir-editorial .br-case:hover { transform: translateX(8px); box-shadow: none; }
.dir-editorial .br-case-title { font-size: 32px; line-height: 1.1; font-weight: 500; }
.dir-editorial .br-case-result { border-top: none; padding-top: 0; margin-top: 16px; font-size: 20px; }
.dir-editorial .br-case-thumb { display: none; }
.dir-editorial .br-case { display: grid; grid-template-columns: 140px 1fr 200px; align-items: baseline; gap: 32px; }
.dir-editorial .br-case-sector { margin-bottom: 0; }
.dir-editorial .br-case-result { margin-top: 0; }

/* utility helpers */
.br-flex { display: flex; }
.br-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--br-bg-soft);
  color: var(--br-ink-soft);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 999px;
}

/* reveal-on-scroll utility (applied by JS via IntersectionObserver) */
.br-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.br-reveal.in { opacity: 1; transform: translateY(0); }
.br-reveal.delay-1 { transition-delay: .08s; }
.br-reveal.delay-2 { transition-delay: .16s; }
.br-reveal.delay-3 { transition-delay: .24s; }
.br-reveal.delay-4 { transition-delay: .32s; }
.br-reveal.delay-5 { transition-delay: .4s; }

/* =================================================================
   WORDPRESS PORT — globe / logo / floating-chip animations
   (these were inline <style> blocks in the source prototype)
   ================================================================= */
.br-logo-spin { transform-origin: 20px 20px; animation: brLogoSpin 24s linear infinite; }
@keyframes brLogoSpin { to { transform: rotate(360deg); } }

.br-globe-dot { transition: r .5s var(--ease-bounce, cubic-bezier(.34,1.56,.64,1)); }
.br-globe-arc { animation: arcFlow 4.5s linear infinite; }
.br-globe-hub { animation: hubBeat 2.4s ease-in-out infinite; }
.br-globe-orbit-1 { transform-origin: 50px 50px; animation: spin 18s linear infinite; }
.br-globe-orbit-2 { transform-origin: 50px 50px; animation: spinRev 26s linear infinite; }

@keyframes arcFlow {
  0% { stroke-dashoffset: 124; opacity: 0; }
  12% { opacity: 1; }
  80% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes hubBeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.5); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinRev { to { transform: rotate(-360deg); } }

@media (prefers-reduced-motion: reduce) {
  .br-globe-arc, .br-globe-hub, .br-globe-orbit-1, .br-globe-orbit-2,
  .br-globe-wrap, .br-logo-spin, .br-live-dot { animation: none !important; }
}

/* Floating stat chips around the hero globe */
.br-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(11,26,42,0.08);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 12px 28px -10px rgba(11,26,42,0.25);
  white-space: nowrap;
  z-index: 4;
  animation: float 4s ease-in-out infinite;
}
.br-hero.dark .br-float-chip { background: rgba(13,40,70,0.85); border-color: rgba(255,255,255,0.12); }
.br-float-chip--tr { top: 2%; right: -4%; animation-delay: 0s; }
.br-float-chip--bl { bottom: 6%; left: -8%; animation-delay: 1.1s; }
.br-float-chip--r  { top: 40%; right: -10%; animation-delay: .6s; }
.br-float-eyebrow {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #5e6b7a;
}
.br-float-chip--tr .br-float-eyebrow { color: #16B3C6; }
.br-float-big {
  font-family: 'Rubik', sans-serif; font-size: 20px; font-weight: 600; color: #0b1a2a; margin-top: 2px;
}
.br-float-big span { font-size: 12px; color: #16B3C6; }
.br-float-mid { font-family: 'Rubik', sans-serif; font-size: 15px; font-weight: 600; color: #0b1a2a; }
.br-hero.dark .br-float-big, .br-hero.dark .br-float-mid { color: #fff; }
.br-float-star {
  width: 26px; height: 26px; border-radius: 8px; background: #F5E14F;
  display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Hero background dot-field */
.br-hero-field {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: .7;
  background-image: radial-gradient(rgba(11,26,42,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.br-hero.dark .br-hero-field { background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); }

/* About presence map */
.br-presence-hub { animation: hubPulse 2.4s ease-in-out infinite; }
@keyframes hubPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .7; } }

/* =================================================================
   ABOUT (inner page) components
   ================================================================= */
.br-page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  background:
    radial-gradient(900px 480px at 100% -10%, rgba(22,179,198,0.10), transparent 60%),
    linear-gradient(180deg, var(--br-bg-soft), var(--br-bg));
  border-bottom: 1px solid var(--br-line);
}
.br-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--br-ink-faint); margin-bottom: 28px;
}
.br-breadcrumb a { color: var(--br-ink-soft); text-decoration: none; font-weight: 500; }
.br-breadcrumb a:hover { color: var(--br-primary); }
.br-page-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
.br-page-hero-grid--single { grid-template-columns: 1fr; max-width: 880px; }
.br-page-hero-title {
  font-size: 52px;
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 18px 0 18px;
}
.br-page-hero-sub {
  font-size: 18px;
  color: var(--br-ink-soft);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 30px;
}
.br-page-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.br-page-hero-stat {
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-card, 0 18px 40px -28px rgba(11,26,42,.3));
}
.br-page-hero-stat .br-counter-num { font-size: 44px; }
.br-page-hero-stat .br-counter-label { margin-top: 8px; }

/* Mission & Vision */
.br-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.br-mv-card {
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 22px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.br-mv-card:hover { transform: translateY(-4px); box-shadow: 0 28px 50px -26px rgba(11,26,42,.22); }
.br-mv-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: #fff;
}
.br-mv-icon svg { width: 30px; height: 30px; }
.br-mv-icon--mission { background: linear-gradient(135deg, var(--br-primary), var(--br-cyan)); }
.br-mv-icon--vision { background: linear-gradient(135deg, var(--br-cyan), var(--br-primary)); }
.br-mv-title { font-size: 26px; font-weight: 600; margin-bottom: 12px; }
.br-mv-body { font-size: 16px; color: var(--br-ink-soft); line-height: 1.6; }

/* Values */
.br-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.br-values-grid.br-values-3 { grid-template-columns: repeat(3, 1fr); }
.br-value-card {
  background: #fff;
  border: 1px solid var(--br-line);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  transition: transform .3s var(--ease-out), border-color .25s;
}
.br-value-card:hover { transform: translateY(-4px); border-color: var(--br-primary); }
.br-value-num {
  font-family: 'Rubik', sans-serif;
  font-size: 30px; font-weight: 600;
  color: var(--br-yellow-deep);
  margin-bottom: 14px;
}
.br-value-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.br-value-body { font-size: 14px; color: var(--br-ink-soft); line-height: 1.55; }

/* Leadership */
.br-leaders-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.br-leader-card { margin: 0; }
.br-leader-photo {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 18px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.br-leader-photo.color-sky { background: linear-gradient(150deg, var(--br-primary), var(--br-primary-deep)); }
.br-leader-photo.color-teal { background: linear-gradient(150deg, var(--br-cyan), var(--br-cyan-deep)); }
.br-leader-photo.color-yellow { background: linear-gradient(150deg, var(--br-yellow), var(--br-yellow-deep)); }
.br-leader-initials {
  font-family: 'Rubik', sans-serif;
  font-size: 56px; font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.br-leader-photo.color-yellow .br-leader-initials { color: rgba(11,26,42,0.65); }
.br-leader-photo-tag {
  position: absolute; bottom: 12px; right: 12px;
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  color: rgba(255,255,255,0.85);
  background: rgba(11,26,42,0.28);
  padding: 4px 8px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.br-leader-photo.color-yellow .br-leader-photo-tag { color: rgba(11,26,42,0.7); background: rgba(255,255,255,0.4); }
.br-leader-name { font-family: 'Rubik', sans-serif; font-size: 18px; font-weight: 600; }
.br-leader-role { font-size: 13px; color: var(--br-ink-faint); margin-top: 2px; }

/* CTA band */
.br-cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--br-primary), var(--br-primary-deep));
  color: #fff;
  border-radius: 28px;
  padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.br-cta-band::before {
  content: '';
  position: absolute; inset: -40% -10% auto auto;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(245,225,79,0.22), transparent 70%);
  pointer-events: none;
}
.br-cta-band-title { font-size: 34px; font-weight: 600; letter-spacing: -0.02em; }
.br-cta-band-sub { font-size: 16px; opacity: .82; margin-top: 8px; }

/* ---- About page responsive ---- */
@media (max-width: 1080px) {
  .br-page-hero-grid, .br-mv-grid { grid-template-columns: 1fr; gap: 36px; }
  .br-values-grid, .br-leaders-grid { grid-template-columns: repeat(2, 1fr); }
  .br-values-grid.br-values-3 { grid-template-columns: repeat(3, 1fr); }
  .br-page-hero-title { font-size: 42px; }
}
@media (max-width: 640px) {
  .br-page-hero { padding: 40px 0 48px; }
  .br-page-hero-title { font-size: 32px; }
  .br-page-hero-sub { font-size: 16px; }
  .br-page-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .br-page-hero-stat { padding: 18px; border-radius: 14px; }
  .br-page-hero-stat .br-counter-num { font-size: 34px; }
  .br-values-grid, .br-leaders-grid { grid-template-columns: 1fr; }
  .br-values-grid.br-values-3 { grid-template-columns: 1fr; }
  .br-mv-card { padding: 26px; }
  .br-cta-band { flex-direction: column; align-items: flex-start; padding: 32px 26px; border-radius: 22px; }
  .br-cta-band-title { font-size: 26px; }
  .br-cta-band .br-btn { width: 100%; justify-content: center; }
}

/* WordPress widgets */
.br-widget { margin-bottom: 28px; }
.br-widget-title { font-family: 'Rubik', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.br-widget ul { list-style: none; padding: 0; margin: 0; }
.br-widget li { padding: 6px 0; border-bottom: 1px solid var(--br-line); }
.br-widget a { color: var(--br-ink-soft); text-decoration: none; }
.br-widget a:hover { color: var(--br-primary); }

/* Anchor scroll offset for the sticky nav */
#about, #services, #solutions, #industries, #cases, #careers, #contact, #top { scroll-margin-top: 92px; }

/* Sticky nav scroll shadow */
.br-nav { transition: box-shadow .25s var(--ease-out), background .25s var(--ease-out); }
.br-nav--scrolled { box-shadow: 0 8px 28px -16px rgba(11,26,42,.35); }

/* Primary menu when driven by a WP-assigned menu (wp_nav_menu) */
.br-nav-items ul.br-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.br-nav-items .br-menu a {
  display: inline-flex; align-items: center; padding: 10px 14px; font-size: 14px; font-weight: 500;
  color: var(--br-ink-soft); text-decoration: none; border-radius: 6px; transition: color .18s, background .18s;
}
.br-nav-items .br-menu a:hover { color: var(--br-ink); background: var(--br-bg-soft); }
.br-nav-items .br-menu .current-menu-item > a { color: var(--br-primary); }

/* Modal in document flow → fixed to viewport */
.br-modal-overlay--fixed { position: fixed; }

/* Testimonial slides (carousel) */
.br-testimonial-slide { animation: qFade .6s var(--ease-out); }
.br-testimonial-slide[hidden] { display: none; }
@keyframes qFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ----- LOGO TICKER (credibility strip) ----- */
.br-ticker { padding: 36px 0 44px; background: var(--br-bg); border-bottom: 1px solid var(--br-line); overflow: hidden; }
.br-ticker-label { text-align: center; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--br-ink-faint); margin-bottom: 28px; }
.br-ticker-label strong { color: var(--br-primary); font-weight: 700; }
.br-ticker-viewport { position: relative; display: flex; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.br-ticker-track { display: flex; flex-shrink: 0; align-items: center; gap: 64px; padding-right: 64px; animation: brTickerScroll 38s linear infinite; will-change: transform; }
.br-ticker-viewport:hover .br-ticker-track { animation-play-state: paused; }
.br-ticker-logo { font-family: 'Rubik', sans-serif; font-size: 26px; font-weight: 600; letter-spacing: -0.01em; color: var(--br-ink-faint); white-space: nowrap; opacity: 0.55; transition: opacity .25s var(--ease-out), color .25s var(--ease-out); cursor: default; }
.br-ticker-logo:hover { opacity: 1; color: var(--br-primary); }
@keyframes brTickerScroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .br-ticker-track { animation: none; } }
.br-site.theme-dark .br-ticker-logo { color: var(--br-ink-soft); }
.br-site.theme-dark .br-ticker-logo:hover { color: var(--br-cyan); }
.br-site.theme-dark .br-ticker-label strong { color: var(--br-cyan); }

/* =================================================================
   NAV TOOLS — language selector + dark/light toggle
   ================================================================= */
.br-nav-tools { display: flex; align-items: center; gap: 8px; }
.br-lang {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 10px 0 12px;
  border: 1px solid var(--br-line); border-radius: 999px;
  background: var(--br-bg); color: var(--br-ink-soft);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.br-lang:hover { border-color: var(--br-line-strong); color: var(--br-ink); }
.br-lang svg { width: 16px; height: 16px; opacity: .8; }
.br-lang select {
  appearance: none; -webkit-appearance: none;
  border: 0; background: transparent; color: inherit;
  font: inherit; font-weight: 500; cursor: pointer;
  padding-right: 14px; outline: none;
}
.br-lang::after {
  content: ''; position: absolute; right: 12px; top: 50%;
  width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg); pointer-events: none; opacity: .6;
}
.br-theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--br-line); background: var(--br-bg); color: var(--br-ink-soft);
  cursor: pointer; transition: border-color .2s, color .2s, background .2s, transform .25s var(--ease-spring);
}
.br-theme-toggle:hover { border-color: var(--br-line-strong); color: var(--br-ink); transform: translateY(-1px); }
.br-theme-toggle svg { width: 18px; height: 18px; }
.br-theme-toggle .br-icon-moon { display: none; }
.br-theme-toggle .br-icon-sun { display: block; }
.br-site.theme-dark .br-theme-toggle .br-icon-moon { display: block; }
.br-site.theme-dark .br-theme-toggle .br-icon-sun { display: none; }

/* Hide Google Translate chrome — we drive it via our own selector */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }
#google_translate_element { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

@media (max-width: 1080px) {
  .br-nav-tools { margin-left: auto; }
  .br-lang .br-lang-label { display: none; }
  .br-lang { padding: 0 10px; }
  .br-lang::after { display: none; }
  .br-lang select { padding-right: 0; }
}

/* =================================================================
   DARK MODE — token remap + hardcoded-surface overrides
   Applies when .br-site has .theme-dark
   ================================================================= */
.br-site.theme-dark {
  --br-ink: #eaf1f9;
  --br-ink-soft: #b6c4d4;
  --br-ink-faint: #8194a7;
  --br-line: rgba(255,255,255,0.10);
  --br-line-strong: rgba(255,255,255,0.18);
  --br-bg: #0a1a2c;
  --br-bg-soft: #0e2236;
  color: var(--br-ink);
  background: var(--br-bg);
}
/* card / surface color used to replace hardcoded #fff */
.br-site.theme-dark {
  --br-surface: #102a42;
}
.br-site.theme-dark .br-nav {
  background: #0a1a2c !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-bottom-color: var(--br-line);
}
.br-site.theme-dark .br-nav--scrolled { box-shadow: 0 8px 28px -16px rgba(0,0,0,.6); }
.br-site.theme-dark .br-logo,
.br-site.theme-dark .br-logo-suffix { color: var(--br-ink); }
.br-site.theme-dark .br-nav-item,
.br-site.theme-dark .br-nav-items .br-menu a { color: var(--br-ink-soft); }
.br-site.theme-dark .br-nav-item:hover,
.br-site.theme-dark .br-nav-items .br-menu a:hover { color: var(--br-ink); background: rgba(255,255,255,0.06); }
.br-site.theme-dark .br-logo { color: var(--br-ink); }
.br-site.theme-dark .br-nav-cta { background: var(--br-cyan); color: var(--br-ink); }
.br-site.theme-dark .br-nav-cta:hover { background: var(--br-yellow); }
.br-site.theme-dark .br-lang,
.br-site.theme-dark .br-theme-toggle,
.br-site.theme-dark .br-nav-toggle { background: var(--br-surface); color: var(--br-ink-soft); border-color: var(--br-line); }
.br-site.theme-dark .br-nav-toggle span,
.br-site.theme-dark .br-nav-toggle span::before,
.br-site.theme-dark .br-nav-toggle span::after { background: var(--br-ink); }

/* Mega menu */
.br-site.theme-dark .br-mega { background: var(--br-surface); border-color: var(--br-line); box-shadow: 0 24px 60px -20px rgba(0,0,0,.7); }
.br-site.theme-dark .br-mega-link:hover { background: rgba(255,255,255,0.05); }

/* Hero */
.br-site.theme-dark .br-hero { background: var(--br-bg); }
.br-site.theme-dark .br-hero-field { background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); }
.br-site.theme-dark .br-globe-svg circle[fill="url(#brGlobeFace)"] { opacity: .92; }
.br-site.theme-dark .br-float-chip { background: rgba(16,42,66,0.92); border-color: var(--br-line); }
.br-site.theme-dark .br-float-eyebrow { color: var(--br-ink-faint); }
.br-site.theme-dark .br-float-chip--tr .br-float-eyebrow { color: var(--br-cyan); }
.br-site.theme-dark .br-float-big, .br-site.theme-dark .br-float-mid { color: var(--br-ink); }
.br-site.theme-dark .br-globe-chip { background: var(--br-surface); color: var(--br-ink-soft); border-color: var(--br-line); }

/* Soft sections become a touch lighter than base */
.br-site.theme-dark .br-section-soft { background: var(--br-bg-soft); }

/* Generic white surfaces → dark surface */
.br-site.theme-dark .br-surface-card,
.br-site.theme-dark .br-sol-card,
.br-site.theme-dark .br-service-cell,
.br-site.theme-dark .br-case,
.br-site.theme-dark .br-mv-card,
.br-site.theme-dark .br-value-card,
.br-site.theme-dark .br-page-hero-stat,
.br-site.theme-dark .br-about-figure,
.br-site.theme-dark .br-modal,
.br-site.theme-dark .br-mobile-panel,
.br-site.theme-dark .br-form,
.br-site.theme-dark .br-contact-card { background: var(--br-surface); border-color: var(--br-line); }
.br-site.theme-dark .br-services-grid { background: var(--br-line); border-color: var(--br-line); }
.br-site.theme-dark .br-service-cell:hover { background: rgba(255,255,255,0.04); }
.br-site.theme-dark .br-sol-card-arrow { background: rgba(255,255,255,0.08); }
.br-site.theme-dark .br-sol-card:hover { box-shadow: 0 28px 48px -22px rgba(0,0,0,.6); }
.br-site.theme-dark .br-case:hover { box-shadow: 0 24px 40px -18px rgba(0,0,0,.55); }
.br-site.theme-dark .br-modal-close { background: rgba(255,255,255,0.08); color: var(--br-ink); }
.br-site.theme-dark .br-about-bullet-marker { background: var(--br-yellow); color: #0b1a2a; }

/* About-page hero gradient */
.br-site.theme-dark .br-page-hero {
  background:
    radial-gradient(900px 480px at 100% -10%, rgba(22,179,198,0.16), transparent 60%),
    linear-gradient(180deg, var(--br-bg-soft), var(--br-bg));
  border-bottom-color: var(--br-line);
}
.br-site.theme-dark .br-breadcrumb a { color: var(--br-ink-soft); }

/* Footer is already dark — nudge border */
.br-site.theme-dark .br-footer { background: #06121f; }

/* Mini info cards (were inline #fff) */
.br-mini-card { background: #fff; border: 1px solid var(--br-line); border-radius: 12px; padding: 12px 14px; }
.br-site.theme-dark .br-mini-card { background: var(--br-surface); }

/* Inputs adapt */
.br-site.theme-dark .br-input, .br-site.theme-dark .br-textarea { background: var(--br-bg-soft); color: var(--br-ink); border-color: var(--br-line); }
.br-site.theme-dark .br-input::placeholder, .br-site.theme-dark .br-textarea::placeholder { color: var(--br-ink-faint); }

/* =================================================================
   FORMS + CONTACT + INNER-PAGE FEATURE GRID
   ================================================================= */
.br-form { background: #fff; border: 1px solid var(--br-line); border-radius: 22px; padding: 32px; }
.br-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.br-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.br-field label { font-size: 13px; font-weight: 600; color: var(--br-ink); }
.br-input, .br-textarea {
  width: 100%; font: inherit; font-size: 15px;
  color: var(--br-ink); background: var(--br-bg);
  border: 1px solid var(--br-line-strong); border-radius: 12px;
  padding: 13px 14px; transition: border-color .2s, box-shadow .2s; outline: none;
}
.br-input:focus, .br-textarea:focus { border-color: var(--br-primary); box-shadow: 0 0 0 4px rgba(27,103,165,.12); }
.br-textarea { min-height: 130px; resize: vertical; }
.br-form-note { font-size: 12px; color: var(--br-ink-faint); margin-top: 4px; }

.br-contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.br-contact-card { background: #fff; border: 1px solid var(--br-line); border-radius: 18px; padding: 24px; margin-bottom: 16px; }
.br-contact-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.br-contact-card p, .br-contact-card a { font-size: 14px; color: var(--br-ink-soft); text-decoration: none; line-height: 1.6; }
.br-contact-card a:hover { color: var(--br-primary); }
.br-locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.br-loc { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--br-ink-soft); }
.br-loc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--br-cyan); flex-shrink: 0; }

/* Generic feature grid for service/solution/industry inner pages */
.br-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.br-feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.br-feature {
  background: #fff; border: 1px solid var(--br-line); border-radius: 18px; padding: 28px;
  transition: transform .3s var(--ease-out), border-color .25s, box-shadow .3s;
}
.br-feature:hover { transform: translateY(-4px); border-color: var(--br-primary); box-shadow: 0 24px 44px -24px rgba(11,26,42,.2); }
.br-feature-ic { width: 48px; height: 48px; color: var(--br-primary); margin-bottom: 16px; }
.br-feature h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.br-feature p { font-size: 14px; color: var(--br-ink-soft); line-height: 1.55; }
.br-site.theme-dark .br-feature { background: var(--br-surface); border-color: var(--br-line); }

/* Split content block */
.br-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.br-split-media {
  aspect-ratio: 4 / 3; border-radius: 22px; overflow: hidden; position: relative;
  background: linear-gradient(150deg, var(--br-primary), var(--br-cyan));
  display: flex; align-items: center; justify-content: center;
}
.br-split-media .br-photo-tag {
  position: absolute; bottom: 14px; right: 14px; font-size: 10px; font-weight: 600; letter-spacing: .12em;
  color: rgba(255,255,255,.85); background: rgba(11,26,42,.28); padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(4px);
}
.br-split-media svg { width: 44%; height: 44%; opacity: .9; color: #fff; }

@media (max-width: 1080px) {
  .br-feature-grid, .br-feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .br-contact-grid, .br-split { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .br-feature-grid, .br-feature-grid.cols-2 { grid-template-columns: 1fr; }
  .br-form-row { grid-template-columns: 1fr; }
  .br-locations { grid-template-columns: 1fr; }
  .br-form { padding: 22px; }
}

/* Careers — job list */
.br-jobs { display: flex; flex-direction: column; gap: 12px; }
.br-job {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: #fff; border: 1px solid var(--br-line); border-radius: 16px;
  padding: 22px 26px; text-decoration: none; color: inherit;
  transition: transform .25s var(--ease-out), border-color .2s, box-shadow .25s;
}
.br-job:hover { transform: translateX(6px); border-color: var(--br-primary); box-shadow: 0 20px 40px -26px rgba(11,26,42,.25); }
.br-job-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--br-cyan-deep); margin-bottom: 6px; }
.br-job-title { font-family: 'Rubik', sans-serif; font-size: 19px; font-weight: 600; color: var(--br-ink); }
.br-job-loc { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--br-ink-faint); margin-top: 6px; }
.br-job-loc svg { width: 14px; height: 14px; }
.br-job-apply { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--br-primary); white-space: nowrap; }
.br-site.theme-dark .br-job { background: var(--br-surface); border-color: var(--br-line); }
@media (max-width: 520px) {
  .br-job { flex-direction: column; align-items: flex-start; gap: 12px; }
}
