/* ============================================================
   BICS — Brand CSS  (modern refresh)
   Fonts: Nunito Sans (headings) · Ubuntu (body)
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── TOKENS ── */
:root {
  --navy:       #0f1944;
  --navy-80:    #14215B;
  --navy-60:    #192971;
  --green:      #618000;
  --green-60:   #80A900;
  --green-30:   #9ED200;
  --grey:       #6E7CA0;
  --white:      #ffffff;
  --off-white:  #f4f6fb;
  --text:       #0f1944;
  --text-muted: #5a6070;
  --border:     #e2e6f0;

  --font-h: 'Nunito Sans', sans-serif;
  --font-b: 'Ubuntu', sans-serif;

  --max: 100%;
  --pad: clamp(20px, 5vw, 72px);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;

  --shadow-sm:  0 1px 4px rgba(15,25,68,.06), 0 2px 8px rgba(15,25,68,.06);
  --shadow:     0 4px 16px rgba(15,25,68,.10), 0 1px 4px rgba(15,25,68,.06);
  --shadow-lg:  0 12px 40px rgba(15,25,68,.15), 0 2px 8px rgba(15,25,68,.08);
  --shadow-xl:  0 24px 64px rgba(15,25,68,.18);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); font-size: 15px; color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 88px var(--pad); max-width: var(--max); margin: 0 auto; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-h); font-weight: 800; color: var(--navy); line-height: 1.15; }
h1 { font-size: clamp(38px, 5vw, 68px); letter-spacing: -1px; }
h2 { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -.5px; }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  padding: 5px 12px;
  background: rgba(97,128,0,.08);
  border-radius: 100px;
  border: 1px solid rgba(97,128,0,.2);
}
.lead { font-size: 17px; color: var(--text-muted); line-height: 1.85; max-width: 640px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-b); font-size: 14px; font-weight: 700;
  border-radius: 100px;
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-60) 0%, var(--green) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(97,128,0,.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(97,128,0,.45);
}
.btn-outline { border: 2px solid rgba(255,255,255,.4); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.link-arrow {
  font-size: 14px; font-weight: 700; color: var(--green);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s, color .2s;
}
.link-arrow:hover { gap: 12px; color: var(--green-60); }

/* ── FADE-IN ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── UTILITY BAR ── */
.site-header-wrap { position: sticky; top: 0; z-index: 1000; }
.utility-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.utility-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  height: 38px;
}
.utility-region {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.50); font-family: var(--font-b);
  background: none; border: none; cursor: pointer; transition: color .15s;
}
.utility-region i { font-size: 14px; color: rgba(255,255,255,.7); }
.utility-region:hover { color: var(--white); }
.utility-region-wrap { position: relative; height: 100%; display: flex; align-items: center; }
.utility-region-panel {
  position: absolute; top: 100%; left: 0; margin-top: 8px;
  background: var(--white); border-radius: var(--radius-xs);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  padding: 6px; min-width: 160px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .15s, transform .15s;
  z-index: 1100;
}
.utility-region-panel.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.utility-region-item {
  display: block; width: 100%; text-align: left;
  padding: 8px 12px; border-radius: var(--radius-xs);
  background: none; border: none; cursor: pointer;
  font-size: 13px; font-family: var(--font-b); color: var(--text);
  transition: background .15s, color .15s;
}
.utility-region-item:hover { background: var(--off-white); color: var(--navy); }
.utility-region-item.active { color: var(--green); font-weight: 700; }
.utility-region-flag { font-size: 14px; margin-right: 8px; }
.utility-region .utility-region-flag { margin-right: 0; }
.utility-right { display: flex; align-items: center; gap: 20px; }
.utility-right a {
  font-size: 12px; color: rgba(255,255,255,.55); font-family: var(--font-b);
  display: flex; align-items: center; gap: 5px; transition: color .15s;
}
.utility-right a i { font-size: 14px; color: rgba(255,255,255,.7); }
.utility-right a:hover { color: var(--white); }

