/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --ink:       #0d1b2a;
  --ink-2:     #2c3e50;
  --muted:     #6b7a8d;
  --muted-2:   #9aa5b1;
  --bg:        #f8f7f4;
  --bg-2:      #f0efeb;
  --line:      #e2e0db;
  --accent:    #1e4d6b;
  --accent-h:  #163d56;
  --gold:      #c9a84c;
  --white:     #ffffff;
  --hh:        72px;       /* header height */
  --wrap:      1200px;
  --r:         6px;
  --ease:      cubic-bezier(.22,1,.36,1);
  --shadow:    0 4px 24px rgba(13,27,42,.08);
  --shadow-lg: 0 16px 48px rgba(13,27,42,.16);
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
body  { margin: 0; background: var(--bg); color: var(--ink); }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; height: auto; display: block; }

/* ============================================================
   SCROLL PROGRESS BAR
============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(to right, var(--accent), var(--gold));
  z-index: 10000; transition: width .1s linear;
  pointer-events: none;
}

/* ============================================================
   HEADER  (rendered by Xpro header template)
============================================================ */
header.site-header {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 9000 !important;
  height: var(--hh) !important;
  background: #fff !important;
  border-bottom: 1px solid var(--line) !important;
  box-shadow: 0 2px 12px rgba(13,27,42,.05) !important;
  display: flex !important; align-items: center !important;
  overflow: visible !important;
  transition: box-shadow .3s !important;
}
header.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(13,27,42,.12) !important;
}
header.site-header .wrap {
  max-width: var(--wrap); margin: 0 auto; padding: 0 40px;
  width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: var(--hh); overflow: visible;
}

/* Brand */
.brand { display:flex; align-items:center; gap:12px; color:var(--ink); flex-shrink:0; }
a.header-cta { justify-self: end; align-self: center !important; margin-left: 0 !important; }
nav.nav { align-self: center !important; }
.brand { align-self: center !important; }
.brand-mark {
  width:40px; height:40px; background:var(--accent); color:#fff;
  font-family:"IBM Plex Mono",monospace; font-size:13px; font-weight:700;
  display:grid; place-items:center; border-radius:3px; flex-shrink:0;
  letter-spacing:.05em;
}
.brand-text { display:flex; flex-direction:column; }
.brand-name { font-family:"Inter",sans-serif; font-size:13.5px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--ink); line-height:1.1; }
.brand-sub  { font-family:"IBM Plex Mono",monospace; font-size:8.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-top:2px; }

