:root{
  /* Unisys-ish palette */
  --teal-dark: #003134;   /* Bold Teal */
  --teal: #007173;        /* Purposeful Teal */
  --mint: #00E28B;        /* Propel Mint */
  --text: #0b1220;
  --muted: #42566f;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface2: #f4f6f8;
  --line: rgba(15,23,42,.12);
  --shadow: 0 10px 30px rgba(2,6,23,.10);
  --shadow2: 0 6px 18px rgba(2,6,23,.08);
  --radius: 18px;
  --max: 1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}

/* top promo bar (like Unisys) */
.promo{
  background: var(--teal);
  color: #eafff6;
  font-size: 13px;
}
.promo .row{
  display:flex; align-items:center; justify-content:center;
  gap: 14px;
  padding: 10px 0;
}
.promo .pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(234,255,246,.45);
  color: #eafff6;
  font-weight: 700;
}
.promo .pill:hover{background: rgba(255,255,255,.10)}

.header{
  position: sticky; top:0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.headerbar{
  display:flex; align-items:center; justify-content:space-between; gap: 14px;
  padding: 14px 0;
}
.brand{
  display:flex; align-items:center; gap: 12px; min-width: 260px;
}
.brand .mark{
  width: 44px; height: 44px; border-radius: 12px; overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(2,6,23,.02);
  box-shadow: var(--shadow2);
}
.brand .name{display:flex;flex-direction:column;gap:2px}
.brand .name strong{letter-spacing:.12em;text-transform:uppercase;font-size:14px}
.brand .name span{color:var(--muted);font-size:12px}

.nav{
  display:flex; align-items:center; gap: 16px; flex-wrap:wrap; justify-content:flex-end;
}
.nav a{
  font-size: 14px;
  color: #0f172a;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav a:hover{
  background: rgba(0,113,115,.08);
  border-color: rgba(0,113,115,.22);
  color: var(--teal-dark);
}
.nav a.cta{
  background: var(--teal);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(0,113,115,.22);
}
.nav a.cta:hover{filter: brightness(1.02)}

/* HERO (Unisys-like split) */
.hero{
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.heroWrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.heroLeft{
  padding: 54px 0 42px;
  background: linear-gradient(135deg, #101827 0%, #25204f 55%, #5b4a90 100%);
  color: #ffffff;
}
.heroLeft .container{max-width: calc(var(--max) / 2); margin-left: auto; padding-right: 36px}
.kicker{
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .9;
}
.h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  margin: 12px 0 12px;
}
.lead{
  font-size: 16px;
  opacity: .92;
  max-width: 60ch;
}
.btnRow{display:flex; gap: 12px; flex-wrap:wrap; margin-top: 18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,.80);
  color:#fff;
  background: transparent;
}
.btn:hover{background: rgba(255,255,255,.10)}
.btnSolid{
  background:#fff;
  color:#0b1220;
  border-color:#fff;
}
.btnSolid:hover{filter: brightness(.98)}
.heroNote{
  margin-top: 14px;
  font-size: 13px;
  opacity: .82;
}

.heroRight{
  position: relative;
  overflow:hidden;
  background: #0c0f1a;
}
.heroRight::before{
  content:"";
  position:absolute; inset:0;
  background-image: url("assets/img/hero_art.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  opacity: .92;
}
.heroRight::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(16,24,39,.30) 0%, rgba(16,24,39,.08) 45%, rgba(255,255,255,0) 100%);
}
.heroRight .overlayBand{
  position:absolute; left:0; right:0; bottom:0;
  height: 70px;
  background: linear-gradient(90deg, #0b1640 0%, #5b4a90 60%, rgba(255,255,255,0) 100%);
  opacity: .75;
}

/* content blocks */
.section{padding: 46px 0; background: #fff}
.section.alt{background: var(--surface2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);}
.section h2{margin:0 0 10px; font-size: 30px; letter-spacing:.01em}
.sub{margin:0 0 22px;color:var(--muted);max-width: 90ch}

.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.card{
  grid-column: span 4;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0 0 12px;color:var(--muted)}
.card a.more{
  display:inline-flex; align-items:center; gap:8px;
  color: var(--teal);
  font-weight: 800;
}
.card a.more:hover{text-decoration:underline}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow2);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.stat strong{
  font-size: 40px;
  color: #3f2bd6; /* subtle purple like Unisys numbers */
  line-height: 1;
}
.stat span{
  display:block;
  color: var(--muted);
  font-weight: 700;
}
.stat small{
  display:block;
  color: var(--muted);
  margin-top: 6px;
}

.offerTabs{
  display:flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px;
}
.tab{
  border:1px solid var(--line);
  background:#fff;
  padding: 10px 12px;
  border-radius: 0;
  font-weight: 800;
  font-size: 14px;
  cursor:pointer;
}
.tab.active{
  background: var(--mint);
  border-color: rgba(0,226,139,.55);
  color: #003134;
}
.panel{display:none}
.panel.active{display:block}
.panel .grid2{display:grid;grid-template-columns: 1fr 1fr; gap: 16px}
.panel .box{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}

.form{
  display:grid; gap: 12px;
}
.input, textarea, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.18);
  background: rgba(255,255,255,.98);
  font-family: inherit;
  color: var(--text);
  outline: none;
}
textarea{min-height: 160px; resize: vertical}
.input:focus, textarea:focus, select:focus{
  border-color: rgba(0,113,115,.55);
  box-shadow: 0 0 0 4px rgba(0,113,115,.14);
}