/* ── HEADER ── */
.site-header {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,25,68,.1);
  box-shadow: var(--shadow-sm);
  position: relative;
}

/* ── MEGA MENU (Products) ── */
.mega-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0,0,0,.14);
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .18s, transform .18s;
}
.mega-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mega-menu-inner { max-width: var(--max); margin: 0 auto; padding: 28px var(--pad) 24px; }
.mega-menu-loading { font-size: 13px; color: var(--text-muted); padding: 12px 0; display: flex; align-items: center; gap: 8px; }
.mega-menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px 16px; margin-bottom: 20px; }
.mega-menu-grid a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 12px; border-radius: var(--radius-xs);
  font-size: 13.5px; font-weight: 600; color: var(--text);
  transition: background .15s, color .15s;
}
.mega-menu-grid a:hover { background: var(--off-white); color: var(--green); }
.mega-menu-grid a small { font-size: 11px; color: var(--grey); font-weight: 700; }
.mega-menu-viewall {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--green);
  padding-top: 16px; border-top: 1px solid var(--border); width: 100%;
}
.mega-menu-grid-icons a.mega-item { justify-content: flex-start; align-items: flex-start; padding: 14px 12px; }
.mega-item-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-60) 100%);
  display: flex; align-items: center; justify-content: center;
}
.mega-item-icon i { color: var(--white); font-size: 18px; }
.mega-item strong { display: block; font-size: 13.5px; margin-bottom: 3px; }
.mega-item small { display: block; font-size: 12px; color: var(--grey); font-weight: 500; }
@media (max-width: 900px) {
  .mega-menu { display: none; }
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 32px;
}
.nav-logo img { height: 80px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  /* font-family: var(--font-b); font-size: 13.5px; font-weight: 700; */
  font-family: var(--font-b); font-size: 15px; font-weight: 700;
  color: var(--text-muted); padding: 8px 14px;
  border-radius: 100px; transition: color .15s, background .15s;
  position: relative;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-mega-caret { font-size: 11px; color: var(--grey); transition: transform .2s, color .2s; }
.nav-links a.has-mega:hover .nav-mega-caret,
.nav-links a.mega-open .nav-mega-caret { color: var(--green); }
.nav-links a.mega-open .nav-mega-caret { transform: rotate(180deg); }
.nav-links a:hover { color: var(--navy); background: var(--off-white); }
.nav-links a.active { color: var(--navy); background: var(--off-white); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--green);
}
.nav-cta { margin-left: 8px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .2s; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed;
  top: 118px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 24px var(--pad); overflow-y: auto;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav a { font-size: 18px; font-weight: 700; color: var(--navy); padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-nav .btn { margin-top: 16px; align-self: flex-start; padding: 14px 32px;}

/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,12,36,.94);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center;
  padding-top: 12vh; opacity: 0; pointer-events: none; transition: opacity .2s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-overlay-inner { width: 100%; max-width: 680px; padding: 0 24px; }
.search-input-wrap {
  display: flex; align-items: center;
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--green);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  overflow: hidden;
}
.search-input-wrap i { font-size: 22px; color: var(--grey); padding: 0 18px; flex-shrink: 0; }
#search-overlay-input {
  flex: 1; border: none; outline: none; padding: 18px 0;
  font-family: var(--font-b); font-size: 17px; color: var(--text); background: transparent;
}
.search-overlay-close {
  position: absolute; top: 24px; right: 32px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 20px; cursor: pointer; transition: all .15s;
}
.search-overlay-close:hover { background: rgba(255,255,255,.2); color: var(--white); }
.search-hint { font-size: 12px; color: rgba(255,255,255,.3); margin-top: 12px; text-align: center; letter-spacing: .5px; }
.search-results { margin-top: 20px; max-height: 52vh; overflow-y: auto; display: flex; flex-direction: column; gap: 6px; }
.search-result-item {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 16px; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: 12px 16px;
  cursor: pointer; transition: background .15s; text-decoration: none;
}
.search-result-item:hover { background: rgba(255,255,255,.12); }
.search-result-img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-xs); background: rgba(255,255,255,.1); }

/* ── FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 1500;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 14px; border-radius: 100px;
  background: linear-gradient(135deg, var(--green-60) 0%, var(--green) 100%);
  box-shadow: 0 8px 24px rgba(97,128,0,.4);
  transition: transform .15s, box-shadow .15s;
}
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(97,128,0,.5); }
.whatsapp-float svg { width: 26px; height: 26px; fill: var(--white); flex-shrink: 0; }
.whatsapp-float span {
  font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--white); white-space: nowrap;
}
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; padding: 12px; border-radius: 50%; }
  .whatsapp-float span { display: none; }
}

/* ── SUPPORT MODAL ── */
.support-modal-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,12,36,.6);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.support-modal-backdrop.open { opacity: 1; pointer-events: all; }
.support-modal {
  position: fixed; top: 64px; right: 24px;
  width: 100%; max-width: 360px; max-height: calc(100vh - 88px);
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  padding: 28px; overflow-y: auto;
  transform: translate(24px, -16px) scale(.96); opacity: 0;
  transition: transform .22s cubic-bezier(.4,0,.2,1), opacity .22s;
}
.support-modal-backdrop.open .support-modal { transform: translate(0, 0) scale(1); opacity: 1; }
.support-modal h3 { margin-top: 4px; margin-bottom: 20px; }
.support-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 16px; cursor: pointer; transition: all .15s;
}
.support-modal-close:hover { background: var(--border); color: var(--text); }
.support-modal-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.support-modal-item i { font-size: 20px; color: var(--green); margin-top: 2px; flex-shrink: 0; }
.support-modal-item strong { display: block; font-size: 13px; margin-bottom: 2px; }
.support-modal-item a, .support-modal-item span { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.support-modal-item a:hover { color: var(--green); }
.search-result-title { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.3; }
.search-result-cat { font-size: 11px; color: var(--green-30); margin-top: 3px; text-transform: uppercase; letter-spacing: .8px; }
.search-result-action { font-size: 12px; color: var(--green-30); font-weight: 700; white-space: nowrap; }
.search-loading, .search-no-results { text-align: center; padding: 32px; color: rgba(255,255,255,.4); font-size: 14px; }
.search-loading i { font-size: 28px; display: block; margin-bottom: 8px; color: var(--green-30); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-video-wrap iframe,
.hero-video-wrap #yt-hero {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; height: 56.25vw;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(10,17,50,.35);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 100px var(--pad); width: 100%;
}
.hero-content .eyebrow {
  color: var(--green-30);
  background: rgba(158,210,0,.12);
  border-color: rgba(158,210,0,.25);
}
.hero h1 { color: var(--white); margin-bottom: 20px; max-width: 700px; }
.hero .lead { color: rgba(255,255,255,.78); margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12);
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.65); font-weight: 600; letter-spacing: .5px;
}
.trust-item i { color: var(--green-30); font-size: 16px; }

/* ── STATS ── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  background: var(--white); padding: 40px 28px; text-align: center;
  transition: background .2s;
}
.stat-item:hover { background: var(--off-white); }
.stat-n {
  font-family: var(--font-h); font-size: clamp(38px, 4vw, 56px);
  font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-60) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-n span { -webkit-text-fill-color: var(--green); color: var(--green); }
.stat-l { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--grey); font-weight: 700; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 4px;
}
.service-item {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; gap: 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  background: var(--white);
}
.service-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(97,128,0,.3);
}
.service-num {
  font-family: var(--font-h); font-size: 14px; font-weight: 800;
  color: var(--green); background: rgba(97,128,0,.1);
  border-radius: 100px; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 4px; letter-spacing: 0;
}
.service-body .eyebrow { margin-bottom: 8px; }
.service-body h3 { margin-bottom: 10px; color: var(--navy); }
.service-body p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.service-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tag {
  font-size: 11px; color: var(--grey); background: var(--off-white);
  padding: 4px 12px; border-radius: 100px; border: 1px solid var(--border);
  font-weight: 600;
}

/* ── INDUSTRIES ── */
.industries-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; gap: 20px;
}
.industry-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
}

