:root{
  /* NTLOCAL palette (inspired by modern MSP sites, but not a 1:1 copy) */
  --bg: #0b1220;
  --bg2:#0f1a2c;
  --card:#ffffff;
  --text:#0c1220;
  --muted:#6b7280;

  --white:#ffffff;
  --soft:#f3f6fb;
  --line:#e7edf7;

  --accent:#11a7d8;        /* cyan/blue */
  --accent2:#2f55d4;       /* deeper blue */
  --accent3:#0b6aa6;       /* mid blue */
  --danger:#ff4b4b;

  --shadow: 0 16px 40px rgba(0,0,0,.18);
  --radius: 16px;
  --radius2: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.45;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.dot{ opacity:.6; padding:0 10px; }

/* Top bar */
.topbar{
  background:#05070b;
  color:#dbe4f3;
  font-size: 12.5px;
}
.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 10px 0;
  gap: 14px;
}
.topbar__left,.topbar__right{ display:flex; align-items:center; flex-wrap:wrap; gap: 8px; }
.topbar__link{ color:#dbe4f3; opacity:.9; }
.topbar__link:hover{ opacity:1; }
.topbar__item{ opacity:.85; }

/* Nav */
.nav{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9,14,22,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{ display:flex; align-items:center; gap: 12px; color: var(--white); }
.logo_png {
  height: 36px;     
  width: auto;
  display: block;
}
.brand__mark{
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(17,167,216,1), rgba(47,85,212,1));
  box-shadow: 0 10px 22px rgba(17,167,216,.18);
}
.brand__name{ font-weight:800; letter-spacing:.5px; }
.brand__tag{ font-size: 12px; opacity:.8; margin-top:2px; }

.nav__links{
  display:flex;
  align-items:center;
  gap: 22px;
  color: rgba(255,255,255,.88);
  font-weight: 500;
  font-size: 14px;
}
.nav__links a{ opacity:.92; }
.nav__links a:hover{ opacity:1; text-decoration:none; }

.nav__actions{ display:flex; gap: 10px; align-items:center; }

.burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  padding: 10px;
}
.burger span{
  display:block;
  height: 2px;
  background: rgba(255,255,255,.9);
  margin: 6px 0;
  border-radius: 2px;
}

/* Mobile menu */
.mobile{
  display:none;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(9,14,22,.92);
}
.mobile__inner{
  display:grid;
  gap: 14px;
  padding: 14px 0 18px;
  color: rgba(255,255,255,.92);
}
.mobile a{ padding: 10px 0; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  padding: 11px 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, opacity .15s ease, background .15s ease, border-color .15s ease;
  text-decoration:none !important;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 14px 26px rgba(47,85,212,.22);
}
.btn--primary:hover{ opacity:.95; }
.btn--ghost{
  color: var(--white);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}
.btn--ghost:hover{ background: rgba(255,255,255,.10); }
.btn--full{ width: 100%; }

/* Hero */
.hero{
  position: relative;
  color: var(--white);
  min-height: 720px;
  display:flex;
  flex-direction:column;
}
.hero__bg{
  position:absolute; inset:0;
  /* Replace with your own image in assets/hero.jpg, or keep gradient */
  background:
    radial-gradient(1200px 600px at 70% 30%, rgba(17,167,216,.18), transparent 50%),
    radial-gradient(900px 500px at 30% 50%, rgba(47,85,212,.22), transparent 56%),
    linear-gradient(180deg, rgba(9,14,22,.88), rgba(9,14,22,.92)),
    url("assets/hero.jpg");
  background-size: cover;
  background-position:center;
  filter: saturate(1.05);
}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(8,12,18,.72), rgba(8,12,18,.25));
}
.hero__inner{
  position: relative;
  padding: 56px 0 42px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}

.eyebrow{
  font-weight: 700;
  opacity: .88;
  letter-spacing: .2px;
  font-size: 14px;
}
.hero h1{
  margin: 10px 0 12px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.03;
  letter-spacing: -1px;
}
.hero__sub{
  max-width: 52ch;
  font-size: 16px;
  opacity: .92;
}
.pill{
  display:inline-flex;
  margin: 14px 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}