.footer{
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}
small{color: var(--muted)}

@media (max-width: 980px){
  .heroWrap{grid-template-columns: 1fr}
  .heroLeft .container{max-width: var(--max); margin: 0 auto; padding: 0 20px}
  .heroRight{min-height: 260px}
  .cards .card{grid-column: span 12}
  .stats{grid-template-columns: 1fr}
  .panel .grid2{grid-template-columns: 1fr}
  .footerGrid{grid-template-columns: 1fr}
}

/* v2 cache-bust + forced-light overrides */
body{background:#ffffff !important;}
.section{background:#ffffff !important;}
.section.alt{background:#f4f6f8 !important;}
.card{background:#ffffff !important; color:#0b1220 !important;}


/* v3: Fixed promo + header (always visible) */
:root{
  --promoH: 44px;
  --headerH: 74px;
}
.promo{
  position: fixed !important;
  top: 0 !important;
  left: 0; right: 0;
  z-index: 1000 !important;
}
.header{
  position: fixed !important;
  top: var(--promoH) !important;
  left: 0; right: 0;
  z-index: 999 !important;
}
/* keep content from hiding under fixed bars */
body{ padding-top: calc(var(--promoH) + var(--headerH)) !important; }

@media (max-width: 520px){
  :root{ --promoH: 44px; --headerH: 66px; }
}



/* v4: Pin BOTH bars using STICKY (more reliable than fixed if any parent has transforms) */
:root{
  --promoH: 52px;   /* actual rendered height */
  --headerH: 78px;
}

/* If a parent has transform/filter, position:fixed can behave like absolute in some browsers.
   Force neutral transforms on root to keep sticky/fixed stable. */
html, body { transform: none !important; filter: none !important; }

.promo{
  position: sticky !important;
  top: 0 !important;
  z-index: 2000 !important;
}
/* Make promo height predictable */
.promo .row{ padding: 0 !important; height: var(--promoH); justify-content: space-between; }
.promo .row > div{ padding: 0 0; }
.promo .row{ gap: 14px; }
.promo .container{ display:flex; }
.promo .row{ width:100%; align-items:center; }

.header{
  position: sticky !important;
  top: var(--promoH) !important;
  z-index: 1999 !important;
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(10px);
}

/* IMPORTANT: remove the padding-top from v3 so content doesn't jump */
body{ padding-top: 0 !important; }

@media (max-width: 520px){
  :root{ --promoH: 56px; --headerH: 70px; }
  .promo .row{ height: var(--promoH); justify-content: center; flex-wrap: wrap; }
}



/* v5: Robust ALWAYS-PINNED promo + header across ASP.NET layouts */
:root{
  --promoH: 52px;
  --headerH: 78px;
}

/* ASP.NET often wraps content in a <form>. Ensure no scroll container/transform breaks fixed positioning */
html, body { height: 100%; overflow: auto !important; transform: none !important; filter: none !important; }
form, #form1 { overflow: visible !important; transform: none !important; filter: none !important; }

.topbars{
  position: fixed !important;
  top: 0 !important;
  left: 0; right: 0;
  z-index: 5000 !important;
}

/* Make promo + header behave normally inside fixed container */
.topbars .promo{ position: relative !important; top: auto !important; }
.topbars .header{ position: relative !important; top: auto !important; }

/* Reserve space for fixed bars so content doesn't hide behind them */
body{ padding-top: calc(var(--promoH) + var(--headerH)) !important; }

/* Ensure height consistency */
.promo .row{ height: var(--promoH) !important; padding: 0 !important; }
.headerbar{ min-height: var(--headerH) !important; }

@media (max-width: 520px){
  :root{ --promoH: 56px; --headerH: 74px; }
  .promo .row{ height: auto !important; padding: 10px 0 !important; }
  body{ padding-top: 120px !important; }
}



/* v6: Pin promo + header WITHOUT wrapping whole page (prevents freezing content) */
:root{
  --promoH: 52px;
  --headerH: 78px;
}

/* Avoid transformed ancestors breaking fixed positioning (common in some layouts) */
html, body, form, #form1 { transform: none !important; filter: none !important; }

.promo{
  position: fixed !important;
  top: 0 !important;
  left: 0; right: 0;
  z-index: 5000 !important;
}
.header{
  position: fixed !important;
  top: var(--promoH) !important;
  left: 0; right: 0;
  z-index: 4999 !important;
}

/* Reserve space so content scrolls UNDER the pinned bars */
body{ padding-top: calc(var(--promoH) + var(--headerH)) !important; }

/* Keep heights consistent */
.promo .row{ height: var(--promoH) !important; padding: 0 !important; }
.headerbar{ min-height: var(--headerH) !important; }

@media (max-width: 520px){
  :root{ --promoH: 56px; --headerH: 74px; }
  .promo .row{ height: auto !important; padding: 10px 0 !important; justify-content: center !important; flex-wrap: wrap; }
  body{ padding-top: 120px !important; }
}



/* v9: Hover + click highlights (restored) */
.nav a{
  transition: background-color .15s ease, color .15s ease;
}
.nav a:hover,
.nav a:focus{
  background: rgba(0,113,115,0.10);
  color: #003134;
  border-radius: 10px;
  outline: none;
}
.nav a:active{
  background: rgba(0,113,115,0.18);
  color: #003134;
}
/* Buttons */
.btn, .btnSolid{
  transition: background-color .15s ease, color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.btnSolid:hover, .btnSolid:focus{
  background:#007173;
  color:#ffffff;
  box-shadow: 0 6px 18px rgba(0,49,52,.18);
}
.btnSolid:active{
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0,49,52,.18);
}
.btn:hover, .btn:focus{
  background: rgba(0,113,115,0.08);
  color:#003134;
}
.btn:active{ transform: translateY(1px); }

/* Tabs */
.tab{
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.tab:hover, .tab:focus{
  background:#e6fbf3;
  border-color:#00E28B;
  color:#003134;
}
.tab:active{
  background:#d7f7ea;
}
.tab.active{
  background:#e6fbf3;
  border-color:#00E28B;
  color:#003134;
}



/* v10: Hero right 2x2 image grid */
.heroRight{
  display:flex;
  align-items:stretch;
  justify-content:stretch;
}
.heroGrid{
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  padding: 18px;
}
.heroTile{
  position:relative;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(15,23,42,.10);
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(0,49,52,.10);
  transition: transform .15s ease, box-shadow .15s ease;
}
.heroTile::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.52) 100%);
  pointer-events:none;
}
.heroTileLabel{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  color:#fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.heroTile:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,49,52,.14);
}
@media (max-width: 980px){
  .heroGrid{ padding: 14px; gap: 12px; }
}
@media (max-width: 820px){
  .heroGrid{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}



/* v11: Desktop + Mobile responsive layout */

.menuBtn{
  display:none;
  width:44px; height:44px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background:#fff;
  align-items:center; justify-content:center;
  gap:5px;
  padding: 10px;
  cursor:pointer;
}
.menuBtn span{
  display:block;
  height:2px;
  width:18px;
  background:#0b1220;
  border-radius:2px;
}

@media (max-width: 900px){
  :root{
    --promoH: 56px;
    --headerH: 72px;
  }

  .promo .row{
    justify-content: space-between !important;
    padding: 10px 14px !important;
    gap: 10px;
  }
  .promo .pill{ padding: 10px 14px; }

  .headerbar{
    padding: 10px 14px !important;
  }
  .brand{
    gap: 10px !important;
  }
  .brand .logoMark{
    width: 44px !important;
    height: 44px !important;
  }
  .brand .name{
    font-size: 15px !important;
  }
  .brand .sub{
    font-size: 12px !important;
  }

  .menuBtn{ display:inline-flex; }

  .nav{
    position: fixed !important;
    top: calc(var(--promoH) + var(--headerH)) !important;
    left: 12px;
    right: 12px;
    background:#fff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0,0,0,.14);
    padding: 10px;
    display: none !important;
    z-index: 6000;
  }
  .nav a{
    display:block;
    padding: 12px 12px;
    border-radius: 12px;
    margin: 2px 0;
  }
  .navOpen .nav{ display:block !important; }

  .hero{
    grid-template-columns: 1fr !important;
  }
  .heroLeft{
    padding: 26px 18px !important;
  }
  .heroTitle{
    font-size: clamp(34px, 8vw, 48px) !important;
  }
  .heroRight{
    min-height: 380px;
  }
  .heroGrid{ padding: 14px; gap: 12px; }

  .section{
    padding: 44px 0 !important;
  }

  .cards3, .cards4, .storyGrid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px){
  .heroActions{
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .heroActions .btn, .heroActions .btnSolid{
    width: 100%;
    text-align:center;
  }
  .heroRight{ min-height: 420px; }
}

.pill.ok{background:#e6fbf3;color:#003134;border:1px solid rgba(0,226,139,.35);}
.pill.bad{background:#fff1f2;color:#7f1d1d;border:1px solid rgba(239,68,68,.25);}