.services-asym { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.services-asym > :first-child { grid-column: 1 / -1; }
@media (max-width: 768px) {
  .services-asym { grid-template-columns: minmax(0, 1fr); }
  .services-asym .feature-list { columns: 1 !important; }
  .sla-tier-grid { grid-template-columns: minmax(0, 1fr) !important; }
}
.industry-row {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.industry-row .icon-wrap { margin-bottom: 0; flex-shrink: 0; }
.industry-row:hover .icon-wrap { box-shadow: 0 4px 16px rgba(15,25,68,.35); }
.icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-60) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(15,25,68,.25);
}
.icon-wrap i { color: var(--white); font-size: 24px; }
.industry-row h4 { margin-bottom: 10px; font-size: 16px; }
.industry-row p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

/* ── ABOUT SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split-img { position: relative; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-txt { padding: 72px 60px; display: flex; flex-direction: column; justify-content: center; }
.split-txt h2 { margin-bottom: 16px; }
.split-txt p { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; }
.split.flip .split-img { order: 2; }
.split.flip .split-txt { order: 1; }
.fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.fact-box {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 18px; background: var(--off-white);
}
.fact-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grey); margin-bottom: 4px; }
.fact-value { font-size: 14px; font-weight: 700; color: var(--navy); }

/* ── WHY BICS ── */
.why-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-60) 100%);
  padding: 80px var(--pad);
  position: relative; overflow: hidden;
}
.why-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(158,210,0,.08) 0%, transparent 60%);
  pointer-events: none;
}
.why-strip .container { max-width: var(--max); margin: 0 auto; padding: 0; position: relative; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.why-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background .2s;
}
.why-item:hover { background: rgba(255,255,255,.10); }
.why-item i { font-size: 28px; color: var(--green-30); margin-bottom: 16px; display: block; }
.why-item h4 { color: var(--white); margin-bottom: 8px; font-size: 16px; }
.why-item p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ── CLIENTS ── */
.clients-strip { padding: 56px var(--pad); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--off-white); }
.clients-strip .container { max-width: var(--max); margin: 0 auto; }
.clients-header { text-align: center; margin-bottom: 40px; }
.clients-header h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 2.5px; color: var(--grey); font-weight: 700; }
.carousel-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.carousel-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.carousel-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-logo { display: flex; align-items: center; justify-content: center; padding: 0 40px; flex-shrink: 0; }
.client-logo img { height: 38px; width: auto; max-width: 130px; object-fit: contain; filter: grayscale(100%) opacity(0.45); transition: filter .25s; }
.client-logo:hover img { filter: grayscale(0%) opacity(1); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-60) 100%);
  padding: 88px var(--pad); text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(158,210,0,.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.68); font-size: 16px; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-band .btn-primary { font-size: 15px; padding: 16px 40px; position: relative; }