/* Nav */
nav.nav {
  display: flex; align-items: stretch; height: var(--hh);
  gap: 0; overflow: visible;
}
nav.nav > a {
  display: flex; align-items: center; padding: 0 14px;
  font-family: "Inter",sans-serif; font-size: 11.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
  white-space: nowrap; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
nav.nav > a:hover, nav.nav > a.active { color: var(--accent); border-bottom-color: var(--accent); }

/* Dropdown parent */
.nav-item { position: relative; display: flex; align-items: center; height: var(--hh); }
.nav-item > a {
  display: flex; align-items: center; height: 100%; padding: 0 14px;
  font-family: "Inter",sans-serif; font-size: 11.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
  white-space: nowrap; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s; gap: 5px;
}
.nav-item:hover > a { color: var(--accent); border-bottom-color: var(--accent); }

/* Caret */
.caret {
  display: inline-block; width: 0; height: 0; flex-shrink: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4.5px solid currentColor; margin-top: 1px;
  transition: transform .25s var(--ease);
}
.nav-item:hover .caret { transform: rotate(180deg); }

/* Dropdown panel */
.nav-drop {
  position: absolute; top: 100%; left: 0; min-width: 270px;
  background: #fff; border: 1px solid var(--line);
  border-top: 2.5px solid var(--accent);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 48px rgba(13,27,42,.13);
  padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear .22s;
  z-index: 9999; pointer-events: none;
}
.nav-item:hover .nav-drop {
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: all;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.drop-label {
  display: block; padding: 10px 20px 5px;
  font-family: "IBM Plex Mono",monospace; font-size: 9px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2);
}
.nav-drop a {
  display: flex !important; align-items: center; gap: 10px;
  padding: 11px 20px; height: auto !important;
  font-family: "Inter",sans-serif; font-size: 13px; font-weight: 500;
  color: var(--ink-2); border-left: 2.5px solid transparent;
  border-bottom: none !important;
  transition: background .15s, color .15s, border-color .15s;
}
.nav-drop a:hover { background: #f0f4f8; color: var(--accent); border-left-color: var(--accent); }

/* Header CTA button */
a.header-cta {
  display: inline-flex !important; align-items: center; gap: 6px;
  margin-left: 16px; padding: 9px 20px;
  background: var(--accent) !important; color: #fff !important;
  font-family: "Inter",sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: var(--r); white-space: nowrap; flex-shrink: 0;
  border-bottom: none !important; height: auto !important;
  line-height: 1 !important; writing-mode: horizontal-tb !important;
  box-shadow: 0 2px 8px rgba(30,77,107,.25);
  transition: background .2s, transform .18s, box-shadow .2s;
}
a.header-cta:hover {
  background: var(--accent-h) !important; color: #fff !important;
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(30,77,107,.3);
}

/* Hamburger */
.nav-mob-toggle {
  display: none; background: none; border: none;
  padding: 8px; cursor: pointer; flex-direction: column; gap: 5px;
  margin-left: 10px; flex-shrink: 0;
}
.nav-mob-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }

/* Mobile nav overlay */
.mob-nav-overlay {
  position: fixed; inset: 0;
  background: #091524; backdrop-filter: blur(6px);
  z-index: 99999; flex-direction: column;
  padding: 0; overflow-y: auto;
  transform: translateX(100%); transition: transform .42s cubic-bezier(.22,1,.36,1);
  display: flex !important;
}
.mob-nav-overlay.open { transform: translateX(0); }
.mob-nav-close {
  position: absolute; top: 22px; right: 24px;
  width: 40px; height: 40px; padding: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.75); font-size: 16px;
  cursor: pointer; border-radius: 50%;
  display: grid !important; place-items: center;
  align-self: auto; margin-bottom: 0;
  transition: background .2s, color .2s;
}
.mob-nav-close:hover { background: rgba(255,255,255,.14); color: #fff; }
.mob-nav-brand-hdr {
  display: flex; align-items: center; gap: 12px;
  padding: 26px 28px 22px; border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mob-nav-brand-hdr .mnb-mark {
  width: 38px; height: 38px; background: var(--accent);
  color: #fff; font-family: "IBM Plex Mono",monospace; font-size: 13px; font-weight: 700;
  display: grid; place-items: center; border-radius: 3px; flex-shrink: 0;
}
.mob-nav-brand-hdr .mnb-name {
  font-family: "Inter",sans-serif; font-size: 13px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: #fff;
  display: block; line-height: 1.2;
}
.mob-nav-brand-hdr .mnb-sub {
  font-family: "IBM Plex Mono",monospace; font-size: 8.5px;
  letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.32); display: block; margin-top: 2px;
}
.mob-nav-links {
  flex: 1; display: flex; flex-direction: column;
  padding: 8px 0;
}
.mob-nav-overlay > a:not(.mob-nav-cta) {
  display: flex !important; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 58px;
  font-family: "Inter",sans-serif; font-size: 16px; font-weight: 600;
  letter-spacing: .01em; color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.055);
  transition: color .18s, background .18s;
  text-decoration: none;
}
.mob-nav-overlay > a:not(.mob-nav-cta)::after {
  content: '\2192'; font-size: 13px;
  color: rgba(255,255,255,.2);
  transition: transform .2s, color .2s;
}
.mob-nav-overlay > a:not(.mob-nav-cta):hover {
  color: #fff; background: rgba(255,255,255,.04);
}
.mob-nav-overlay > a:not(.mob-nav-cta):hover::after {
  color: var(--gold, #c9a84c); transform: translateX(5px);
}
.mob-nav-cta {
  display: flex !important; align-items: center; justify-content: center; gap: 8px;
  margin: 24px 28px 36px;
  padding: 16px 24px;
  background: var(--accent); border-radius: 3px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; border-bottom: none !important;
  color: #fff !important; transition: background .2s, transform .18s;
}
.mob-nav-cta:hover { background: var(--accent-h); color: #fff !important; transform: translateY(-1px); }
.mob-nav-footer {
  padding: 20px 28px; border-top: 1px solid rgba(255,255,255,.06);
  font-family: "IBM Plex Mono",monospace; font-size: 9px;
  letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.22); flex-shrink: 0;
}

/* Body offset for fixed header */
body { padding-top: var(--hh) !important; }

/* Overflow must stay visible on all Xpro wrappers for dropdown to work */
.xpro-theme-builder-header,
.xpro-theme-builder-header *:not(.nav-drop):not(.mob-nav-overlay) {
  overflow: visible !important;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.wrap  { max-width: var(--wrap); margin: 0 auto; padding: 0 48px; width: 100%; }
.section       { padding: 64px 0; }
.section--tight { padding: 48px 0; }

/* Grid background pattern */
.gridframe { position: relative; }
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px,transparent 1px), linear-gradient(90deg,var(--line) 1px,transparent 1px);
  background-size: 64px 64px; opacity: .4;
}

/* Two-column split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.rev > *:first-child { order: 2; }
.split.rev > *:last-child  { order: 1; }

/* Figure / image container */
.figure { position: relative; }
.figure img,
.prod-img img {
  width: 100%; height: 460px;
  object-fit: cover; border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}