.pill__label{ font-weight: 600; font-size: 13px; opacity:.95; }

.checks{
  list-style:none;
  padding:0;
  margin: 14px 0 0;
  display:grid;
  gap: 10px;
  max-width: 52ch;
}
.check{
  display:inline-grid;
  place-items:center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(17,167,216,.22);
  border: 1px solid rgba(17,167,216,.40);
  margin-right: 10px;
  font-weight: 800;
}
.hero__cta{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* Card */
.card{
  background: var(--card);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
  color: var(--text);
}
.card__header{
  background: linear-gradient(90deg, rgba(17,167,216,1), rgba(47,85,212,1));
  color: var(--white);
  padding: 16px 18px;
}
.card__header h3{ margin:0; font-size: 22px; }
.card__body{
  padding: 18px;
}

.muted{ color: var(--muted); }
.form{ display:grid; gap: 12px; margin-top: 12px; }
.form--compact{ gap: 10px; }

.field{ display:grid; gap: 6px; }
.field span{ font-size: 12px; color: #4b5563; font-weight: 700; }
input, textarea{
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  outline: none;
  background: #fff;
}
input:focus, textarea:focus{
  border-color: rgba(47,85,212,.45);
  box-shadow: 0 0 0 4px rgba(47,85,212,.12);
}
.form__note{ font-size: 13px; min-height: 18px; }

.checkline{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: 13px;
  color: #4b5563;
}
.checkline input{ margin-top: 2px; }

.tiny{ font-size: 12px; color: #6b7280; }

/* Trust strip */
.trust{
  position: relative;
  margin-top: auto;
  padding: 18px 0 24px;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.10);
}
.trust__inner{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items:center;
}
.trust__badge{
  display:flex;
  gap: 12px;
  align-items:center;
}
.trust__icon{
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}
.trust__title{ font-weight: 800; }
.trust__headline{ font-weight: 800; }
.trust__desc{ opacity: .9; font-size: 13.5px; }

/* Sections */
.section{ padding: 70px 0; }
.section--tight{ padding: 60px 0; }
.section--light{ background: var(--soft); border-top: 1px solid #eef3fb; border-bottom: 1px solid #eef3fb; }
.center{ text-align:center; }
.kicker{ color:#6b7280; font-weight:700; }
h2{
  margin: 10px 0 8px;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.6px;
}
.subhead{ color:#6b7280; font-weight: 600; }
.accent{ margin-top: 12px; color: var(--danger); font-weight: 800; }

/* Pillars */
.pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.pillar{
  background:#fff;
  border: 1px solid #eef3fb;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
}
.pillar__icon{
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(17,167,216,.14);
  border: 1px solid rgba(17,167,216,.26);
  margin-bottom: 10px;
}
.pillar__icon--2{ background: rgba(47,85,212,.12); border-color: rgba(47,85,212,.24); }
.pillar__icon--3{ background: rgba(11,106,166,.12); border-color: rgba(11,106,166,.24); }
.pillar__title{ font-weight: 900; margin-bottom: 6px; }
.pillar__text{ color:#6b7280; }

/* Challenges grid */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.box{
  background: #fff;
  border: 1px solid #eef3fb;
  border-radius: 18px;
  padding: 18px;
  text-align:center;
}
.badge{
  display:inline-grid;
  place-items:center;
  width: 42px; height: 42px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 10px;
}
.badge--warn{
  background: rgba(255,75,75,.12);
  color: var(--danger);
  border: 1px solid rgba(255,75,75,.22);
}
.box h3{ margin: 8px 0 8px; }

/* About split */
.split{
  margin-top: 26px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #eef3fb;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}
.split__left{ padding: 22px; }
.split__right{ padding: 18px; background: #f7faff; }
.photo{
  width:100%;
  height: 100%;
  min-height: 260px;
  border-radius: 18px;
   background-image: url("support-tech.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.logoBlock{
  display:flex; gap: 12px; align-items:center;
  margin-bottom: 14px;
}
.hero_image{
  width: 360px;
  max-width: 100%;
  height: auto;
}
.logoBlock__name{ font-weight: 900; letter-spacing:.5px; }
.logoBlock__tag{ font-size: 12px; color:#6b7280; margin-top: 2px; }

.split__cta{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 14px; }
.split__cta .btn--ghost{ color: #0f172a; background: #eef4ff; border-color:#dce8ff; }

/* How we do it */
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.feature{
  background:#fff;
  border: 1px solid #eef3fb;
  border-radius: 18px;
  padding: 18px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.feature__icon{
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(17,167,216,.14);
  border: 1px solid rgba(17,167,216,.26);
  flex: none;
}
.feature__icon--2{ background: rgba(47,85,212,.12); border-color: rgba(47,85,212,.22); }
.feature__icon--3{ background: rgba(11,106,166,.12); border-color: rgba(11,106,166,.22); }
.feature__icon--4{ background: rgba(15,23,42,.08); border-color: rgba(15,23,42,.12); }

/* Services */
.service{
  background:#fff;
  border: 1px solid #eef3fb;
  border-radius: 18px;
  padding: 18px;
}
.service h3{ margin: 0 0 10px; }
.service ul{
  margin: 0;
  padding-left: 18px;
  color: #4b5563;
  display:grid;
  gap: 6px;
}
.link{
  display:inline-block;
  margin-top: 12px;
  color: var(--accent3);
  font-weight: 900;
}

/* Quotes */
.quotes{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.quote{
  border: 1px solid #eef3fb;
  border-radius: 18px;
  background:#fff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
}
.quote blockquote{
  margin:0;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.quote figcaption{
  margin-top: 10px;
  color:#6b7280;
  font-size: 13px;
}

/* CTA Contact */
.cta{
  position: relative;
  padding: 72px 0;
  color: var(--white);
  overflow:hidden;
}
.cta__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 600px at 60% 30%, rgba(17,167,216,.20), transparent 55%),
    radial-gradient(1200px 600px at 30% 70%, rgba(47,85,212,.22), transparent 55%),
    linear-gradient(180deg, rgba(9,14,22,.92), rgba(9,14,22,.96));
}
.cta__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(9,14,22,.78), rgba(9,14,22,.35));
}
.cta__inner{
  position: relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:start;
}
.cta__left h2{ margin-top:0; }
.cta__left p{ opacity:.9; max-width: 60ch; }
.cta__steps{ margin-top: 16px; display:grid; gap: 10px; }
.step{ display:flex; align-items:center; gap: 10px; opacity:.92; font-weight:600; }
.step__dot{
  width: 10px; height: 10px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(17,167,216,.18);
}
.cta__meta{ margin-top: 14px; opacity:.9; font-weight:700; }
.cta__meta a{ color: #dbeafe; }

.cta__card{
  background: #fff;
  color: var(--text);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.cta__card h3{ margin: 4px 0 10px; }

/* Footer */
.footer{
  background: #05070b;
  color: #dbe4f3;
  padding: 36px 0 18px;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__brand{ font-weight: 900; letter-spacing:.5px; font-size: 16px; margin-bottom: 4px; }
.footer__cols{ display:flex; gap: 34px; flex-wrap:wrap; }
.footer__col{ display:grid; gap: 8px; min-width: 140px; }
.footer__title{ font-weight: 900; margin-bottom: 6px; }
.footer__col a{ opacity:.9; }
.footer__col a:hover{ opacity: 1; }
.footer__bottom{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 18px;
}

/* Floating chat */
.chat{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(47,85,212,.90), rgba(17,167,216,.85));
  color: #fff;
  font-weight: 900;
  cursor:pointer;
  box-shadow: 0 16px 36px rgba(0,0,0,.22);
}

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .nav__links{ display:none; }
  .burger{ display:inline-block; }
  .mobile.is-open{ display:block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .trust__inner{ grid-template-columns: 1fr; }
  .pillars{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .quotes{ grid-template-columns: 1fr; }
  .cta__inner{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .container{ width: min(1120px, calc(100% - 28px)); }
  .topbar__inner{ flex-direction: column; align-items:flex-start; }
}
.logoBlock_mark{
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  object-fit: contain;
  border-radius: 14px;
}