/* ── INSIGHTS / BLOG ── */
.insights-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 40px; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; padding: 28px 24px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  background: var(--white);
}
.insight-card.has-img { padding: 0; }
.insight-card.has-img .insight-card-body { padding: 20px 24px 24px; }
.insight-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); border-color: rgba(97,128,0,.25); }
.insight-meta { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grey); margin-bottom: 10px; }
.insight-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--navy); line-height: 1.35; }
.insight-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: var(--white); }
.footer-top {
  max-width: var(--max); margin: 0 auto;
  padding: 72px var(--pad) 56px;
  display: flex; flex-wrap: wrap; gap: 64px;
}
.footer-brand { flex: 1 1 300px; max-width: 360px; }
.footer-brand-name {
  font-family: var(--font-h); font-weight: 800; font-size: 22px;
  color: var(--white); margin-bottom: 14px; letter-spacing: -.3px;
}
.footer-brand-tag { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 24px; }
.footer-links { flex: 2 1 480px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-social-links { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-link {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.footer-social-link svg { display: block; width: 18px; height: 18px; fill: rgba(255,255,255,.4); transition: fill .2s; }
.footer-social-link:hover svg { fill: var(--white); }

.footer-col h5 {
  font-family: var(--font-b); font-size: 10px;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.4); font-weight: 700;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.5); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.footer-contact-item i { color: var(--green-30); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 640px) { .footer-links { grid-template-columns: 1fr; } }

.footer-wordmark {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 36px var(--pad) 28px;
  max-width: var(--max); margin: 0 auto;
}
.footer-wordmark-text {
  font-family: var(--font-h);
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 800; color: rgba(255,255,255,.08);
  letter-spacing: 0.12em; line-height: 1;
  text-transform: uppercase; user-select: none;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px var(--pad); }
.footer-bottom-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-cr { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px var(--pad); }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split .split-img { min-height: 280px; }
  .split.flip .split-img, .split.flip .split-txt { order: 0; }
  .split-txt { padding: 40px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .industry-list { grid-template-columns: minmax(0, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .industries-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-trust { gap: 14px; }
  .fact-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 60px var(--pad); }
}

/* ══════════════════════════════════════
   INNER PAGE COMPONENTS
══════════════════════════════════════ */

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; font-size: 12px; color: rgba(255,255,255,.45);
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .15s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 10px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-60) 100%);
  padding: 72px var(--pad) 68px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 120% at 80% 50%, rgba(158,210,0,.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--green-30); background: rgba(158,210,0,.12); border-color: rgba(158,210,0,.25); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; max-width: 780px; position: relative; }
.page-hero .lead { color: rgba(255,255,255,.68); max-width: 720px; position: relative; }
.page-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; position: relative; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 6px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-b); font-size: 14px; color: var(--text);
  background: var(--white); transition: border-color .15s, box-shadow .15s; outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(97,128,0,.12); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-block {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.contact-detail-block h4 { margin-bottom: 20px; font-size: 16px; }
.contact-detail-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; color: var(--text-muted); }
.contact-detail-item:last-child { margin-bottom: 0; }
.contact-detail-item i { color: var(--green); font-size: 18px; flex-shrink: 0; margin-top: 2px; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-img { height: 300px; background: var(--off-white); overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-60) 100%);
  display: flex; align-items: center; justify-content: center;
}
.team-img-placeholder i { font-size: 56px; color: rgba(255,255,255,.12); }
.team-info { padding: 22px; }
.team-info h4 { margin-bottom: 4px; font-size: 17px; }
.team-role { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--green); font-weight: 700; margin-bottom: 10px; }
.team-info p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── CREDENTIAL GRID ── */
.credential-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.credential-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  background: var(--white); transition: box-shadow .2s, transform .2s;
}
.credential-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.credential-item i { font-size: 32px; color: var(--green); margin-bottom: 14px; display: block; }
.credential-item h4 { font-size: 15px; margin-bottom: 6px; }
.credential-item p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.feature-list li i { color: var(--green); font-size: 20px; flex-shrink: 0; margin-top: 2px; }