.figtag {
  display: inline-block; margin-top: 12px;
  font-family: "IBM Plex Mono",monospace; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "IBM Plex Mono",monospace; font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.eyebrow .tick { display: inline-block; width: 20px; height: 1px; background: currentColor; }

.h2 { font-family: "Inter",sans-serif; font-size: clamp(28px,3.5vw,46px); font-weight: 900; line-height: 1.1; letter-spacing: -.025em; color: var(--ink); margin: 0; }
.h3 { font-family: "Inter",sans-serif; font-size: clamp(18px,2vw,24px); font-weight: 800; line-height: 1.2; color: var(--ink); margin: 0; }
.display { font-family: "Inter",sans-serif; font-size: clamp(32px,4vw,62px); font-weight: 900; line-height: 1.05; letter-spacing: -.03em; color: var(--ink); margin: 0; }
.lede { font-size: 16px; line-height: 1.72; color: var(--ink-2); margin: 0; }

/* Section heading with "between" layout */
.sec-head { margin-bottom: 56px; }
.sec-head.between { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-family: "Inter",sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: all .22s var(--ease); cursor: pointer;
}
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 8px rgba(30,77,107,.22);
}
.btn--primary:hover { background: var(--accent-h); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(30,77,107,.3); }
.btn--ghost { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.btn .arrow, .btn-arr { transition: transform .22s var(--ease); }
.btn:hover .arrow, .btn:hover .btn-arr { transform: translateX(3px); }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  min-height: calc(100vh - var(--hh));
  display: flex; align-items: center;
  background: var(--ink);
}
/* CRITICAL: Hero text must be WHITE on dark background */
.hero .display,
.hero .elementor-heading-title,
.hero h1, .hero h2, .hero h3 { color: #ffffff !important; }
.hero p, .hero .lede,
.hero .elementor-widget-text-editor p { color: rgba(255,255,255,.72) !important; }
.hero .eyebrow { color: rgba(255,255,255,.42) !important; }
.hero .hero-meta .mk { color: rgba(255,255,255,.42) !important; }
.hero .hero-meta .mv,
.hero .hero-meta .m { color: #fff !important; }
/* Force all inline spans (brand names etc) to white */
.hero .elementor-widget-text-editor span,
.hero .elementor-widget-text-editor strong,
.hero .elementor-widget-text-editor a { color: rgba(255,255,255,.85) !important; }
.hero .btn--ghost { border-color: rgba(255,255,255,.35) !important; color: #fff !important; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding: 60px 0;
}
.hero-copy .display { font-size: clamp(32px,4.2vw,62px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-figure img {
  width: 100%; height: 560px; object-fit: cover;
  border-radius: var(--r); box-shadow: var(--shadow-lg);
}
.hero-meta { display: flex; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 24px; margin-top: 36px; }
.hero-meta .m { padding: 0 24px 0 0; margin-right: 24px; border-right: 1px solid var(--line); }
.hero-meta .m:last-child { border-right: none; margin-right: 0; }
.hero-meta .mk { display: block; font-family: "IBM Plex Mono",monospace; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.hero-meta .mv { font-size: 13px; font-weight: 600; color: var(--ink); }
.partner-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.partner-logos span { font-family: "IBM Plex Mono",monospace; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.partner-logos a { font-family: Arial Black,sans-serif; font-size: 14px; font-weight: 900; transition: opacity .2s; }
.partner-logos a:hover { opacity: .7; }

/* ============================================================
   STATS
============================================================ */
.stats { padding: 0; border-block: 1px solid var(--line); background: var(--bg-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid var(--line); }
.stat { padding: 36px 40px; border-right: 1px solid var(--line); }
.stat .num {
  font-family: "Inter",sans-serif; font-size: clamp(36px,4vw,54px);
  font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -.03em;
}
.stat .num .suffix { font-size: .65em; }
.stat .label { font-family: "IBM Plex Mono",monospace; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ============================================================
   PRODUCT CARDS (home page grid)
============================================================ */
.products { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }
.products.rows { grid-template-columns: repeat(2,1fr); gap: 2px; }
.product {
  position: relative; background: #fff;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line);
  transition: box-shadow .22s, transform .22s; overflow: hidden;
}
.product:last-child { border-right: none; }
.product:hover { z-index: 2; box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-media {
  position: relative; overflow: hidden;
  height: 220px;          /* explicit height - fixes blank image issue */
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.product:hover .product-media img { transform: scale(1.04); }
.product-tag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: #fff; border: 1px solid var(--line);
  padding: 4px 10px; font-family: "IBM Plex Mono",monospace;
  font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2);
}
.product-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.origin { font-family: "IBM Plex Mono",monospace; font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.product-body h3.h3 { font-size: 18px; font-weight: 800; color: var(--ink); margin: 0 0 10px; }
.product-body p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0 0 20px; flex: 1; }
.product-link { display: inline-flex; align-items: center; gap: 6px; font-family: "IBM Plex Mono",monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-top: auto; transition: gap .2s; }
.product:hover .product-link { gap: 10px; }
/* Corner decoration */
.corner { position: absolute; width: 10px; height: 10px; }
.corner.tl { top:0;left:0;border-top:2px solid var(--accent);border-left:2px solid var(--accent); }
.corner.tr { top:0;right:0;border-top:2px solid var(--accent);border-right:2px solid var(--accent); }
.corner.bl { bottom:0;left:0;border-bottom:2px solid var(--accent);border-left:2px solid var(--accent); }
.corner.br { bottom:0;right:0;border-bottom:2px solid var(--accent);border-right:2px solid var(--accent); }

/* ============================================================
   SERVICES LIST
============================================================ */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 56px 1fr 1fr auto;
  align-items: start; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background .18s, padding-left .18s;
}
.svc-row:hover { background: rgba(30,77,107,.035); padding-left: 14px; margin: 0 -14px; padding-right: 14px; }
.svc-row .idx { font-family: "IBM Plex Mono",monospace; font-size: 11px; letter-spacing: .1em; color: var(--muted); padding-top: 4px; }
.svc-row h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.svc-row p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.svc-row .go { width: 36px; height: 36px; border: 1.5px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 15px; color: var(--muted); transition: all .2s; flex-shrink: 0; }
.svc-row:hover .go { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ============================================================
   INDUSTRY GRID
============================================================ */
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; border: 1px solid var(--line); }
.ind { position: relative; overflow: hidden; aspect-ratio: 1; display: flex; flex-direction: column; justify-content: flex-end; background: var(--bg-2); }
.ind-img { position: absolute; inset: 0; }
.ind-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); opacity: .7; }
.ind:hover .ind-img img { transform: scale(1.08); opacity: .9; }
.ind::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,.72) 0%,transparent 55%); }
.ind .n { position: absolute; top: 12px; left: 12px; font-family: "IBM Plex Mono",monospace; font-size: 10px; letter-spacing: .1em; color: rgba(255,255,255,.5); z-index: 1; }
.ind .name { padding: 12px 16px; font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .02em; position: relative; z-index: 1; }
.ind .dot { display: none; }

/* ============================================================
   CTA BLOCK
============================================================ */
.cta { background: var(--ink); color: #fff; padding: 72px; border-radius: var(--r); position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; opacity: .05; background-image: linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px); background-size: 48px 48px; pointer-events: none; }
.cta .eyebrow { color: var(--gold); position: relative; }
.cta .eyebrow .tick { background: var(--gold); }
.cta .h2 { color: #fff; position: relative; }
.cta .lede { color: rgba(255,255,255,.7); position: relative; }
.cta .btn--primary { background: var(--gold); color: var(--ink); }
.cta .btn--primary:hover { background: #b8962f; color: var(--ink); }
.cta .btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.cta .btn--ghost:hover { background: rgba(255,255,255,.08); }

/* ============================================================
   PAGE HERO (inner pages — dark bg)
============================================================ */
.page-hero {
  padding: 90px 0 70px; background: var(--ink); position: relative; overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .05; background-image: linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px); background-size: 64px 64px; pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 1; }
.crumbs,.crumb { font-family: "IBM Plex Mono",monospace; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.crumbs a { color: rgba(255,255,255,.35); }
.crumbs a:hover, .accent-text { color: rgba(255,255,255,.8); }
.page-hero .display { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,.68); max-width: 600px; margin-top: 20px; }
.page-hero .eyebrow { color: rgba(255,255,255,.45); margin-bottom: 12px; }
.page-hero .eyebrow .tick { background: rgba(255,255,255,.4); }

/* ============================================================
   SPECS LIST (product detail)
============================================================ */
.specs { list-style: none; margin: 0; padding: 0; }
.specs li { display: grid; grid-template-columns: 100px 1fr; gap: 16px; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.specs li:first-child { border-top: 1px solid var(--line); }
.specs .k { font-family: "IBM Plex Mono",monospace; font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.specs .v { line-height: 1.65; color: var(--ink-2); }

/* ============================================================
   PARTNERS GRID
============================================================ */
.partners { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); }
.partner { padding: 32px 28px; border-right: 1px solid var(--line); background: #fff; transition: background .2s; }
.partner:last-child { border-right: none; }
.partner:hover { background: #f4f7fa; }
.partner .pn { font-family: "Inter",sans-serif; font-size: 17px; font-weight: 900; color: var(--ink); margin-bottom: 5px; }
.partner .pr { font-family: "IBM Plex Mono",monospace; font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.partner .pd { font-size: 13px; line-height: 1.65; color: var(--ink-2); }

/* ============================================================
   TESTIMONIALS / CERTIFICATES
============================================================ */
.cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.cert { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .22s, transform .22s; }
.cert:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.cert-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.cert-cap { padding: 16px 20px; }
.cert-cap .ck { font-family: "IBM Plex Mono",monospace; font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.cert-cap .ct { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.4; }

/* Client sector groups */
.ind-sectors { display: flex; flex-direction: column; gap: 40px; }
.sector-group { }
.sector-title { font-family: "IBM Plex Mono",monospace; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.sector-clients { display: flex; flex-wrap: wrap; gap: 10px; }
.sector-clients span { padding: 7px 16px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px; font-size: 13px; font-weight: 500; color: var(--ink-2); transition: background .18s; }
.sector-clients span:hover { background: #fff; }
.client-logo-badge { border-radius: 5px; padding: 7px 16px; font-size: 12px; }

/* ============================================================
   ABOUT — Industry tag cloud
============================================================ */
.about-ind-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.ind-tag { padding: 8px 16px; background: #fff; border: 1px solid var(--line); border-radius: 4px; font-size: 13px; color: var(--ink-2); font-weight: 500; transition: all .18s; }
.ind-tag:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================================
   KNOW HOW — External links
============================================================ */
.ext-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 28px; font-family: "IBM Plex Mono",monospace; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .18s, border-color .18s; }
.ext-link:hover { color: var(--accent-h); border-color: var(--accent); }
.ext-link .x { font-family: sans-serif; font-size: 13px; }

/* ============================================================
   ABOUT — Live counter widget
============================================================ */
.sa-counter-widget { padding: 40px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); }

/* ============================================================
   FOOTER (rendered by Xpro footer template 2016)
============================================================ */
.xpro-theme-builder-footer { background: var(--ink); }
.xpro-theme-builder-footer .elementor-section { background: var(--ink) !important; }
.xpro-theme-builder-footer .elementor-widget-container { color: rgba(255,255,255,.6); }
/* Ensure footer links render correctly */
.xpro-theme-builder-footer a {
  color: rgba(255,255,255,.6); transition: color .18s;
}
.xpro-theme-builder-footer a:hover { color: #fff; }

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
/* Fallback: if JS disabled/slow, show after 2s so content never stays hidden */
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }
.no-js .reveal { opacity: 1 !important; transform: none !important; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }

/* ============================================================
   ELEMENTOR FULL-WIDTH COMPATIBILITY
============================================================ */
body.elementor-template-canvas .ast-container,
body.elementor-template-canvas .entry-content,
body.elementor-template-canvas .entry-content > .elementor { padding: 0 !important; margin: 0 !important; max-width: 100% !important; }
.elementor-section-boxed > .elementor-container { max-width: var(--wrap) !important; }
.e-con-inner { max-width: var(--wrap) !important; }

/* Product page: image in Elementor widget fills properly */
.elementor-widget-image img { border-radius: var(--r); box-shadow: var(--shadow-lg); }
.prod-img .elementor-widget-image img { height: 460px; object-fit: cover; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1080px) {
  .hero-inner { gap: 48px; }
  .split { gap: 48px; }
  .cert-grid { grid-template-columns: repeat(2,1fr); }
  .partners { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  :root { --hh: 64px; }
  html, body { overflow-x: hidden !important; }
  .wrap { padding: 0 20px !important; }
  header.site-header .wrap { padding: 0 20px !important; }
  /* Hide desktop nav, show hamburger */
  nav.nav, a.header-cta { display: none !important; }
  .nav-mob-toggle { display: flex !important; }
  /* Stacking */
  .hero-inner { grid-template-columns: 1fr !important; gap: 32px; padding: 36px 0; }
  .hero-figure { order: -1; }
  .hero-figure img { height: 240px; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .products { grid-template-columns: 1fr !important; }
  .products.rows { grid-template-columns: 1fr !important; }
  .product { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .split { grid-template-columns: 1fr !important; gap: 32px; }
  .split.rev > * { order: unset; }
  .figure img, .prod-img img { height: 260px; }
  .ind-grid { grid-template-columns: repeat(2,1fr) !important; }
  .cta { padding: 40px 28px !important; }
  .cert-grid { grid-template-columns: 1fr 1fr !important; }
  .partners { grid-template-columns: 1fr 1fr !important; }
  /* MOBILE SVC-ROW - targets actual rendered HTML structure where Elementor wraps idx in <p> */
  .svc-row {
    grid-template-columns: 34px 1fr auto !important;
    grid-template-rows: auto auto !important;
    gap: 0 12px !important;
    padding: 20px 0 !important;
    align-items: start !important;
    cursor: pointer;
  }
  /* idx wrapper <p> = first child */
  .svc-row > p:first-child {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;  /* span both rows so it stays left */
    padding-top: 3px !important;
    margin: 0 !important;
    align-self: start !important;
  }
  /* h3 = second child */
  .svc-row > h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 0 4px !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
  /* description <p> = third child */
  .svc-row > p:nth-child(3) {
    grid-column: 2 !important;
    grid-row: 2 !important;
    display: block !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  /* go arrow - show on mobile in col 3 */
  .svc-row > p:last-child {
    display: flex !important;
    grid-column: 3 !important;
    grid-row: 1 / 3 !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .svc-row > p:last-child a.go,
  .svc-row > .go,
  .svc-row > span.go {
    display: flex !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border: 1.5px solid var(--line) !important;
    border-radius: 50% !important;
    color: var(--muted) !important;
    font-size: 13px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    text-decoration: none !important;
    grid-column: 3 !important;
    grid-row: 1 / 3 !important;
    align-self: center !important;
  }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px !important; }
  .section { padding: 64px 0 !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .ind-grid { grid-template-columns: 1fr 1fr !important; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .sec-head.between { flex-direction: column; align-items: flex-start; }
  .cta { padding: 32px 20px !important; }
  .cert-grid { grid-template-columns: 1fr !important; }
  .partners { grid-template-columns: 1fr !important; }
  .partner { border-right: none !important; border-bottom: 1px solid var(--line); }
  .specs li { grid-template-columns: 80px 1fr; }
}
@media (max-width: 380px) {
  .wrap { padding: 0 14px !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .ind-grid { grid-template-columns: 1fr 1fr !important; }
}


/* ============================================================
   FIX: Product card images inside Elementor html widget
   Override the elementor-widget-image box-shadow that breaks product cards
============================================================ */
.product .elementor-widget-image img,
.product img {
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.product-media {
  position: relative !important;
  overflow: hidden !important;
  height: 220px !important;
}
.product-media img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.product-tag {
  position: absolute !important;
  top: 12px !important; left: 12px !important;
  z-index: 2 !important;
}

/* ============================================================
   FIX: Explore All Services button - ensure arrow shows and link works
============================================================ */
.svc-list + * .btn--ghost,
.sec-head.between .btn--ghost,
.sec-head .btn--ghost {
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.btn .arrow {
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ============================================================
   FIX: Footer responsive grid
============================================================ */
.sa-foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1080px) {
  .sa-foot-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .sa-foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sa-foot-brand { grid-column: 1 / -1; }
  .sa-foot-top { padding: 48px 0 36px; }
}
@media (max-width: 560px) {
  .sa-foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .sa-foot-brand { grid-column: 1 / -1; }
  .sa-foot-col h4 { font-size: 10px; }
  .sa-foot-col ul li a, .sa-foot-addr { font-size: 12px; }
}

/* ============================================================
   FIX: Live counter widget responsive (About page)
============================================================ */
@media (max-width: 560px) {
  .sa-counter-widget {
    padding: 24px 20px !important;
  }
  #saLiveCounter > div:last-child {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 10px !important;
  }
  #cntMonths, #cntDays, #cntHours {
    font-size: 1.4rem !important;
  }
}

/* ============================================================
   FIX: Mobile Services section - sec-head.between stacking  
============================================================ */
@media (max-width: 560px) {
  .sec-head.between {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .sec-head.between .btn {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
}

/* ============================================================
   FIX: Elementor section full-width on product section 
============================================================ */
.elementor-widget-html .product {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  border-right: 1px solid var(--line);
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
  text-decoration: none !important;
  color: inherit !important;
}
.elementor-widget-html .product:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-2px) !important;
  z-index: 2;
}
.elementor-widget-html .product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.elementor-widget-html {
  height: 100% !important;
}
.elementor-widget-html > .elementor-widget-container {
  height: 100% !important;
}


/* Product card click handling - using div instead of a to avoid wpautop */
.sa-product-card {
  cursor: pointer !important;
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  position: relative !important;
  overflow: hidden !important;
  border-right: 1px solid var(--line) !important;
  transition: box-shadow .22s, transform .22s !important;
  height: 100% !important;
  text-decoration: none;
  color: inherit;
}
.sa-product-card:hover {
  z-index: 2 !important;
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-2px) !important;
}
.sa-product-card:last-child { border-right: none !important; }



/* ============================================================
   PREMIUM UPGRADE 2026 - Section rhythm, depth, refinement
   ============================================================ */

/* --- SECTION ALTERNATION for visual rhythm --- */
/* Default sections stay light, but we create contrast bands */
.section { position: relative; }

/* Stats band - subtle darker tone with gold top accent */
.stats {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-2) 100%) !important;
  border-top: 2px solid var(--gold) !important;
}
.stat .num { color: var(--accent) !important; font-weight: 800 !important; }
.stat:hover { background: #fff !important; }
.stat { transition: background .3s var(--ease); }

/* --- SERVICES SECTION: make it DARK for premium drama --- */
.section.svc-dark,
#svc-section {
  background: var(--ink) !important;
}
.section.svc-dark .eyebrow { color: var(--gold) !important; }
.section.svc-dark .h2,
.section.svc-dark h2 { color: #fff !important; }
.section.svc-dark .lede,
.section.svc-dark p { color: rgba(255,255,255,.62) !important; }
.section.svc-dark .svc-list { border-top-color: rgba(255,255,255,.12) !important; }
.section.svc-dark .svc-row { border-bottom-color: rgba(255,255,255,.10) !important; }
.section.svc-dark .svc-row h3 { color: #fff !important; }
.section.svc-dark .svc-row p { color: rgba(255,255,255,.55) !important; }
.section.svc-dark .svc-row .idx { color: var(--gold) !important; }
.section.svc-dark .svc-row .go { border-color: rgba(255,255,255,.25) !important; color: rgba(255,255,255,.7) !important; }
.section.svc-dark .svc-row:hover { background: rgba(255,255,255,.04) !important; }
.section.svc-dark .svc-row:hover h3 { color: var(--gold) !important; }
.section.svc-dark .svc-row:hover .go { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--ink) !important; }
.section.svc-dark .btn--ghost { border-color: rgba(255,255,255,.35) !important; color: #fff !important; }
.section.svc-dark .btn--ghost:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--ink) !important; }

/* --- SERVICE ROW premium hover (light sections) --- */
.svc-row { position: relative; }
.svc-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent); transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s var(--ease);
}
.svc-row:hover::before { transform: scaleY(1); }
.svc-row h3 { transition: color .3s; }
.svc-row:hover h3 { color: var(--accent); }

/* --- PRODUCT cards: refined shadow + gold tag --- */
.product:hover { box-shadow: 0 28px 70px rgba(13,27,42,.14) !important; transform: translateY(-6px) !important; }
.product-tag { background: var(--accent) !important; color: #fff !important; }
.product-body h3.h3 { transition: color .3s; }
.product:hover .product-body h3.h3 { color: var(--accent); }

/* --- EYEBROW: gold tick for accent --- */
.eyebrow { color: var(--accent) !important; font-weight: 600 !important; }
.eyebrow .tick { background: var(--gold) !important; height: 2px !important; width: 24px !important; }

/* --- DISPLAY headings: tighter, bolder --- */
.display { letter-spacing: -.035em !important; }
.h2 { letter-spacing: -.025em !important; }

/* --- BUTTON refinement --- */
.btn--primary {
  background: var(--accent) !important; border: 1px solid var(--accent) !important;
  transition: all .35s var(--ease) !important;
}
.btn--primary:hover {
  background: var(--accent-h) !important; border-color: var(--accent-h) !important;
  transform: translateY(-3px) !important; box-shadow: 0 14px 36px -8px rgba(30,77,107,.45) !important;
}
.btn--ghost { transition: all .35s var(--ease) !important; }
.btn--ghost:hover { transform: translateY(-2px) !important; }

/* --- HEADER scroll polish --- */
.site-header { transition: background .4s, box-shadow .4s, transform .4s var(--ease) !important; }
.site-header.scrolled {
  box-shadow: 0 2px 30px rgba(13,27,42,.10) !important;
  background: rgba(255,255,255,.97) !important; backdrop-filter: blur(10px) !important;
}

/* --- SCROLL REVEAL --- */
/* reveal handled above via .visible - just add stagger for d=5,6 */
.reveal.visible { opacity: 1 !important; transform: none !important; }
.reveal[data-d="5"]{transition-delay:.5s}.reveal[data-d="6"]{transition-delay:.6s}

/* --- INDUSTRY items hover --- */
.ind { transition: background .3s, border-color .3s, transform .35s var(--ease) !important; }
.ind:hover { background: #fff !important; border-color: var(--accent) !important; transform: translateY(-2px) !important; }

/* --- CTA: gold glow --- */
.cta::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(201,168,76,.12) 0%, transparent 70%);
}

/* --- CUSTOM scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: rgba(30,77,107,.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
::selection { background: var(--accent); color: #fff; }

/* --- SCROLL PROGRESS bar gold --- */
.scroll-progress { background: var(--gold) !important; }


/* REDUCE EXCESSIVE GAPS between sections */
.section > .elementor-container,
.section > .e-con,
.section > .elementor-column > .elementor-widget-wrap { max-width: 100%; }

/* Elementor default inner container padding bleeds into section padding */
/* removed bad padding override */

/* CTA section handled by specific element ID only */

/* CTA class fix */
.cta { background: var(--ink) !important; color: #fff; }

/* HOME: CTA/contact section - dark navy */
.elementor-element-5e73d1cc {
  background: var(--ink) !important;
}
.elementor-element-5e73d1cc .h2,
.elementor-element-5e73d1cc h2,
.elementor-element-5e73d1cc h3 { color: #fff !important; }
.elementor-element-5e73d1cc p { color: rgba(255,255,255,.68) !important; }
.elementor-element-5e73d1cc .eyebrow { color: var(--gold) !important; }

/* CTA SECTION - dark navy - ONLY target by specific ID */
.elementor-element-5e73d1cc {
  background: var(--ink) !important;
  background-color: var(--ink) !important;
}
.elementor-element-5e73d1cc h2,
.elementor-element-5e73d1cc h3,
.elementor-element-5e73d1cc .elementor-heading-title {
  color: #ffffff !important;
}
.elementor-element-5e73d1cc p,
.elementor-element-5e73d1cc .elementor-widget-text-editor p {
  color: rgba(255,255,255,.68) !important;
}
.elementor-element-5e73d1cc .eyebrow,
.elementor-element-5e73d1cc [class*="eyebrow"] {
  color: var(--gold) !important;
}
.elementor-element-5e73d1cc .btn--ghost {
  border-color: rgba(255,255,255,.3) !important;
  color: #fff !important;
}

/* Contributions/Industries section - keep LIGHT (not dark) */
.elementor-element-988718e {
  background: var(--bg) !important;
  background-color: var(--bg) !important;
}
.elementor-element-988718e *:not(.btn--primary) { color: var(--ink) !important; }
.elementor-element-988718e .eyebrow { color: var(--accent) !important; }
.elementor-element-988718e h2 { color: var(--ink) !important; }

/* Hero lede - ALL children white */
.hero .elementor-widget-text-editor,
.hero .elementor-widget-text-editor *,
.hero .elementor-text-editor,
.hero .elementor-text-editor * {
  color: rgba(255,255,255,.75) !important;
}
/* Strong/branded names slightly brighter */
.hero .elementor-widget-text-editor strong,
.hero .elementor-widget-text-editor b {
  color: #ffffff !important;
  font-weight: 700;
}

/* ============================================================
   TEXT VISIBILITY FIXES - beats Elementor generated CSS
   ============================================================ */

/* HOME HERO - dark bg, all text white */
body .hero.gridframe .elementor-heading-title,
body .hero .elementor-heading-title,
body .hero h1, body .hero h2 {
  color: #ffffff !important;
}
body .hero .elementor-widget-text-editor p,
body .hero .elementor-widget-text-editor {
  color: rgba(255,255,255,.72) !important;
}

/* PAGE HERO - dark bg, all text white */
body .page-hero .elementor-heading-title,
body .page-hero h1, body .page-hero h2, body .page-hero h3 {
  color: #ffffff !important;
  text-shadow: 0 1px 20px rgba(0,0,0,.25);
}
body .page-hero .elementor-widget-text-editor p,
body .page-hero .elementor-widget-text-editor {
  color: rgba(255,255,255,.68) !important;
}
/* Breadcrumb on dark hero */
body .page-hero a { color: rgba(255,255,255,.45) !important; }
body .page-hero .breadcrumb-current { color: var(--gold) !important; }

/* CTA SECTION wrapper - force dark bg */
body .cta-wrap,
body .elementor-section.cta-wrap,
body .e-con.cta-wrap {
  background-color: #0d1b2a !important;
  background: #0d1b2a !important;
}
/* CTA text on dark background */
body .cta-wrap .elementor-heading-title,
body .cta-wrap h2, body .cta-wrap h3 {
  color: #ffffff !important;
}
body .cta-wrap p,
body .cta-wrap .elementor-widget-text-editor {
  color: rgba(255,255,255,.65) !important;
}
body .cta-wrap .eyebrow { color: var(--gold) !important; }


/* ============================================================
   ELEMENT ID OVERRIDES - uses Elementor generated .elementor-element-{id}
   These are 100% reliable regardless of section type
   ============================================================ */

/* HOME - CTA section (5e73d1cc) */
.elementor-element-5e73d1cc.elementor-section {
  background-color: #0d1b2a !important;
  background: #0d1b2a !important;
}
.elementor-element-5e73d1cc .elementor-heading-title,
.elementor-element-5e73d1cc h1,
.elementor-element-5e73d1cc h2,
.elementor-element-5e73d1cc h3 {
  color: #ffffff !important;
}
.elementor-element-5e73d1cc p,
.elementor-element-5e73d1cc .elementor-widget-text-editor {
  color: rgba(255,255,255,.65) !important;
}
.elementor-element-5e73d1cc .eyebrow {
  color: var(--gold) !important;
}
.elementor-element-5e73d1cc a {
  color: rgba(255,255,255,.7) !important;
}

/* HOME - Stats section (aa58e128) - gold top border */
.elementor-element-aa58e128 {
  border-top: 2px solid var(--gold) !important;
}


/* ==================================================
   ALL PAGE HERO SECTIONS - direct ID targeting
   IDs: fd2fb23 29f58e5 bd012746 5c2c78fa 3413d3bf 70852465 f13948f4
   ================================================== */
.elementor-element-fd2fb23, .elementor-element-29f58e5, .elementor-element-bd012746, .elementor-element-5c2c78fa, .elementor-element-3413d3bf, .elementor-element-70852465, .elementor-element-f13948f4 {
  background-color: #0d1b2a !important;
  background: #0d1b2a !important;
}
.elementor-element-fd2fb23 .elementor-heading-title, .elementor-element-29f58e5 .elementor-heading-title, .elementor-element-bd012746 .elementor-heading-title, .elementor-element-5c2c78fa .elementor-heading-title, .elementor-element-3413d3bf .elementor-heading-title, .elementor-element-70852465 .elementor-heading-title, .elementor-element-f13948f4 .elementor-heading-title,
.elementor-element-fd2fb23 h1, .elementor-element-fd2fb23 h2, .elementor-element-fd2fb23 h3, .elementor-element-29f58e5 h1, .elementor-element-29f58e5 h2, .elementor-element-29f58e5 h3, .elementor-element-bd012746 h1, .elementor-element-bd012746 h2, .elementor-element-bd012746 h3, .elementor-element-5c2c78fa h1, .elementor-element-5c2c78fa h2, .elementor-element-5c2c78fa h3, .elementor-element-3413d3bf h1, .elementor-element-3413d3bf h2, .elementor-element-3413d3bf h3, .elementor-element-70852465 h1, .elementor-element-70852465 h2, .elementor-element-70852465 h3, .elementor-element-f13948f4 h1, .elementor-element-f13948f4 h2, .elementor-element-f13948f4 h3 {
  color: #ffffff !important;
  text-shadow: 0 1px 20px rgba(0,0,0,.2);
}
.elementor-element-fd2fb23 .elementor-widget-text-editor, .elementor-element-29f58e5 .elementor-widget-text-editor, .elementor-element-bd012746 .elementor-widget-text-editor, .elementor-element-5c2c78fa .elementor-widget-text-editor, .elementor-element-3413d3bf .elementor-widget-text-editor, .elementor-element-70852465 .elementor-widget-text-editor, .elementor-element-f13948f4 .elementor-widget-text-editor,
.elementor