/* ── PROCESS STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-top: 32px; }
.step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.step:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.step-num {
  font-family: var(--font-h); font-size: 13px; font-weight: 800;
  color: var(--white); background: linear-gradient(135deg, var(--green-60), var(--green));
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: 0 4px 10px rgba(97,128,0,.3);
}
.step h4 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── PRODUCT CARDS (services pages) ── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
  background: var(--white);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-card .icon-wrap {
  margin-bottom: 18px; width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-60) 100%);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(15,25,68,.2);
}
.product-card .icon-wrap i { font-size: 24px; color: var(--white); }
.product-card h3 { font-size: 18px; margin-bottom: 8px; }
.product-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

/* ── PROJECTS / CASE STUDIES ── */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .25s, transform .25s, border-color .25s;
  background: var(--white);
}
.project-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); border-color: rgba(97,128,0,.2); }
.project-img { height: 200px; overflow: hidden; background: var(--off-white); }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-img img { transform: scale(1.06); }
.project-body { padding: 24px; }
.project-sector { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--green); font-weight: 700; margin-bottom: 8px; }
.project-body h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.3; }
.project-body p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.project-outcome {
  font-size: 12px; font-weight: 700; color: var(--navy);
  padding: 10px 14px; background: var(--off-white);
  border-radius: var(--radius-xs); border-left: 3px solid var(--green);
}

/* ── INDUSTRY SECTIONS ── */
.industry-section { padding: 80px var(--pad); border-bottom: 1px solid var(--border); }
.industry-section:last-child { border-bottom: none; }
.industry-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.industry-section-inner.flip .industry-section-img { order: 2; }
.industry-section-inner.flip .industry-section-txt { order: 1; }
.industry-section-img { border-radius: var(--radius); overflow: hidden; height: 360px; box-shadow: var(--shadow-lg); }
.industry-section-img img { width: 100%; height: 100%; object-fit: cover; }
.industry-section-txt h2 { margin-bottom: 14px; font-size: clamp(22px,2.5vw,32px); }
.industry-section-txt p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }

/* ── SERVICE DETAIL ── */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.service-detail-aside { position: sticky; top: 120px; }
.service-aside-box {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; margin-bottom: 16px; background: var(--white);
}
.service-aside-box h4 { font-size: 15px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.service-aside-box a { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-muted); margin-bottom: 10px; transition: color .15s; padding: 6px 8px; border-radius: var(--radius-xs); }
.service-aside-box a i { font-size: 18px; color: var(--navy); flex-shrink: 0; }
.service-aside-box a:hover { color: var(--green); background: var(--off-white); }
.service-aside-box a:hover i { color: var(--green); }
.service-aside-box a.active { color: var(--green); font-weight: 700; background: rgba(97,128,0,.06); }
.service-aside-box a.active i { color: var(--green); }
.service-aside-box a.btn-primary { color: var(--white); padding: 11px 22px; font-size: 13px; margin-bottom: 0; }
.service-aside-box a.btn-primary:hover { color: var(--white); background: linear-gradient(135deg, var(--green-60) 0%, var(--green) 100%); }
.service-aside-box a.btn-primary i { color: var(--white); }

/* ── RESPONSIVE: INNER PAGES ── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .credential-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-aside { position: static; }
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: minmax(0, 1fr); }
  .credential-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .industry-section-inner { grid-template-columns: 1fr; }
  .industry-section-inner.flip .industry-section-img,
  .industry-section-inner.flip .industry-section-txt { order: 0; }
}

/* ── Founder video trigger ── */
.founder-video-trigger {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 28px; padding: 0; background: none; border: none;
  cursor: pointer; color: var(--navy); font-family: var(--font-h);
  font-weight: 700; font-size: 15px; text-align: left;
}
.founder-video-play {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
}
.founder-video-play i { font-size: 20px; }
.founder-video-trigger:hover .founder-video-play { transform: scale(1.08); background: var(--navy); }

/* ── Video modal ── */
.video-modal {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,17,50,.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.video-modal.open { opacity: 1; pointer-events: all; }
.video-modal-inner { position: relative; width: 90%; max-width: 900px; }
.video-modal-close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none; color: var(--white);
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  font-family: var(--font-h); font-size: 14px; font-weight: 600;
  opacity: .8; transition: opacity .2s;
}
.video-modal-close:hover { opacity: 1; }
.video-modal-close i { font-size: 20px; }
.video-modal-frame {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius); overflow: hidden; background: #000;
}
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
