body {
  background: #080808;
  color: #e8eaf0;
  font-family: 'Helvetica Neue', sans-serif;
  overflow-x: hidden;
}

/* ===== EXISTING STYLES (unchanged) ===== */x
.nav-wrap {
  position: relative;
  padding: 20px 0;	
  z-index: 200;
  padding: 18px 0;
  background: white;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 18px;
  color: #0b0f1a;
  text-decoration: none;
}
.brand svg { width: 22px; height: 22px; }
.nav-sect{
	padding:0 30px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li { position: relative; }
.nav-links a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  transition: color 0.5s;
}
.mnu-arr2{
	display:none;
	transition: transform 0.5s;
}
.nav-links a:hover .mnu-arr2{
	display:inline-block;
}
.nav-links a:hover {
	text-decoration:none;
	padding-left:10px;
}
.caret {
  font-size: 10px;
  opacity: 0.7;
  transition: transform 0.2s;
}
.has-sub:hover .caret { transform: rotate(180deg); }
 
.mnu-btn { display: flex; gap: 20px; }
.btn-danger {
  background: #ee5120;
  border: 1px solid #FF585857;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 12px;
  border-radius: 3.2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-danger .dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  background: #ff5a5f;
  box-shadow: 0 0 9.7px #ff0000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.btn-audit {
  background: #1251cf;
  color: #fff;
  border: none;
  border-radius: 3.2px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-audit:hover { background: #2f7bff; transform: translateY(-1px); color: #fff; }
 
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #0b0f1a;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
.mobile-nav { display: none; background: #fff; border-top: 1px solid rgba(0,0,0,0.08); padding: 12px 0 24px; overflow-y: auto; max-height: calc(100vh - 70px); }
.mobile-nav.is-open { display: block; }
.mobile-links { list-style: none; margin: 0; padding: 0 16px; }
.mobile-links > li { border-bottom: 1px solid rgba(0,0,0,0.06); }
.mobile-links > li:last-child { border-bottom: none; }
.mobile-parent-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; background: transparent; border: none; color: #0b0f1a; font-size: 15px; padding: 14px 4px; cursor: pointer; text-align: left; }
.mobile-caret { font-size: 10px; opacity: 0.6; transition: transform 0.25s; display: inline-block; }
.mobile-has-sub.sub-open .mobile-caret { transform: rotate(180deg); }
.mobile-plain-link { display: block; color: #0b0f1a; text-decoration: none; font-size: 15px; padding: 14px 4px; }
.mobile-plain-link:hover { color: #2f7bff; }
.mobile-submenu { list-style: none; margin: 0; padding: 0 0 8px 12px; display: none; }
.mobile-has-sub.sub-open .mobile-submenu { display: block; }
.mobile-submenu li a { display: block; color: #5b6172; text-decoration: none; font-size: 14px; padding: 9px 8px; border-radius: 6px; transition: background 0.2s, color 0.2s; }
.mobile-submenu li a:hover { background: rgba(31, 111, 255, 0.08); color: #1251cf; }
.mobile-cta { display: flex; flex-direction: column; gap: 10px; padding: 20px 16px 0; }
 
/* ===== MEGA MENU (NEW) ===== */
.nav-mega {
  position: fixed;
  left: 0;
	top:58px;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid rgba(11,15,26,0.06);
  box-shadow: 0 28px 60px rgba(15,23,42,0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .32s cubic-bezier(.4,0,.2,1),
              transform .32s cubic-bezier(.4,0,.2,1),
              visibility .32s cubic-bezier(.4,0,.2,1);
  z-index: 300;
}
.has-sub:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-mega-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: flex-start;
}
.nav-mega-col { flex: 1 1 0; min-width: 200px; padding-right: 40px; }
.nav-mega-col + .nav-mega-col { 
/* 	border-left: 1px dashed rgba(11,15,26,0.1);  */
	padding-left: 40px; 
}
.nav-mega-col--wide { flex: 1.6 1 0; }
.nav-mega-col--highlight { 
	background: rgba(247, 251, 255, 1); 
	margin: -40px -24px -40px 0; 
	padding: 40px 32px; 
	border-left: 1px solid rgba(11,15,26,0.06);
}
.nav-mega--services .nav-mega-col--highlight { flex: 2.2 1 0; }
 
.nav-mega-heading {
  font-size: 16px;
  letter-spacing: 0.74px;
  text-transform: uppercase;
  color: rgba(6, 27, 49, 0.47);
  font-weight: 500;
  margin: 0 0 18px;
}
.nav-mega-item {
  display: block!important;
  text-decoration: none!important;
  margin-bottom: 18px!important;
}
.nav-mega-item-title {
  display: block;
  color: #1251CF;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 4px;
  transition: color .15s;
}

.nav-mega-item-desc { 
	display: block; 
	color: rgba(6, 27, 49, 0.5); 
	font-size: 13px; 
	line-height: 17px;
	font-weight:300;
}
 
.nav-mega-subcols { display: flex; gap: 40px; }
.nav-mega-sublist { flex: 1; }
 
.nav-mega-feature { display: flex; gap: 14px; text-decoration: none; margin-bottom: 18px; }
.nav-mega-feature:last-child { margin-bottom: 0; }
.nav-mega-feature-thumb {
  width: 123px;
  height: 70px;
  flex-shrink: 0;
}
.nav-mega-feature-thumb img{
 width:-webkit-fill-available;
}
.nav-mega-feature-title { 
	display: block; 
	color: #1251CF; 
	font-size: 15px; 
	font-weight: 400; 
	margin-bottom: 4px; 
	line-height: 1.3; 
	transition: color .15s;
}
.nav-mega-feature:hover .nav-mega-feature-title { color: #1251cf; }
.nav-mega-feature-desc { 
	display: block; 
	color:rgba(6, 27, 49, 0.5); 
	font-size: 12px; 
	font-weight:300;
	line-height: 14px;
}
 
/* ===== FIXED HEADER ON SCROLL ===== */
.nav-wrap { transition: transform .3s ease; padding: 12px 0;color:#ffffff;	 }
.nav-wrap.nav-wrap--scrolled {
  position: fixed;
  top: 0;
  left: 0;
background:white;
	z-index:101;
  right: 0;
  width: 100%;
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
}
.nav-wrap.nav-wrap--hide { transform: translateY(-100%); }


.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.popup-overlay.is-open { opacity: 1; visibility: visible; }
.popup {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 24px;
 background: linear-gradient(
  180deg,
  rgba(255, 0, 0, 0.64) 0%,
  rgba(255, 0, 0, 0.26) 100%
);
/*     border: 3px solid rgba(255, 0, 0, 0.45); */
  padding: 40px;
  transform: translateY(16px) scale(.98);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.popup-overlay.is-open .popup { transform: translateY(0) scale(1); }

.popup-close:hover { color: #fff; }
.popup-eyebrow { 
	font-size: 11px; 
	letter-spacing: 2.2px; 
	text-transform: uppercase; 
	color:#FF9A9A; 
	font-weight: 400; 
	margin: 0 0 14px; 
}
.popup-title { 
	font-size: 32px; 
	font-weight: 700; 
	color: #fff; 
	margin: 0 0 16px; 
}
.popup-desc { 
	font-size: 14px; 
	line-height: 21px; 
	color: #fff; 
	margin: 0 0 28px; 
}
.popup-actions { display: flex; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.popup-btn-call {
  background:#ee5120;
/*   border: 1px solid #FF5858; */
  color: #fff;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 3.2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background .2s;
}
.popup-btn-call:hover { background: #931818; }
.popup-btn-cancel {
  background: #fff;
  border: none;
  color: #1251cf;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3.2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s;
}
.popup-btn-cancel:hover { background: #f1f3fa; }
.popup-foot { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: #fff; margin: 0; }



.audit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: baseline;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  overflow-y: auto;
  padding: 60px 0;
}
.audit-popup-overlay.is-open { opacity: 1; visibility: visible; }
 
.audit-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  opacity: .5;
  pointer-events: none;
  background-image: repeating-linear-gradient(to bottom, rgba(255,255,255,0.22) 0 6px, transparent 6px 14px);
}
.audit-grid-line--1 { left: 14.4%; }
.audit-grid-line--2 { left: 49%;
	z-index:1 }
.audit-grid-line--3 { left: 85.6%; }
 
.audit-popup {
  position: relative;
  width: 100%;
  max-width: 1369px;
  margin: 0 24px;
  background: #151515;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  transform: translateY(16px) scale(.98);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.audit-popup-overlay.is-open .audit-popup { transform: translateY(0) scale(1); }
.audit-popup::before,
.audit-popup::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  height: 1px;
  pointer-events: none;
  background-image: repeating-linear-gradient(to right, rgba(255,255,255,0.22) 0 6px, transparent 6px 14px);
}
.audit-popup::before { top: 1px; }
.audit-popup::after { bottom: 1px; }
 
.audit-popup-close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 32px;
  height: 31px;
  background: #fff;
  border:none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.audit-popup-close:hover { background: #fff5f5; }
 
.audit-popup-grid { display: flex; flex-wrap: wrap; }
.audit-popup-left { flex: 1 1 420px; padding: 64px 56px; }
.audit-popup-right { flex: 1 1 480px;  padding: 48px 56px; }
 
.audit-popup-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 64px;
  margin: 0 0 24px;
}
.dot-text {
  background-image: radial-gradient(circle, #ffffff 1.2px, transparent 1.6px);
  background-size: 4px 4px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.audit-popup-sub { 
	font-size: 16px; 
	line-height: 1.6; 
	font-weight:300;
	color: #fff; 
	margin: 0;  }
 
.audit-stats { 
	display: grid; 
	grid-template-columns: 1fr 1fr; 
	gap: 32px 40px; 
	margin-top: 44px; 
	max-width: 460px; }
.audit-stat-num { font-family: 'Outfit', sans-serif; 
	font-weight: 600; 
	font-size: 69px;
}
.audit-stat-label { font-size: 18px; color: #fff; font-weight: 500; }
 
.audit-form-row { display: flex; gap: 20px; }
.audit-form-row .audit-field { flex: 1; }

 
.audit-privacy { display: flex; gap: 6px; font-size: 12px; line-height: 1.5; color: #9aa3ae; margin: 16px 0 0; }
.audit-privacy strong { color: #c7c9d6; }
.audit-privacy .accent { color: #2f7bff; font-weight: 600; }

/* ===== RESPONSIVE BREAKPOINT ===== */
@media (max-width: 1024px) {
  .nav-links,
  .mnu-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* border-radius: 0 0 18px 18px; */
  overflow: hidden;
  background: url("/wp-content/uploads/2026/06/landing-background.webp");
  background-size: cover;
  background-position: center;
  /* background: radial-gradient(
      120% 80% at 50% -10%,
      rgba(31, 111, 255, 0.45),
      transparent 45%
    ),
    radial-gradient(
      60% 50% at 0% 100%,
      rgba(20, 90, 200, 0.25),
      transparent 60%
    ),
    radial-gradient(
      60% 50% at 100% 100%,
      rgba(20, 90, 200, 0.22),
      transparent 60%
    ),
    #02030a; */
  /* margin-top: -75px; */
  padding-top: 120px;
}

.hero-reveal {
  position: absolute;
  inset: -6%; /* bleed so the spotlight never hits an edge */
  z-index: 2;
	margin-top:50px;
  background-image: url("/wp-content/uploads/2026/06/back-dashboard.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0; /* whole layer fades in on enter... */
  transition: opacity 0.45s ease;
  will-change: -webkit-mask-position, mask-position, opacity;
  pointer-events: none;

  /* ...but the mask is what limits it to a circle around the cursor */
  --spot: 175px; /* flashlight radius */
  --mx: 50%; /* cursor X (set by JS, in px) */
  --my: 50%; /* cursor Y (set by JS, in px) */
  --mask: radial-gradient(
    circle var(--spot) at var(--mx) var(--my),
    #000 0%,
    #000 55%,
    rgba(0, 0, 0, 0.25) 78%,
    transparent 100%
  );
  -webkit-mask-image: var(--mask);
  mask-image: var(--mask);
}
.hero.revealing .hero-reveal {
  opacity: 5;
filter: brightness(200%);
}

/* tint inside the spotlight so the hero text stays readable */
.hero-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 18, 0.3), rgba(2, 6, 18, 0.5));
}



@keyframes twinkle {
  from {
    opacity: 0.45;
  }
  to {
    opacity: 0.75;
  }
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 0 16px;
  pointer-events: none;
  /* transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0);
  transition: transform 0.25s ease-out;
  will-change: transform; */
}
.hero-inner .btn-contact {
  pointer-events: auto;
}
.audit-btns{
	font-size:12px!important;
}
/* drag hint */
.reveal-hint {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(180, 200, 255, 0.6);
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 0.3s;
  animation: floaty 2.4s ease-in-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* dotted / perforated title effect */
.hero-title {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 110px;
  line-height: 1;
  letter-spacing: -1px;
  color: transparent;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 38%,
    transparent 42%
  );
  background-size: 4px 4px;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 24px;
  filter: drop-shadow(0 2px 12px rgba(255, 255, 255, 0.08));
}

.hero-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 32px;
}
.service-popup-cta{
	display:flex;
	align-items:center;
	justify-content:left;
	gap:20px;
	margin-top:40px;
}
.svc-popup .eyebrow{
	margin-top:80px;
}
.svc-popup .sc-cta{
	margin-top:80px;
}
.btn-black-srv{
	background: rgba(173, 173, 173, 0.1);
  color: #000000;
  border:1px solid rgba(106, 106, 106, 1);
  border-radius: 4px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 400;
  text-decoration:none;	
  transition:  0.3s ease;
}
.btn-contact {
  background: #1251cf;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 400;
  display: inline-flex;
  text-decoration:none;	
  align-items: center;
  gap: 7px;
   transition:  0.3s ease;
}
.btn-contact img{
	margin-top:3px;
}
.btn-img2{
	display:none;
}
.btn-contact:hover .btn-img2{
	 transition: ease-out 0.5s;
	display:block;
}
.btn-contact:hover .btn-img1{
	display:none;
}

/* ============ STATS / STORY SECTION ============ */
.story {
  position: relative;
  background: #080808;
  overflow: hidden;
  border-top: 1px solid #313131;
}

.story-quote {
  text-align: center;
  font-style: italic;
  color: #aab0bd;
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 70px;
}
.story-quote2 {
  text-align: right;
  font-style: italic;
  color: #aab0bd;
  font-size: 12px;
  margin-bottom: 10px;
  margin-top: 70px;
}

.big-number-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.big-number {
  font-family: "Inter", sans-serif;
	letter-spacing:0px;
  font-weight: 800;
  font-size: 234px;
  line-height: 1;
  background: linear-gradient(180deg, rgb(255 255 255 / 15%) 0%, rgb(0 0 0 / 78%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgb(255 255 255 / 13%);
  color: #ffffff2e;
  user-select: none;
  white-space: nowrap;
	

}
.overlay-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 43px;
  color: transparent;
  background-image: radial-gradient(
    circle,
    rgba(190, 195, 205, 0.85) 38%,
    transparent 42%
  );
  background-size: 3px 3px;
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

.story-copy {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
}
.story-copy .lead-grey {
  
  color: #6b7280;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.4;
}
.story-copy .lead-white {
  
  color: #fff;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.5;
}
/* ============ SCROLL REVEAL ============ */
.sc-spacer {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a2d35;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Reveal section ── */
.sc-reveal-section {
  /* min-height: 100vh; */
  display: flex;
  /* align-items: center; */
  justify-content: center;
  padding: 0 32px 50px 32px;
}

.sc-reveal-inner {
  width: 100%;
  text-align: center;
}

/* Each line is a block element */
.sc-reveal-line {
  display: block;
text-align:left;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #2e3240;
  transition: color 0.6s ease;
  will-change: color;
}

.sc-reveal-line.sc-lit {
  color: #ffffff;
}
.sc-reveal-line[data-line="0"] {
    text-indent: 240px;
}






/* .reveal-section {
  min-height: 100vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vh 24px;
}

.reveal-text {
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 50px);
  line-height: 1.45;
  letter-spacing: -0.5px;
  max-width: 1080px;
  text-align: center;
  color: #fff;
}

.reveal-text .word {
  display: inline-block;
  color: rgba(246, 246, 249, 0.34); 
  will-change: color;
} */
/* ============ PROBLEMS (pinned reveal) ============ */
/* ═══════════════════════════════════════════════
   PROBLEMS SECTION — full merged CSS
   (your original + morph/solution-swap additions)
   ═══════════════════════════════════════════════ */

.problems {
  position: relative;
 height: 300vh; 
  background: #080808;
}
.container{
  padding-right: 0!important;
  padding-left: 0!important;
}
.problems-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* ── Title wrapper — needs relative + fixed height
        so both spans stack in the same space ────── */
.problems-title {
  position: absolute;
  top: 50%;
  left: 13%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -1px;
  white-space: nowrap;

  /* CHANGED: no longer sets color/bg here —
       moved onto each .title-text child so both
       spans can share the dot-matrix technique    */
  height: 1.1em; /* contain the two stacked spans */
}

/* Both title spans share the dot-matrix look ── */
.title-solutions
{
	left: 20px !important;
}
.title-text {
  position: absolute;
  left: 0;
  top: 0;

  /* dot-matrix / perforated text — same as hero  */
  color: transparent;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.92) 38%,
    transparent 42%
  );
  background-size: 4px 4px;
  -webkit-background-clip: text;
  background-clip: text;

  /* crossfade transition */
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

/* ── "Problems" title — visible by default ───── */
.title-problems {
  opacity: 1;
  transform: translateY(0);
}

/* ── "Solutions" title — hidden by default ───── */
.title-solutions {
  opacity: 0;
  transform: translateY(14px);
}

/* When section enters solution phase:
     problems slides up+out, solutions slides up+in  */
.problems.is-solutions .title-problems {
  opacity: 0;
  transform: translateY(-14px);
}
.problems.is-solutions .title-solutions {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════
     PILLS
     ════════════════════════════════════════════════ */

.problem-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid rgba(52, 52, 52, 0.7);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(246, 246, 249, 0.85);
  font-size: 18px;
  white-space: nowrap;

  /* hidden until .show is added by JS ─────────── */
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.5s ease, background 0.5s ease; /* smooth tint on morph */
  will-change: opacity, transform;
}

/* revealed state (phase 1) */
.problem-pill.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Dot ─────────────────────────────────────── */
.problem-pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;

  /* PROBLEM state — red */
  background: #ff5a5f;
  box-shadow: 0 0 12px rgba(255, 90, 95, 0.85);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* SOLUTION state — dot turns green */
.problem-pill.morphed .dot {
  background: rgba(0, 255, 136, 1); /* SecuCenter accent blue */
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.75);
}

/* ── Pill label (the text that swaps) ────────── */
.problem-pill .pill-label {
  transition: opacity 0.32s ease;
}

/* mid-morph: label invisible while text swaps   */
.problem-pill.morphing .pill-label {
  opacity: 0;
}

/* post-morph: label back to full opacity         */
.problem-pill.morphed .pill-label {
  opacity: 1;
}

/* subtle pill tint shift when solved             */
.problem-pill.morphed {
  border: 1px solid rgba(52, 52, 52, 0.7);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

/* ════════════════════════════════════════════════
     GUARD (unchanged)
     ════════════════════════════════════════════════ */

.guard {
  /* padding: 90px 16px 110px; */
}
.guard .wrap {
  max-width: 920px;
  margin: 0 auto;
}

/* ---- badge ---- */
.badge-pill {
  display: inline-block;
  margin: 0 auto 26px;
  font-family: "JetBrains Mono", monospace;
  padding: 6px 18px;
  border: none;
  border-radius: 2px;
  background: none;
  color: rgba(0, 155, 255, 1);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ---- dotted title ---- */
.title-dotted {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 86px;
  line-height: 0.98;
  letter-spacing: -1px;
  margin: 0 0 64px;
  color: transparent;
  background-image: radial-gradient(circle, rgb(17 18 22) 38%, #0000001f 42%);
  background-size: 4px 4px;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.02));
}

/* ---- panel / grid ---- */
.services {
/*   border: 1px solid #d8dce3; */
  border-radius: 6px;
  overflow: hidden;
  margin: 20px 20px;
}


/* ── Column divider (Managed block) ── */
.services-col-divider {
  border: 1px solid #d8dce3;
}
.services-col-divider {
  border: 1px solid rgba(229, 237, 245, 1);
  padding-top: 10px!important;
  padding-left:10px!important;
  padding-right:10px!important;
  padding-bottom:10px!important;
	margin:10px!important;
	border-radius:4px;
}
.services-col-dividers {
    border: 1px solid #d8dce3;
    padding-top: 10px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-bottom: 10px !important;
}
.js-service1-popup{
	cursor:pointer;
}
.js-service1-popup:hover{
	background: rgba(245, 250, 255, 0.8)!important;
}
.js-service2-popup{
	cursor:pointer;
}
.js-service2-popup:hover{
	background: rgba(245, 250, 255, 0.8)!important;
}
.js-service3-popup{
	cursor:pointer;
}
.js-service3-popup:hover{
	background: rgba(245, 250, 255, 0.8)!important;
}
/* ── Column heading ── */
.services-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  padding: 24px 24px 20px;
  color: #061B31;
  border-bottom:1px solid #E5EDF5;
}

/* ── Service link rows ── */
a.services-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 19px;
  font-weight: 400;
  border-bottom: 1px solid rgba(229, 237, 245, 1);
	border-right: 1px solid rgba(229, 237, 245, 1);
	border-left: 1px solid rgba(229, 237, 245, 1);
  color: #061B31;
  text-decoration: none;

  transition: 0.3s ease;
}
.link-arr2{
	display:none;
}
a.services-link-item:hover .link-arr2{
	display:block;
}
a.services-link-item:hover .link-arr1{
	display:none;
}
/* a.services-link-item:last-child {
  border-bottom: none;
} */
a.services-link-item:hover,
a.services-link-item:focus {
  background: rgba(245, 250, 255, 0.8);
  text-decoration: none;
  padding: 14px 24px 14px 28px;	
}
.serv-lable{
	font-size:16px;
	color:#061B31;
	background:transparent;
	padding: 20px 26px;
	text-transform:uppercase;
	font-weight:300;
	margin:0;
	border-top:none;
	border:1px solid #E4F1FF;
}
.serv1 a.services-link-item {
	border-right:none;
}
/* a.services-link-item:hover .services-arrow-icon,
a.services-link-item:focus .services-arrow-icon {
  background-image: url("/wp-content/uploads/2026/06/arrow-right.svg");
} */

/* ── Partner right sub-column border ── */
/* .services-partner-subcol {
  border-left: 1px solid #d8dce3;
} */

/* ── Dashboard panels (shared base) ── */
.services-dashboard {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-dashboard img{
    width:-webkit-fill-available;
}
.serv1{
	padding-right:0!important;
}
.serv2{
	padding-left:0!important;
}




/* ── Radar card ── */
.services-radar-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
  width: 240px;
}
.services-radar-svg {
  display: block;
  margin: 0 auto;
}
.services-radar-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: #555;
  margin-top: 8px;
}
.services-radar-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.services-radar-legend__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* ── Alert feed card ── */
.services-alert-card {
  background: #13151c;
  border-radius: 8px;
  padding: 14px 16px;
  width: 400px;
  max-width: 100%;
}
.services-alert-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.services-alert-card__label {
  color: #ff5f3d;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.services-alert-card__queue {
  font-size: 0.72rem;
  color: #aaa;
}
.services-alert-card__queue strong {
  color: #fff;
}
.services-alert-card__cleared {
  color: #aaa;
  font-size: 0.72rem;
}
.services-alert-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 0.68rem;
  color: #ccc;
  border-top: 1px solid #22252e;
}
.services-alert-card__sev {
  width: 32px;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}
.services-alert-card__sev--high { color: #f5a623; }
.services-alert-card__sev--med  { color: #5bc4f5; }
.services-alert-card__sev--crit { color: #ff3d3d; }
.services-alert-card__id   { color: #8899cc; width: 62px; }
.services-alert-card__type { color: #ddd; }

/* ── Professional Services block ── */
.services-professional {
  border: 1px solid #d8dce3;
  border-radius: 6px;
  overflow: hidden;
  margin: 20px 20px;
}
.services-professional-title {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 24px 24px 20px;
  border-bottom: 1px solid #d8dce3;
}
.services-professional-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  padding: 14px 24px 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.services-professional-col-divider {
  border-right: 1px solid #d8dce3;
}

/* ── Cost panels ── */
.services-cost-panel {
  padding: 28px 24px;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.services-cost-panel--teal{
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 207, 94, 0.85) 0%, rgba(255, 207, 94, 0)   70%),
  radial-gradient(ellipse at 50% 55%,  rgba(243, 99, 243, 0.68) 0%, rgba(243, 99, 243, 0)   70%),
  #ffffff;
}
.services-cost-panel--amber{
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 207, 94, 0.85) 0%, rgba(255, 207, 94, 0)   70%),
  radial-gradient(ellipse at 50% 55%,  rgba(243, 99, 243, 0.68) 0%, rgba(243, 99, 243, 0)   70%),
  #ffffff;
}
.services-cost-panel--amber img{
  margin-bottom: -40px;
}
/* ── Cost card ── */
.services-cost-card {
  background: #1a1c24;
  border-radius: 8px;
  padding: 16px 20px;
  width: 320px;
  max-width: 100%;
}
.services-cost-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.services-cost-card__tag {
  font-size: 0.58rem;
  color: #ff5f3d;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.services-cost-card__label {
  font-size: 0.62rem;
  color: #aaa;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.services-cost-card__trend {
  font-size: 0.62rem;
  color: #ff5f3d;
}
.services-cost-card__amount {
  font-size: 1.9rem;
  font-weight: 700;
  color: #ff5f3d;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.services-cost-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: #aaa;
  padding: 3px 0;
  border-top: 1px solid #2a2d38;
}

/* ===== SERVICE DETAIL POPUPS (NEW) ===== */
.svc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: baseline;;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  padding: 40px 0;
  overflow-y: auto;
}
.svc-popup-overlay.is-open { opacity: 1; visibility: visible; }
.svc-popup {
  position: relative;
/*   width: 80%; */
/*   max-width: 560px; */
  margin: 0 24px;
  background: #FFFFFF;
/*   border: 1px solid rgba(80,130,255,0.18); */
  border-radius: 2px;
  padding: 100px 62px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: translateY(14px) scale(.98);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.svc-popup-overlay.is-open .svc-popup { transform: translateY(0) scale(1); }
.svc-popup-close {
  position: absolute;
  top: 0px;
  right: 0px;
  background: black;
  border: none;
	padding:5px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.svc-popup-close:hover { color: #fff; }
.svc-popup-eyebrow { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #5b8def; font-weight: 600; margin: 0 0 12px; }
.svc-popup-title { font-size: 26px; font-weight: 700; color: #fff; margin: 0 0 14px; }
.svc-popup-desc { font-size: 14px; line-height: 1.6; color: #9aa3be; margin: 0 0 24px; }
.svc-popup-list { list-style: none; margin: 0 0 28px; padding: 0; }
.svc-popup-list li { display: flex; gap: 10px; font-size: 14px; color: #c4cbe0; margin-bottom: 12px; line-height: 1.4; }
.svc-popup-list li::before { content: '✓'; color: #2f7bff; font-weight: 700; flex-shrink: 0; }
.svc-popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1251cf;
  color: #fff;
  border: none;
  border-radius: 3.2px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}



.stack-section {
  width: 100%;
  padding: 0 40px;
}

#sliderTracks .slick-track{
  margin-top: 34px;
}

/* Slider wrapper */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  user-select: none;
}

/* Fade edges */
.slider-wrapper::before,
.slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.slider-tracks {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}
.slider-tracks.dragging {
  transition: none;
  cursor: grabbing;
}
#sliderTracks{
  margin-top: 10px;
  padding: 10px 60px;
  border-top: 1px dashed #d8eef2;
  border-bottom: 1px dashed #d8eef2;
}
.stack-section .eyebrow{
	padding-left:40px;
}
.logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 90px;
  flex-shrink: 0;
  padding: 0 20px;
  transition: filter 0.25s ease;
}
.logo-slide:first-child {
  border-left: 1px dashed #d8eef2;
}


.logo-slide svg,
.logo-slide img {
  max-width: 130px;
  max-height: 48px;
  object-fit: contain;
}

/* Nav arrows */
.slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
}
.nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #d0edf2;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5bc8d4;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.nav-btn:hover {
  background: #5bc8d4;
  color: #fff;
}
.nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-listing-title{
	font-size:66px;
}


/* ---- card images with colored halos ---- */
.card-wrap {
  position: relative;
  padding: 30px 24px 6px;
}
.card-wrap::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 16%;
  bottom: 18%;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.7;
  z-index: 0;
}
.halo-warm::before {
  background: radial-gradient(
    closest-side,
    rgba(255, 176, 120, 0.55),
    rgba(255, 120, 150, 0.18),
    transparent
  );
}
.halo-cool::before {
  background: radial-gradient(
    closest-side,
    rgba(150, 200, 255, 0.55),
    rgba(120, 160, 255, 0.16),
    transparent
  );
}
.halo-mint::before {
  background: radial-gradient(
    closest-side,
    rgba(150, 240, 200, 0.55),
    rgba(120, 220, 255, 0.16),
    transparent
  );
}
.card-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 60px -28px rgba(10, 12, 20, 0.55);
}
.cover-col {
  display: flex;
  align-items: flex-end;
}
.cover-wrap {
  max-width: 360px;
  margin: 0 auto;
}
.cost-wrap {
  padding-top: 8px;
}
.cost-img {
  max-width: 540px;
  margin-left: auto;
}

/* entrance */
.guard .wrap > * {
  animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.guard .wrap > *:nth-child(2) {
  animation-delay: 0.06s;
}
.guard .wrap > *:nth-child(3) {
  animation-delay: 0.12s;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .guard .wrap > * {
    animation: none;
  }
}

@media (max-width: 767.98px) {
  .panel-right,
  .subcol-divide {
    border-left: none;
  }
  .cost-img {
    margin: 0 auto;
  }
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  margin: 0 auto 26px;
  font-family: "JetBrains Mono", monospace;
  padding: 6px 18px 6px 0px;
  border-radius: 2px;
  border:none;	
  background: none;
  color: rgba(0, 155, 255, 1);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.lede {
  font-size: 16px;
  line-height: 1.7;
  color: #50617A;
	font-weight:400;
}

/* ===== ONBOARDING ===== */
/* .onboard {
 
} */
.check-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #3c414b;
  padding: 5px 0;
}
.check-list .ck {
  flex: none;
	background:#DBF3FF;
	border-radius:4px;
	padding:3px;
}
.onboard h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0px 0 18px;
}
.onboard-section{
		padding-bottom:50px!important;
	}
/* timeline */
.timeline {
  position: relative;
  /* border-radius: 14px; */
  margin-top: 48px;
  padding: 30px 26px 0;
  background: #fff;
  overflow: hidden;
}
.tl-grid {
	box-shadow: inset 0 95px 407px -10px rgba(255, 255, 255, 0.8);
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(6.25% - 1px),
    rgba(16, 17, 20, 0.045) calc(6.25% - 1px),
    rgba(16, 17, 20, 0.045) 6.25%
  );
  pointer-events: none;
}
.tl-now {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 40px;
  width: 1.5px;
  background: linear-gradient(#1f6fff, rgba(31, 111, 255, 0.15));
  z-index: 3;
  pointer-events: none;
}
.tl-now::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1f6fff;
  box-shadow: 0 0 0 4px rgba(31, 111, 255, 0.18);
}
.tl-rows {
  position: relative;
  z-index: 2;
}
.tl-row {
  height: 38px;
  display: flex;
  align-items: center;
  margin: 14px;
}
.tl-bar {
  height: 36px;
  display: flex;
  align-items: center;
  color: #D8D9E7;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.tl-dark {
  background: #2E2E38;
  color: #D8D9E7;
}
.tl-peach {
  background: #FF755E;
  color: #080808;
}
.tl-mint {
  background: #84FFD1;
  color: #080808;
}
.tl-blue {
  background: #3DA6FF;
  color: #FFFFFF;
}
.tl-axis {
  position: relative;
  height: 40px;
  margin: 8px -26px 0;
  border-top: none;
}
.tl-tick {
  position: absolute;
  top: 13px;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  color: #9aa0ac;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 6px;
}
.timeline {
  display: flex; /* add this */
}
.tl-labels {
  flex: none;
  width: 84px;
  border-right: 1px solid rgba(16,17,20,0.09);
  position: relative;
  z-index: 4;
display: inline-table;	
  background: #fff;
}
.tl-label-group {
  display: flex;
	opacity: 80%;
	margin-top:32px;
  align-items: center;
  padding-right: 17px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #14151A;
}
.tl-labels-spacer { height: 1px; background: rgba(16,17,20,0.06); }
/* .tl-labels-axis   { height: 40px; border-top: 1px solid rgba(16,17,20,0.09); margin-top: 10px; } */
.tl-chart {
  flex: 1;
  position: relative;
  padding: 22px 26px 0;
  min-width: 0;
	border-right: 1px solid rgba(16, 17, 20, 0.09);
  border-top:1px solid rgba(46, 46, 56, 0.14)
}
.tl-separator {
  height: 1px;
  background: rgba(16,17,20,0.06);
  margin: 2px -26px;
  position: relative;
  z-index: 2;
}

.so-timeline h2{
	color:#0A2540;
	font-size:46px;
	font-weight:500;
}
.so-timeline{
  position:relative;
  margin-top:48px;
  padding:30px 26px 0;
  background:#fff;
  overflow:hidden;
  display:flex;
}
.so-grid{
  box-shadow:inset 0 95px 407px -10px rgba(255,255,255,0.8);
  position:absolute;
  inset:0;
  background-image:repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(6.25% - 1px),
    rgba(16,17,20,0.045) calc(6.25% - 1px),
    rgba(16,17,20,0.045) 6.25%
  );
  pointer-events:none;
}
.so-now{
  position:absolute;
  right:10%;
  top:0;
  bottom:40px;
  width:1.5px;
  background:linear-gradient(#1f6fff, rgba(31,111,255,0.15));
  z-index:3;
  pointer-events:none;
}
.so-now::before{
  content:"";
  position:absolute;
  top:-4px;
  left:50%;
  transform:translateX(-50%);
  width:9px;
  height:9px;
  border-radius:50%;
  background:#1f6fff;
  box-shadow:0 0 0 4px rgba(31,111,255,0.18);
}
 
.so-labels{
  flex:none;
  width:84px;
  border-right:1px solid rgba(16,17,20,0.09);
  position:relative;
  z-index:4;
  display:inline-table;
  background:#fff;
}
.so-label{
  display:flex;
  opacity:0.8;
  margin-top:46px;
  align-items:center;
  padding-right:17px;
  font-size:17px;
  font-weight:500;
  letter-spacing:0.04em;
  color:#14151A;
  transition:margin-top 0.35s ease;
}
.so-labels-axis{height:40px;margin-top:10px;}
 
.so-chart{
  flex:1;
  position:relative;
  padding:22px 26px 0;
  min-width:0;
  border-top:1px solid rgba(46,46,56,0.14);
}
 
.so-rows{position:relative;z-index:2;}
 
.so-row{
  display:flex;
  align-items:flex-start;
  margin:24px 10px;
}
 
.so-bar{
  width:100%;
  min-height:36px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#D8D9E7;
  padding:9px 14px;
  border-radius:8px;
  font-size:14px;
  font-weight:400;
  box-shadow:0 1px 2px rgba(0,0,0,0.06);
  cursor:pointer;
  transition:padding 0.3s ease;
}
 
.so-bar-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  white-space:nowrap;
}
.so-bar-title{overflow:hidden;text-overflow:ellipsis;}
.so-bar-arrow{
  flex:none;
  width:12px;
  height:12px;
  transition:transform 0.3s ease;
}
.so-row.is-open img{transform:rotate(180deg);}
 
.so-bar-desc{
  margin:0;
  font-size:13px;
  line-height:1.5;
  font-weight:400;
  white-space:normal;
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:max-height 0.35s ease, opacity 0.25s ease, margin-top 0.35s ease;
}
.so-row.is-open .so-bar-desc{
  max-height:120px;
  opacity:1;
  margin-top:8px;
}
 
.so-bar-dark{background:#2E2E38;color:#D8D9E7;}
.so-bar-mint{background:#84FFD1;color:#080808;}
.so-bar-peach{background:#FFB5A8;color:#080808;}
.so-bar-blue{background:#3A5CFF;color:#FFFFFF;}
 
.so-axis{position:relative;height:40px;margin:8px -26px 0;border-top:none;}
.so-tick{
  position:absolute;
  top:13px;
  font-size:10.5px;
  letter-spacing:1.6px;
  color:#9aa0ac;
  text-transform:uppercase;
  white-space:nowrap;
  padding:0 6px;
}
 
/* row widths/offsets, unchanged gantt positions */
.so-row[data-step="1"] .so-bar-wrap{margin-left:1.5%;width:45%;}
.so-row[data-step="2"] .so-bar-wrap{margin-left:20%;width:40%;}
.so-row[data-step="3"] .so-bar-wrap{margin-left:25%;width:40%;}
.so-row[data-step="4"] .so-bar-wrap{margin-left:30%;width:72%;}
.so-row[data-step="5"] .so-bar-wrap{margin-left:36%;width:60%;}
.so-row[data-step="6"] .so-bar-wrap{margin-left:50%;width:40%;}
.so-row[data-step="7"] .so-bar-wrap{margin-left:50%;width:40%;}
.so-row[data-step="8"] .so-bar-wrap{margin-left:50%;width:40%;}
.so-bar-wrap{display:flex;}









/* ===== INDUSTRIES INTRO ===== */
/* .ind-intro {
  padding: 70px 0 30px;
} */
.mob-intro{
  display: none;
}
.intro-section{
	padding-bottom:0!important;
}
.ind-intro h2 {
  font-weight: 500;
  font-size: 39px;
	color:#080808;
  padding-left: 14px;	
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin: 0;
}
.ind-intro p{
	padding-right:20px
}
.diamond {
	width:120px;
	z-index:1;
/* 	width: 123px; */
    height: 140px;
/*   width: 188px;
  height: 188px; */
  border-radius: 34px;
  transform: rotate(45deg);
  position: relative;
  margin: 0 auto;
  /* background: linear-gradient(140deg, #43a0ff 0%, #1f6fff 70%); */
  box-shadow: 0 32px 64px -22px rgba(31, 111, 255, 0.65);
}
.diamond img {
	width:228px;
/* 	width: 205px; */
    margin: -20px 0 0 -34px;
/*   margin: -38px 0 0 -60px; */
  transform: rotate(-45deg);
}
.diamond::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.28) 1px,
    transparent 1.7px
  );
  background-size: 10px 10px;
  opacity: 0.55;
}
.diamond .shield {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: rotate(-45deg);
  z-index: 2;
}
.spine {
  width: 1.5px;
  height: 70px;
  margin: 0 auto;
  background: linear-gradient(rgb(16 17 20 / 0%), rgb(16 17 20 / 0%));
}

/* ===== DARK SECTOR TREE ===== */
.sectors {
  position: relative;
  background: #080808;
  padding: 0 0 0px;
}
.sectors .wrap {
  max-width: 100%;
  position: relative;
}
.sectors-padding{
	padding-bottom:0px!important;
}
.tree {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 1180/700;
}
/* .tree-img{
	position: absolute;
    left: 15%;
    top: -88px;
	width:auto;
} */
.tree-img{
	position: absolute;
    left: 13%;
    top: -88px;
    width: 74%;
}
.tree-lines {
  position: absolute;
  inset: 0;
  padding: 0 40px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.health{
	left:15.1%;
	top:36%;
}
.manufacture{
		left:29%;
	top:56%;
	
}
.legal{
	left:57%;
	top:56%;
	width:270px!important;
}
.financial{
left:43.0%;
	top:36%;
}
.techs{
	left:71%;
	top:36%;
}
.education{
	left:84.8%;
	top:56%;
}
.ind-card {
  position: absolute;
  width: 250px;
  transform: translateX(-50%);
  z-index: 2;
  /* background: #101218;
  border: 1px solid rgba(255, 255, 255, 0.09); */
  border-radius: 16px;
  /* padding: 30px 20px 22px; */
  text-align: center;
}
.ind-icon {
  width: 40px;
  height: 40px;
  margin: -50px auto 14px;
  display: grid;
  place-items: center;
}
.ind-name {
  color: #ffffff;
  font-size: 21px;
  font-weight: 600;
  margin: -7px 0 10px;
}
.ind-desc {
  color: #9193ac;
  font-size: 14px;
  line-height: 17px;
  margin: 0 0 16px;
}
.ind-tags {
	display:none;
/*   display: flex; */
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.chip {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aeb4bf;
  background: rgba(255, 255, 255, 0.04);
  border: 0.8px solid #ffffff1a;
  border-radius: 3px;
  padding: 4px 8px;
}

/* fade-in */
[data-rise] {
  animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-rise] {
    animation: none;
  }
}

.section-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow-tag {
  display: inline-block;
	font-family: "JetBrains Mono", monospace;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #7a808b;
  margin-bottom: 22px;
}

/* ════════════════════════════════════════
       SECTION 1 — SIX REASONS
    ════════════════════════════════════════ */
.reasons {
  background: #080808;
	overflow-x:hidden;
}

.reasons-header {
  margin-bottom: 70px;
}
.reasons-header h2 {
  font-weight: 500;
  font-size: 42px;
  color: white;
  line-height: 1.08;
  letter-spacing: -1px;
}
.reasons-header p {
  font-size: 16px;
  color: #999999;
  line-height: 1.7;
  padding-top: 6px;
}
.reasons-row{
  align-items: end;
}
.bento-row {
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 70px!important;
}
/* .left-box{
	margin-right:-34px;
}
.right-box{
	margin-left:-20px;
}
.left-box2{
	margin-left:-20px;
} */
/* base card */
.left-row{
	margin-right:-60px!important;
}
.right-row{
	margin-left:-60px!important;
}
.right-shade {
	width:215px;
  background: linear-gradient(215deg, rgb(0 155 255 / 0%) 0%, rgba(8, 8, 8, 1) 35%) padding-box,
    linear-gradient(
        to bottom left,
        rgb(0 155 255 / 22%) 20%,
        rgba(0, 155, 255, 0.1) 40%,
        #009bff0f 60%,
        #009bff1f 100%
      )
      border-box;
/*       box-shadow:
      inset 0 0 5px rgba(0, 155, 255, 0.08),
      inset 0 0 80px rgba(0, 155, 255, 0.04); */
  background-size: contain;
  background-repeat: no-repeat;
}

.left-shade {
	width:215px;
	    background: linear-gradient(159deg, rgb(0 155 255 / 0%) 0%, rgba(8, 8, 8, 1) 35%) padding-box, linear-gradient(to bottom right, rgb(0 155 255 / 22%) 20%, rgba(0, 155, 255, 0.1) 40%, #009bff0f 60%, #009bff1f 100%) border-box;
/*   background: linear-gradient(159deg,rgba(0, 155, 255, 1) 0%, rgba(8, 8, 8, 1) 35%) padding-box,
    linear-gradient(
        to bottom right,
        rgba(0, 155, 255, 0.8) 20%,
        rgba(0, 155, 255, 0.1) 40%,
        #009bff0f 60%,
        #009bff1f 100%
      )
      border-box; */
/*       box-shadow:
      inset 0 0 5px rgba(0, 155, 255, 0.08),
      inset 0 0 80px rgba(0, 155, 255, 0.04); */
  background-size: contain;
  background-repeat: no-repeat;
}
.bcard {
  position: relative;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 20px 20px 20px 20px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* padding: 28px 24px;
      position: relative;
      overflow: hidden;
      height: 100%;
      transition: border-color 0.25s, background 0.25s; */
}

/* blank spacer — invisible, just holds the grid space */
.bcard-blank {
  background: transparent;
  border-color: transparent;
  pointer-events: none;
}
.bcard-blank::before {
  display: none;
}
.bcard-blank:hover {
  background: transparent;
  border-color: transparent;
}

/* hero centre card */
.bcard-hero {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.bcard-hero img {
  width: -webkit-fill-available;
}

/* icon box */
.bcard-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.bcard-icon svg {
  width: 16px;
  height: 16px;
}

.bcard h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
  color: #ffffff;
}
.bcard p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin: 0;
}
.bcard-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  color: rgba(31, 111, 255, 0.8);
  letter-spacing: 0.8px;
}

/* shield glow */
.shield-glow {
  position: relative;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
}
.shield-glow::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(31, 111, 255, 0.45) 0%,
    transparent 70%
  );
  animation: pulse-glow 2.8s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}
.shield-dots {
  position: relative;
  z-index: 1;
  color: transparent;
  background-image: radial-gradient(
    circle,
    rgba(100, 170, 255, 0.95) 38%,
    transparent 42%
  );
  background-size: 4px 4px;
  -webkit-background-clip: text;
  background-clip: text;
}
.shield-dots svg {
  width: 100px;
  height: 100px;
}
.section-1, .section-2, .section-3, .section-4, .section-5, .section-6, .section-8, .section-7, .section-10{
            padding: 100px 50px;
            border-right: 1px solid #313131;
            border-left: 1px solid #313131;
            border-bottom: 1px solid #313131;
}

 .section-7, .section-11, .section-12{
  padding: 100px 50px;
  border-right: 1px solid #E5EDF5;
  border-left: 1px solid #E5EDF5;
  border-bottom: 1px solid #E5EDF5;
}
.section-20{
	padding: 55px 0px 0 0px;
	border-right: 1px solid #E5EDF5;
	border-left: 1px solid #E5EDF5;
}
.service-padding{
	padding-bottom:40px;
}
/* ════════════════════════════════════════
       SECTION 2 — SUCCESS STORIES SLIDER
    ════════════════════════════════════════ */
.stories {
  background: #080808;
}

.stories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.stories-header h2 {
  
  font-weight: 500;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -1px;
  max-width: 500px;
  color: white;
}
.stories-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
	justify-content: flex-end;
    margin-top: 30px;
}
.story-link{
	margin-top:24px;
}
.story-cnts{
	font-size:16px;
	color:#999999;
	margin-top:40px;
	font-weight:400;
}

.btn-view-stories {
  background: #1251cf;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 7px;
	text-decoration:none;
  transition:  0.3s ease;
}
.btn-view-stories img{
	margin-top:3px;
}
.btn-img2{
	display:none;
}
.btn-view-stories:hover .btn-img2{
	display:block;
}
.btn-view-stories:hover .btn-img1{
	display:none;
}
#nextBtn{
  background: #D7EFFF;
  border: none;
}
#prevBtn{
  background: black;
  border: 1px solid #D4DEE9;
}
.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  color: #e8eaf0;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.slider-btn:hover {
  border-color: rgba(31, 111, 255, 0.4);
  background: rgba(31, 111, 255, 0.08);
}
.slider-btn svg {
  width: 16px;
  height: 16px;
}

/* track */
.slider-outer {
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  align-items: flex-start;
}

.story-card {
  flex: 0 0 calc((100vw - 48px - 16px * 4.5) / 4.5);
  /* flex: 0 0 calc(25% - 12px); */
  min-width: 0;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
  border: none;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}




.story-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  height: 448px;
  position: relative;
  overflow: hidden;
}
.story-thumb img {
  width: -webkit-fill-available;
  height: 448px;
  /* border-radius: 6px; */
}
.story-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
}

/* individual card visuals */
.thumb-fin {
  background: linear-gradient(135deg, #0d1a3a 0%, #1a3060 60%, #0b3080 100%);
}
.thumb-health {
  background: linear-gradient(135deg, #0a1a14 0%, #0d3320 60%, #133d28 100%);
}
.thumb-saas {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1060 50%, #3d1080 100%);
}
.thumb-mfg {
  background: linear-gradient(135deg, #1f1200 0%, #3d2800 60%, #5a3a00 100%);
}
.thumb-fin2 {
  background: linear-gradient(135deg, #001830 0%, #003060 60%, #004080 100%);
}

.circle-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

/* waveform graphic */
.waveform svg {
  opacity: 0.9;
}

/* layered circles graphic */
.circles-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.circ {
  border-radius: 50%;
  border: 1.5px solid rgba(160, 100, 255, 0.5);
  background: rgba(120, 60, 220, 0.18);
}

/* node graph graphic */
.node-graph {
  position: relative;
  width: 120px;
  height: 90px;
}
.node-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f0a040;
  box-shadow: 0 0 12px rgba(240, 160, 40, 0.7);
}
.node-graph svg {
  position: absolute;
  inset: 0;
}

.story-body {
  padding: 16px 0px 16px 0px;
  height: 130px;
}
.story-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a808b;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 10px;
}
.story-body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 1);
  font-weight: 300;
  line-height: 1.6;
  margin-top: 30px;
  transition:  0.25s ease;
}
.story-read-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #009BFF;
  text-decoration: none;
  margin-top: 0;
  max-height: 0;
  opacity: 1;

}
.story-card:hover .story-body p{
  margin-top: 6px;
}

/* dots indicator */
.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 28px;
}
.sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}
.sdot.active {
  background: #1f6fff;
  width: 20px;
  border-radius: 3px;
}

/* ════════════════════════════════════════
       SECTION 3 — CUSTOMER OUTCOMES
    ════════════════════════════════════════ */
.outcomes {
  background: #080808;
  text-align: center;
}

.outcomes h2 {
  font-weight: 500;
  font-size: 42px;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 72px;
}

.stats-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  padding: 0 20px;
  position: relative;
}
/* .stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
} */

.stat-num {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 14px;
  /* dot-matrix effect */
  color: transparent;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 38%,
    transparent 42%
  );
  background-size: 5px 5px;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(31, 111, 255, 0.15));
}
.stat-label {
  font-size: 24px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.3px;
}

/* entrance animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.anim {
  opacity: 0;
}
.anim.visible {
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.anim:nth-child(2).visible {
  animation-delay: 0.08s;
}
.anim:nth-child(3).visible {
  animation-delay: 0.16s;
}

/* responsive */
@media (max-width: 991px) {
  .bcard-hero {
    grid-column: 1 / 13;
    grid-row: 1;
    min-height: 220px;
  }
  .bcard-c1 {
    grid-column: 1 / 7;
    grid-row: 2;
  }
  .bcard-c2 {
    grid-column: 7 / 13;
    grid-row: 2;
  }
  .bcard-c3 {
    grid-column: 1 / 7;
    grid-row: 3;
  }
  .bcard-c4 {
    grid-column: 7 / 13;
    grid-row: 3;
  }
  .bcard-c5 {
    grid-column: 1 / 7;
    grid-row: 4;
  }
  .bcard-c6 {
    grid-column: 7 / 13;
    grid-row: 4;
  }
  .reasons-header {
    flex-direction: column;
    gap: 16px;
  }
  .story-card {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 767px) {
  .stories-header {
    flex-direction: column;
    align-items: flex-end;
  }
  .story-card {
    flex: 0 0 calc(80% - 8px);
  }
  .stats-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .stat-item::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .bcard-c1,
  .bcard-c2,
  .bcard-c3,
  .bcard-c4,
  .bcard-c5,
  .bcard-c6 {
    grid-column: 1 / 13;
  }
  .bcard-c1 {
    grid-row: 2;
  }
  .bcard-c2 {
    grid-row: 3;
  }
  .bcard-c3 {
    grid-row: 4;
  }
  .bcard-c4 {
    grid-row: 5;
  }
  .bcard-c5 {
    grid-row: 6;
  }
  .bcard-c6 {
    grid-row: 7;
  }
  .story-card {
    flex: 0 0 calc(90% - 8px);
  }
}

/* ── shared eyebrow tag ── */
.eyebrow-tag {
  display: inline-block;
  margin: 0 auto 26px;
  padding: 8px 18px 8px 0;
  border-radius: 2px;
	border:none;
  background: none;
  color: rgba(0, 155, 255, 1);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   SECTION 1 — BLOG / THREAT INTEL
════════════════════════════════════════ */
.blog-section {
  background: #080808;
}
.blog-section a{
  text-decoration: none;
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.blog-header h2 {
  font-weight: 500;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -1px;
  max-width: 500px;
  color: white;
}

.btn-view-blogs {
  background: #1251cf;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 30px;
}
.btn-view-blogs:hover {
  background: #2f7bff;
  transform: translateY(-1px);
  color: #fff;
}

/* blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* featured card (left, spans 2 rows) */
.blog-card-featured {
  grid-row: 1 / 3;
  /* background: #0b0d13; */
  border: 1px solid #313131;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
}
/* .blog-card-featured:hover {
  border-color: rgba(31,111,255,0.3);
} */

.featured-meta {
  padding: 22px 24px 14px;
}
.featured-meta h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #e8eaf0;
}
.featured-meta p {
  font-size: 14px;
  color: #9f9f9f;
  line-height: 1.6;
}

.tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.tag-pill {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9aa1ad;
  background: rgba(255, 255, 255, 0.06);
  border: 0.9px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 3px 8px;
}

.featured-thumb {
  flex: 1;
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card-featured:hover .featured-thumb img {
  transform: scale(1.03);
}

/* overlay title on featured image */
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 40%, transparent 80%);
  display: flex;
  align-items: flex-end;
  padding: 28px 26px;
}
.featured-overlay-title {
  
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.featured-foot {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #9f9f9f;
}
.featured-foot span + span::before {
  content: "·";
  margin: 0 6px;
}

/* side cards (right column) */
.blog-card-side {
  /* background: #0b0d13; */
  border: 1px solid #313131;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
  cursor: pointer;
}
.blog-card-side:hover {
  border-color: rgba(31, 111, 255, 0.3);
}

.side-top {
  padding: 18px 20px 14px;
}
.side-top h4 {
  
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  color: #e8eaf0;
  margin-bottom: 0;
}

.side-thumb {
  flex: 1;
  position: relative;
  min-height: 160px;
  overflow: hidden;
}
.side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card-side:hover .side-thumb img {
  transform: scale(1.03);
}

.side-foot {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11.5px;
  color: #5a5f6a;
}
.side-foot .read-time {
  display: flex;
  align-items: center;
  gap: 4px;
}
.side-foot .view-count {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* placeholder image backgrounds (for when real images aren't present) */
.img-placeholder-cisa {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1525 0%, #0a2040 50%, #0d1a35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}


.img-placeholder-soc {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0005 0%, #200010 50%, #300015 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.img-placeholder-coinbase {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #050a20 0%, #0a1540 50%, #0d1a50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* ════════════════════════════════════════
   SECTION 2 — FAQ
════════════════════════════════════════ */
.faq-section {
  background: #080808;
}
/* 
.faq-inner {
  display: grid;
  height:500px;	
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
} */

.faq-inner {
  display: block;
/*   height:500px;	
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start; */
}

/* .faq-left {
  position: sticky;
  top: 32px;
} */

.faq-left h2 {
  
  font-weight: 400;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #e8eaf0;
}
.faq-left{
margin: 0 30px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
	margin:20px 30px;
  border: 1px solid rgba(51, 51, 51, 1);
  border-radius: 3px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  
  font-size: 20px;
  font-weight: 400;
  color: white;
  transition: background 0.2s, color 0.2s;
}
.faq-question:hover {
  /* background: #0d1020; */
  color: #e8eaf0;
}
.faq-item.open .faq-question {
  /* background: #0d1020; */
  color: rgba(255, 255, 255, 0.4);
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
  color: rgba(187, 187, 187, 1);
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
 color: rgba(187, 187, 187, 1)
}
.faq-icon svg line:first-child {
  transition: opacity 0.3s ease;
}

.faq-item.open .faq-icon svg line:first-child {
  opacity: 0;
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
/*   transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s; */
  padding: 0 24px;
  transition: max-height 0.7s ease, opacity 0.5s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0px 24px 0px;
}
.faq-answer p {
  font-size: 17px;
  color: white;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   SECTION 3 — CTA FOOTER
════════════════════════════════════════ */
.sc-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0px;
  background: url(/wp-content/uploads/2026/06/Section-CTA.webp);
  background-size: cover;
  background-position: center;
  text-align: center;
  border-top: 1px solid #313131;
  
}
/* .sc-cta ::before {
  content: "";
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 70%
    ); 
	

    filter: brightness(0.5);
  pointer-events: none;
} */
.sc-cta__bg-reveal {
  position: absolute;
  inset: -6%;
  z-index: 2;
  background:url('https://secucenter-staging.secucenter.com/wp-content/uploads/2026/06/footer-logo-reveal.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: -webkit-mask-position, mask-position, opacity;
  pointer-events: none;

  /* ...but the mask is what limits it to a circle around the cursor */
  --spot: 175px; /* flashlight radius */
  --mx: 50%; /* cursor X (set by JS, in px) */
  --my: 50%; /* cursor Y (set by JS, in px) */
  --mask: radial-gradient(
    circle var(--spot) at var(--mx) var(--my),
    #000 0%,
    #000 55%,
    rgba(0, 0, 0, 0.25) 78%,
    transparent 100%
  );
  -webkit-mask-image: var(--mask);
  mask-image: var(--mask);
}

.sc-cta.is-revealing .sc-cta__bg-reveal {
  opacity: 1;
}

.sc-cta__bg-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 18, 0.3), rgba(2, 6, 18, 0.5));
}


  .sc-cta__inner {
    /* remove transition — rAF owns opacity and transform */
    position: relative;
    z-index: 2;
    /* max-width: 760px; */
    margin: 0 auto;
  }


.sc-cta.is-revealed .sc-cta__inner {
  opacity: 1;
  transform: translateY(0);
}

.sc-cta__logo {
  margin-bottom: 32px;
}

.sc-cta__logo img {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

.sc-cta__heading {
  font-size: 43px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 10px;
}

.sc-cta__btn {
  background: #1251cf;
    color: #fff;
    border: none;
    border-radius: 3.2px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration:none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, transform 0.2s;
}


@keyframes sc-ring-pulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.55); }
}

@media (prefers-reduced-motion: reduce) {
  .sc-cta__bg-reveal,
  .sc-cta__inner {
    transition: none;
  }
  .sc-cta__btn-ring {
    animation: none !important;
  }
}

/* .cta-section {
  padding: 120px 24px 130px;
  background: url('/wp-content/uploads/2026/06/secucenter-landing.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}



@keyframes star-twinkle {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 0.7;
  }
}



.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  opacity: 0.8;
}
.cta-logo-text {
  
  font-weight: 600;
  font-size: 17px;
  color: #e8eaf0;
  letter-spacing: -0.3px;
}

.cta-section h2 {
  
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #e8eaf0;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-audit {
  background: #1251cf;
  color: #fff;
  border: none;
  border-radius: 3.2px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
}
.btn-cta-audit:hover {
  background: #2f7bff;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 40px rgba(31, 111, 255, 0.55);
} */

/* ── fade-up entrance ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.anim {
  opacity: 0;
}
.anim.visible {
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.anim.d1.visible {
  animation-delay: 0.08s;
}
.anim.d2.visible {
  animation-delay: 0.16s;
}

/* ── responsive ── */
@media (max-width: 991px) {
	.tree-img {
		display: none!important;
	}
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .faq-left {
    position: static;
  }
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-featured {
    grid-row: auto;
  }
  .featured-thumb {
    min-height: 220px;
  }
}

.playbook-hero {
  background: url('/wp-content/uploads/2026/06/secucenter-landing.webp');
  background-size: cover;
  background-position: center;
  padding: 0;
  position: relative;
}

.playbook-hero .container{
  padding: 0 100px 0px 100px!important;
}
.section-14{
  padding-bottom: 120px;
  border-right: 1px solid rgba(54, 54, 54, 1);
  border-left: 1px solid rgba(54, 54, 54, 1);
}
/* ── Headline ── */
.playbook-headline-wrap {
  text-align: center;
  padding: 70px 16px 70px;
}

.playbook-headline {
  font-size: 66px;
	font-family:"outfit" sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
    color: transparent;
    background-image: radial-gradient(circle, rgb(255 255 255) 1px, black 1px);
  background-size: 4px 4px;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  display: inline-block;
}

/* ── Stage (overflow hidden on viewport, full-bleed) ── */
.trending-post-stage {
  position: relative;
  overflow: visible;
  background: white;
}

/* ── Viewport clips the reel ── */
.trending-post-viewport {
  overflow: hidden;
  position: relative;
}

/* ── Reel ── */
.trending-post-reel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

/* ── Each slide slot = container width ── */
.trending-post-card {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Content panel (left ~55%) ── */
.post-content-panel {
  flex: 0 0 55%;
  max-width: 52%;
  padding: 36px 40px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  justify-content: flex-start;
}

.post-content-panel h2 {
  font-size: 37px;
  font-weight: 500;
  line-height: 48px;
  margin: 12px 0 10px;
  color: #0A2540;
}

.post-content-panel p {
  font-size: 18px;
  line-height: 1.65;
  font-weight: 300;
  color: #425466;
  margin: 0;
}

/* ── Badge ── */
.post-status-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid #FF9000;
  background: rgba(255, 178, 0, 0.17);
  color: #FF9000;
}

/* ── Byline ── */
.post-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-name {
  font-size: 15px;
  font-weight: 500;
  color: #0A2540;
  line-height: 1.3;
}

.author-title {
  font-size: 15px;
  color: #425466;
  font-weight: 300;;
  line-height: 1.3;
}

/* ── Meta row ── */
.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 2px;
  font-size: 11px;
  color: #888;
  margin-top: 20px;
  margin-bottom: 16px;
}

.post-meta-row span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #425466;
  font-weight: 400;
}



.meta-divider {
  color: rgba(66, 84, 102, 0.28);
  padding: 0 4px;
}

/* ── Read more ── */
.btn-read-articles {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #1251CF;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  transition: gap 0.2s;
}

.btn-read-article:hover { gap: 8px; color: #0a50cc; }

/* ── Cover panel (right ~45%) ── */
.post-cover-panel {
  flex: 0 0 45%;
  max-width: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
height:500px;
	margin:auto;
/*   align-items: center; */
  justify-content: center;
}

.post-cover-visual {
  position: relative;
  z-index: 2;
  padding: 40px;
  text-align: center;
}

.cover-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cover-topic-line {
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #90c4ff;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.2;
}

.cover-topic-line em {
  font-style: italic;
  font-weight: 300;
  font-size: 1.1em;
}

.cover-preposition {
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(100, 160, 255, 0.6);
  align-self: center;
}

.cover-year-stamp {
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 900;
  line-height: 1;
  color: #5aabff;
  letter-spacing: -0.02em;
  text-shadow:
    0 1px 0 #3880cc,
    0 2px 0 #2060aa,
    0 3px 0 #104080,
    0 6px 20px rgba(30, 100, 220, 0.6),
    0 0 60px rgba(30, 100, 220, 0.3);
}



/* ── Ghost / peek cards (dashed) ── */
.ghost-card {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  pointer-events: none;
  z-index: 4;
}

.ghost-card--left  { right: 100%; margin-right: 16px; }
.ghost-card--right { left: 100%;  margin-left: 16px; }

/* ── Nav buttons ── */
.post-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
}

.post-nav-btn:hover {
  background: rgba(31,111,255,0.25);
  border-color: rgba(31,111,255,0.5);
  color: #fff;
}

.post-nav-btn svg {
  width: 18px;
  height: 18px;
}

.post-nav-btn.prev {
  background: transparent;
  border: 1px solid #D4DEE9;
   right: calc(100% + 50px);
 }
.post-nav-btn.next { 
  left:  calc(100% + 50px);
  background: #D7EFFF;
  border: none;
 }



.intel-filter-bar {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.intel-filter-inner {
  margin: 0 auto;
  padding: 0 20px; 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* search box */
.intel-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  flex-shrink: 0;
}
.intel-search-wrap svg {
  color: #aab0bd;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.intel-search-wrap input {
  border: 1px solid rgba(227, 228, 232, 1);
  border-radius: 3px;
  background: #ffffff;
  font-size: 13px;
  
  color: #BDBEC7;
  outline: none;
  width: 190px;
  padding: 6px 14px 6px 10px;
  transition: border-color 0.2s;
}
.intel-search-wrap input:focus {
  border-color: rgba(31, 111, 255, 0.4);
}
.intel-search-wrap input::placeholder {
  color: #aab0bd;
}

/* category tabs */
.intel-category-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 10px 24px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  height: 34px;
  color: #727272;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  line-height: 1;
}
.category-tab:hover {
  color: #1a1c22;
  background: rgba(0, 0, 0, 0.05);
}
.category-tab.active {
  background: rgba(18, 81, 207, 1);
  color: #ffffff;
}

/* ═══════════════════════════════════════
   ARTICLE LISTING SECTION
═══════════════════════════════════════ */
.post-listing-section {
  background: #F5FAFF;
  padding: 56px 0 80px;
}

.post-listing-wrap {
  margin: 0 auto;
  padding: 0 50px;
}

/* eyebrow label */
.listing-eyebrow {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid #1f6fff;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #1f6fff;
  margin-bottom: 48px;
  background: transparent;
}

/* 3-column post grid */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
}

/* ── single post card ── */
.post-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}


/* category label above thumbnail */
.post-category-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  display: block;
}
.label-industry {
  color: #09CBCB;
} /* teal-green */
.label-defensive {
  color: #533AFD;
} /* purple */
.label-malware {
  color: #DA0E15;
} /* red */


/* thumbnail image */
.post-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #c8cfd8;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.post-card:hover .post-thumbnail img {
  transform: scale(1.03);
}

/* placeholder when no real image */
.post-thumbnail-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}


/* meta row: date | time | views */
.post-meta {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 12.5px;
  color: #6b7280;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.post-meta-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.post-meta-pipe {
  margin: 0 10px;
  color: #c8cfd8;
  font-weight: 300;
}

/* title */
.post-card-title {
  
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #080808;
  margin-bottom: 10px;
  transition: color 0.2s;
}

/* excerpt */
.post-card-excerpt {
  font-size: 14px;
  color: #78736E;
  font-weight: 500;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
  margin-top:30px;
  transition: 0.25s ease;
}
.list-cnt{
  height: 80px;
  overflow: hidden;
}
.post-card:hover  .post-card-excerpt{
  margin-top:2px;
}
/* read more link — only shown on the first/active card */
.btn-read-article {
  display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #009BFF;
    text-decoration: none;
    margin-top: 0;
    max-height: 0;
    opacity: 1;
  transition: gap 0.2s;
}
.btn-read-article:hover {
  gap: 9px;
  color: #2f7bff;
}

/* row divider between grid rows */
.post-row-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  margin: 48px 0;
}

/* ── dot-matrix pagination buttons ── */
.post-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
}

.pagination-btn {
  width: 38px;
  height: 38px;
  border-radius: 3px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  position: relative;
}
#pgPrev{
  background: transparent;
  border: 1px solid #D4DEE9;
}
#pgNext{
  background: #D7EFFF;
  border: none;
}
.pagination-btn:hover {
  border-color: rgba(31, 111, 255, 0.35);
  color: #1f6fff;
  background-color: #eaf0ff;
}
.pagination-btn.active {
  border-color: rgba(31, 111, 255, 0.5);
  background-color: #e4edff;
  color: #1f6fff;
}
.pagination-btn svg {
  width: 16px;
  height: 16px;
}

/* ── fade-up entrance ── */
@keyframes intel-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.anim {
  opacity: 0;
}
.anim.visible {
  animation: intel-fade-up 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.anim.d1.visible {
  animation-delay: 0.08s;
}
.anim.d2.visible {
  animation-delay: 0.16s;
}




.fi-section {
  background: white;
  padding: 64px 0 80px;
}


.feat-post{
  padding:0 50px 50px 0;
}

.fi-post:hover .feat-autor {
  bottom: 50px;
}
/* ── Post row ── */
.fi-post {
  margin-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.fi-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ── Category pill ── */
.fi-post__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.first-cat{
  color: #09CBCB;
}
.second-cat{
  color: #635BFF;
}
.third-cat{
  color: #DA0E15;
}
.first-cat::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #09CBCB;
  border-radius: 1px;
}
.second-cat::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #635BFF;
  border-radius: 1px;
}
.third-cat::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #DA0E15;
  border-radius: 1px;
}
/* ── Title ── */
.fi-post__title {
  font-size: 36px;
  font-weight: 500;
  color: #0A2540;
  margin-top: 40px;
  margin-bottom: 10px;
}
.fi-post__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}


.fi-post--featured .fi-post__thumb {
  aspect-ratio: 1 / 1;
}

/* ── Excerpt ── */
.fi-post__excerpt {
  font-size: 18px;
  color: #425466;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.feat-post p{
  font-size: 18px;
  font-weight: 400;
  color: #425466;
}
.news-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.feat-autor{
  position: absolute;
  bottom: -10px;
  transition: 0.25s ease;

}
.btn-feat-article {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #009BFF;
  text-decoration: none;
  margin-top: 20px;
  max-height: 0;
  opacity: 1;
  transition: gap 0.2s;
}
.fi-post__readmore:hover {
  gap: 9px;
  color: #4d8fff;
}
.fi-post__readmore-icon {
  width: 12px;
  height: 12px;
}

/* ── Thumbnail ── */
.fi-post__thumb {
  padding: 40px;
}
.fi-post__thumb img {
  width: -webkit-fill-available;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow:
  0 18px 36px -18px rgba(0, 0, 0, 0.3),
  0 30px 24px -12px rgba(50, 50, 93, 0.25);
  transition: transform 0.4s ease;
}


.subscribe-section {
  padding: 80px 0;
  align-items: center;
}

.subscribe-content h4 {
  color: #fff;
  font-size: 43px;
  line-height: 1.1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 12px;
}

.subscribe-content p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 300;
  text-align: left;
  margin: 0;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.subscribe-form input {
  flex: 1;
  height: 42px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.92);
  border-radius: 4px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
}

.subscribe-form button {
  height: 42px;
  padding: 0 28px;
  border: none;
  border-radius: 4px;
  background: #1251CF;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.subscribe-form button:hover {
  background: #1251CF;
}

.form-note {
  color: #FFFFFF;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}
.sc-sub{
  max-width: inherit;
}

.form-note a {
  color: rgba(255,255,255,.85);
  text-decoration: underline;
}


.newsroom-section {
  background: #080808;
  padding: 0;
}

.newsroom-header {
  margin-bottom: 80px;
}



.newsroom-header h2 {
    font-weight: 500;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -1px;
    max-width: 500px;
    color: white;
}

.news-btn {
  background: #1251cf;
  color: #fff;
  border: none;
  border-radius: 3.2px;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  transition: background 0.2s, transform 0.2s;
}


.news-card {
  color: #fff;
}

.news-image {
  overflow: hidden;
  margin-bottom: 20px;
}

.news-image img {
  width: 100%;
  display: block;
}

.news-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}

.news-card h3 {
  font-size: 25px;
  line-height: 1.15;
  color: white;
  font-weight: 500;
  margin-bottom: 18px;
}

.news-card p {
  color: #78736E;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}


.trending-blogs{
  background: black;
}




.trending-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 2px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(49, 49, 49, 1);
  border-left: 1px solid rgba(49, 49, 49, 1);
  overflow: hidden;
}
.section-1 .trending-item:first-of-type {
  border-top: 1px solid rgba(49, 49, 49, 1);
}
.trending-item:last-child {
  border-bottom: 1px solid rgba(49, 49, 49, 1)!important;

}

/* Image Hidden */
.trending-image {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .5s ease;
  flex-shrink: 0;
}

.trending-image img {
  width: 120px;
  height: 68px;
  object-fit: cover;
  display: block;
}

/* Read More Hidden */
.read-more {
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  color: #009BFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;

  opacity: 0;
  transform: translateX(20px);
  transition: all .4s ease;
}

/* Hover Effects */
.trending-item:hover .trending-image {
  width: 120px;
  opacity: 1;
}

.trending-item:hover .read-more {
  opacity: 1;
  transform: translateX(0);
}

.trending-number {
  color: #009BFF;
  font-size: 14px;
  font-weight: 700;
  min-width: 40px;
}

.trending-title {
  flex: 1;
  color: #EAEEF7;
  font-size: 16px;
  font-weight: 500;
}

.trending-meta {
  display: flex;
  gap: 15px;
  color: rgba(255,255,255,.45);
  font-size: 14px;
}

.trending-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trending-meta img {
  width: 14px;
  height: 14px;
}




/* ── AUDIO BAR ── */

.audio-bar-section{
  height: 80px;
}
.audio-bar {
  padding: 10px 24px;
  display: none;
  align-items: center;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.audio-bar .title {
  flex: 1;
  text-align: center;
  font-size: 14px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-bar .time { font-size: 14px; 
  color: #425466; 
  font-weight: 400;
  white-space: nowrap; }
.audio-bar .play-btn {
  width: 32px; 
  height: 32px;
  border: none;
  display: flex;
  background: transparent; 
  align-items: center; 
  justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
.audio-bar .play-btn svg { width: 14px; height: 14px; fill: #fff; }
.audio-icon { color: #64748b; display: flex; align-items: center; }

/* ── LAYOUT WRAPPER ── */
.article-wrapper {
  margin: 0 auto;
  background: #F5FAFF;
  padding:0  50px;
}

/* ── LEFT SIDEBAR (TOC) ── */
/* .sidebar-toc {
  position: sticky;
  padding-top: 60px;
  padding-bottom: 60px;
  top: 0px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.sidebar-toc::-webkit-scrollbar { width: 4px; }
.sidebar-toc::-webkit-scrollbar-track { background: transparent; }
.sidebar-toc::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 2px; }

.toc-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #009BFF;
  font-weight: 500;
  margin-bottom: 14px;
}
.toc-list { list-style: none; padding: 0; margin: 0 0 28px; }
.toc-list li { margin-bottom: 2px; }
.toc-list a {
  display: block;
  padding: 4px 6px;
  font-weight: 400;
  border-left: 1px solid #0096FF; 
  border-bottom: none; 
  font-size: 14px;
  color: #737373;
  margin-top: 10px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}
.toc-list a:hover,
.toc-list a.active {
  background: rgba(0, 155, 255, 0.21);
  color: #111111;
}
.toc-list a.active { 
  border-bottom: 1px solid #0096FF;
  padding: 10px 12px;
  border-left:none ; } */
#ez-toc-container {
     background: transparent!important; 
     border: none!important;
	 border-radius: none!important;
	 }
div#ez-toc-container .ez-toc-title {
	display:none;
}
#ez-toc-container a.ez-toc-toggle {
	display:none;
}
.ez-toc-container {
  position: sticky;
  padding-top: 60px;
  padding-bottom: 60px;
  top: 0px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: transparent;
  border: none;
}
.ez-toc-container::-webkit-scrollbar { width: 4px; }
.ez-toc-container::-webkit-scrollbar-track { background: transparent; }
.ez-toc-container::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 2px; }

.ez-toc-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #009BFF;
  font-weight: 500;
  margin-bottom: 14px;
}

.ez-toc-list { list-style: none; padding: 0; margin: 0 0 28px; }
.ez-toc-list li { margin-bottom: 2px; }

.ez-toc-list .ez-toc-link {
  display: block;
  padding: 4px 6px;
  font-weight: 400;
  border-left: 1px solid #0096FF;
  border-bottom: none;
  font-size: 14px;
  color: #737373;
  margin-top: 10px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}

.ez-toc-list .ez-toc-link:hover,
.ez-toc-list .ez-toc-link.active {
  background: rgba(0, 155, 255, 0.21);
  color: #111111;
}

.ez-toc-list .ez-toc-link.active {
  border-bottom: 1px solid #0096FF;
  padding: 10px 12px;
  border-left: none;
}

.share-label {
  font-size: 14px;
  font-weight: 400;
  color: #111111;
  margin-bottom: 1px;
}
.share-icons { display: flex; padding-top: 20px; align-items: center; gap: 10px; flex-wrap: wrap; }
.share-icons a {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: #141c2e;
  border: 1px solid #1e293b;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.share-icons a:hover { border-color: #3b82f6; background: rgba(59,130,246,0.15); }
.share-icons svg { width: 15px; height: 15px; fill: #64748b; }

/* ── MAIN CONTENT ── */
.article-content{
  padding-top: 60px;
  padding-bottom: 60px;
  color: #111111;
}
.article-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 32px 0 18px;
  
}
.article-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 40px 0 14px;
}
.article-content p { margin-bottom: 18px; }
.article-content ul { padding-left: 20px; margin-bottom: 18px; }
.article-content ul li { margin-bottom: 6px;}

.stat-card {

  border: 1px solid #1e293b;
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.stat-card p { margin: 0; font-size: 14px; color: #64748b; }
.stat-card strong { color: #3b82f6; }

.source-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1e2d45;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 14px;
}

.article-img {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin: 20px 0;
  background: #141c2e;
  border: 1px solid #1e293b;
  min-height: 220px;
  object-fit: cover;
}
/* Placeholder image fallback */
.img-placeholder {
  width: 100%;
  min-height: 240px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0f1f3d 0%, #1a3a6e 100%);
  border: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.img-placeholder svg { width: 64px; height: 64px; opacity: 0.3; }

/* ── RIGHT SIDEBAR (Author + Insights) ── */
.sidebar-right {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 60px;
  position: sticky;
  top: 0px;
  overflow-y: auto;
}
.sidebar-right::-webkit-scrollbar { width: 4px; }
.sidebar-right::-webkit-scrollbar-track { background: transparent; }
.sidebar-right::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 2px; }



.insights-label {
  font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #009BFF;
    font-weight: 500;
    margin-bottom: 14px;
    margin-top: 60px;
}
.insight-card {
  padding: 14px 0;
  display: block;
  text-decoration: none;
  transition: background 0.1s;
}
.insight-card:last-child { border-bottom: none; }
.insight-thumb {
  width: 72px; height: 54px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: cover;
}
.insight-thumb-placeholder svg { width: 22px; height: 22px; opacity: 0.3; }
.insight-info { flex: 1; min-width: 0; }
.insight-title {
  font-size: 16px;
  font-weight: 400;
  color: #111111;
  line-height: 1.4;
  margin: 6px 0 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar-right .post-meta-row  {
  margin-top: 4px;
}
.insight-thumb-placeholder img{
      width: -webkit-fill-available;
}
/* ── DIVIDER ── */
hr.sc-divider { border-color: #1e293b; margin: 32px 0; }
.blg-faq{
  display: block;
	height:550px;
}
.blg-ttl{
  position: inherit;
}
.blg-ttl .eyebrow-tag{
      text-align: center;
      display: block;
      width: max-content;
}
.blg-ttl h2{
  text-align: center;
  padding-bottom: 50px;
}

.contact-wrapper {
  position: relative;
  background: url('/wp-content/uploads/2026/06/secucenter-landing.webp');
  background-size: cover;
  background-position: center;
  padding: 0;
  position: relative;
}



/* ── Inner content ── */
.contact-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0;
}



.contact-hero-heading {
  font-size: 80px;
  font-weight: 400;
  color: transparent;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.85) 1px, transparent 1px);
  background-size: 4px 4px;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  display: inline-block;
}



.contact-hero-body {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
  color: #ABABAB;
  padding-right: 80px;
  margin-bottom: 40px;
}

/* ── Active Incident card ── */
.contact-incident-card {
  margin-right: 80px;
  background: 
    rgba(224, 49, 49, 0.16);
border: 1px solid rgba(224, 49, 49, 0.45);
border-top: 2px solid rgba(224, 49, 49, 1);
  padding: 20px 30px 22px;
  max-width: 100%;
}

.contact-incident-badge {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 154, 154, 1);
}

.contact-incident-badge-dot {
  display: none;

  flex-shrink: 0;
}


.contact-incident-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin: 10px 0 6px 0;
}

.contact-incident-body {
  font-size: 14px;
  color: rgba(154, 164, 182, 1);
  line-height: 1.55;
  margin: 0;
}
.btn-dangers{
background: #ee5120;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact-incident-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.contact-btn-expert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c0192a;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 5px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.contact-btn-expert:hover {
  background: #a01020;
  color: #fff;
}

.contact-btn-expert svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.contact-incident-note {
  font-size: 12px;
  color: rgba(154, 164, 182, 1);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
}



/* ── RIGHT COLUMN — Form panel ── */
.contact-form-panel {
  background: #151515;

  padding: 60px 40px;
  backdrop-filter: blur(90px);
 
    box-shadow: 0px 4px 160.8px rgba(0, 155, 255, 0.34);
}

/* Form labels */
.contact-form-label {
  font-size: 11.5px;
  font-weight: 500;
  color: #8898aa;
  margin-bottom: 5px;
  display: block;
  letter-spacing: 0.01em;
}



/* Submit button */
.contact-btn-submit {
  width: 100%;
  background: #2563eb;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 6px;
  padding: 12px;
  cursor: pointer;
  margin-top: 6px;
  letter-spacing: 0.02em;
  transition: background 0.2s, box-shadow 0.2s;
}

.contact-btn-submit:hover {
  background: #1d4ed8;
  box-shadow: 0 0 18px rgba(37,99,235,0.35);
}

/* Privacy note */
.contact-privacy-note {
  font-size: 12px;
  color: #676767;
  font-weight: 400;
  line-height: 1.55;
  margin-top: 14px;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.contact-privacy-note a{
  font-size: 12px;
  color: #3B82F6;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
}

.contact-privacy-note svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #4a5a6a;
}
.contact-stats .stat-num{
  font-size: 70px;
}
.contact-stats .stat-label{
  font-size: 20px
}
.contact-eyebrow{
display: inline-block;
margin: 0 auto 26px;
padding: 8px 18px;
border-radius: 2px;
background: none;
color: rgba(0, 155, 255, 1);
font-size: 12px;
font-weight: 500;
letter-spacing: 3px;
text-transform: uppercase;
}
.contact-outcomes .section-2{
border-bottom: none;
}

.section-16 {
padding-top: 80px;
border-right: 1px solid #313131;
  border-left: 1px solid #313131;
  border-bottom: 1px solid #313131;
}

.gp-section {
position: relative;
width: 100%;
overflow: hidden;
background: #000;
padding-bottom: 0;
}

/* ── Top info bar ── */
.gp-header {
padding: 0 50px 50px 50px;
position: relative;
z-index: 10;
border-bottom: 1px dashed #363636;
}

.gp-eyebrow {
  display: inline-block;
  margin: 0 auto 26px;
  font-family: "JetBrains Mono", monospace;
  padding: 6px 18px;
  border-radius: 2px;
  background: none;
  color: rgba(0, 155, 255, 1);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.gp-title {
font-size: 42px;
font-weight: 500;
color: #fff;
letter-spacing: -0.01em;
margin-bottom: 0;
}

/* ── Offices row ── */
.gp-offices {
display: flex;
gap: 0;
position: relative;
z-index: 10;
padding: 0 50px;
justify-content: space-between;
}

.gp-office-card {
flex: 1;
max-width: 340px;
padding: 28px 32px;
border-radius: 4px;
cursor: pointer;
transition: background 0.25s, border-color 0.25s;
margin-right: 24px;
}

.gp-office-card:hover {
background: #141414;
border-color: rgba(79,195,247,0.3);
}

.gp-office-card.active {
background: #141414;
border-color: rgba(79,195,247,0.45);
}

.gp-office-title {
font-size: 20px;
font-weight: 600;
color: #fff;
margin-bottom: 14px;
}

.gp-office-addr {
font-size: 18px;
color: #9AA4B6;
font-weight: 400;
line-height: 1.65;
margin-bottom: 10px;
}

.gp-office-phone {
font-size: 20px;
color: #E8ECF4;
font-weight: 600;
display: flex;
align-items: center;
gap: 7px;
}

.gp-office-phone svg {
width: 13px;
height: 13px;
flex-shrink: 0;
}

/* ── Divider line ── */
.gp-divider {
margin: 0 80px;
border: none;
border-top: 1px dashed rgba(255,255,255,0.12);
position: relative;
z-index: 10;
margin-top: 32px;
}

/* ── Globe stage ── */
.gp-globe-stage {
position: relative;
width: 100%;
height: 520px;
overflow: hidden;
background: url('/wp-content/uploads/2026/06/secucenter-landing.webp');
background-size: cover;
background-position: center;
border-top:1px solid #313131;
}

/* Radial glow behind globe */
.gp-glow {
position: absolute;
bottom: -200px;
left: 50%;
transform: translateX(-50%);
width: 900px;
height: 900px;
border-radius: 50%;
background: radial-gradient(circle at 50% 40%, rgba(10,60,120,0.6) 0%, rgba(5,30,70,0.35) 45%, transparent 70%);
pointer-events: none;
z-index: 1;
}

/* Rim arc – simulates half-sphere edge */
.gp-rim {
position: absolute;
bottom: -320px;
left: 50%;
transform: translateX(-50%);
width: 880px;
height: 880px;
border-radius: 50%;
border: 1px solid rgba(79,195,247,0.12);
box-shadow:
  0 0 60px 2px rgba(79,195,247,0.08),
  inset 0 0 60px 2px rgba(79,195,247,0.04);
pointer-events: none;
z-index: 2;
}

/* Dot-map container – positioned as if the globe is centered below viewport */
.gp-map-wrap {
position: absolute;
bottom: -90%;
left: 50%;
transform: translateX(-50%);
width: 860px;
height: 860px;
border-radius: 50%;
overflow: hidden;
background: radial-gradient(
      circle,
      #020202f2 0%,
      #000000e0 100%
  );

  /* Inner Shadow */
  box-shadow:
      inset 0 0 190.96px 34.1px rgba(59, 130, 246, 0.34),
      0 0 194.37px -20px #3b82f69c;
z-index: 3;
}

/* Inner scroll track — wider than the wrap so the map can pan */
.gp-map-track {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
will-change: transform;
}

.gp-map-img {
position: absolute;
top: 50%;
left: 50%;
/* default centre – JS will animate translateX offset */
transform: translate(-50%, -50%);
width: auto;
height: auto;
opacity: 0.85;
filter: brightness(0.9);
pointer-events: none;
user-select: none;
will-change: transform;
}

/* Dark radial vignette on the sphere */
.gp-sphere-vignette {
position: absolute;
inset: 0;
border-radius: 50%;
background:
  radial-gradient(circle at 50% 50%, transparent 45%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,0.85) 100%);
pointer-events: none;
z-index: 4;
}

/* ── Location pins ── */
.gp-pin-layer {
position: absolute;
/* Same positioning as the map wrap but NOT clipped */
bottom: -220px;
left: 50%;
transform: translateX(-50%);
width: 860px;
height: 860px;
z-index: 6;
pointer-events: none;
}

.gp-pin {
position: absolute;
pointer-events: all;
cursor: pointer;
transform: translate(-50%, -50%);
}



.gp-pin:hover .gp-pin-dot,
.gp-pin.active .gp-pin-dot {
opacity: 1;
transform: scale(1);
}


.gp-pin:hover .gp-pin-ring,
.gp-pin.active .gp-pin-ring {
opacity: 1;
}

@keyframes pinPulse {
0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
100% { transform: translate(-50%,-50%) scale(2.4); opacity: 0; }
}

/* ── Pop-up tooltip ── */
.gp-tooltip {
position: absolute;
padding: 22px 26px 26px;
width: 290px;
height: 148px;
/* border-radius: 6px;
padding: 14px 18px;
min-width: 180px; */
pointer-events: none;
font-size: 23p;
color: white;
font-weight: 700;
  opacity: 0;
transform: translateY(6px);
transition: opacity 0.2s, transform 0.2s;
white-space: nowrap;
z-index: 7;
bottom: calc(100% + 14px);
left: 50%;
transform: translateX(-50%) translateY(6px);

}

/* .gp-pin:hover .gp-tooltip,
.gp-pin.active .gp-tooltip {
opacity: 1;
transform: translateX(-15%) translateY(0);
bottom: calc(-100% - 920px) !important;
} */
.gp-pin.active#pin-usa .gp-tooltip {
opacity: 1;
transform: translateX(-90%) translateY(0);
bottom: calc(-100% - 820px) !important;
background:url('/wp-content/uploads/2026/06/us-back.webp')!important ;
}
.gp-pin.active#pin-india .gp-tooltip {
opacity: 1;
transform: translateX(18%) translateY(0);
bottom: calc(-100% - 710px) !important;
background:url('/wp-content/uploads/2026/06/ind-back.webp') !important;
}




.gp-tooltip-title {
font-size: 23px;
font-weight: 700;
color: white;
letter-spacing: 0.05em;
margin-bottom: 6px;
}





/* Fade gradient at bottom so section blends */
.gp-fade-bottom {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 80px;
background: linear-gradient(to bottom, transparent, #000);
z-index: 8;
pointer-events: none;
}
.sc-contact-cta{
background: black;
}
.sc-contact-cta p{
font-size: 18px;
font-weight: 300;
color: #FFFFFF;
}

.thank-wrapper {
position: relative;
background: url('/wp-content/uploads/2026/06/secucenter-landing.webp');
background-size: cover;
background-position: center;
padding: 0;
position: relative;
}



/* ── Inner content ── */
.thank-inner {
position: relative;
z-index: 1;
width: 100%;
padding: 80px 0;
}


.thank-section{
margin: 0 auto;
  display: block;
  width: max-content;
}
.thank-hero-heading {
font-size: 208px;
font-weight: 400;
color: transparent;
background-image: radial-gradient(circle, rgba(255, 255, 255, 0.85) 1px, transparent 1px);
background-size: 4px 4px;
-webkit-background-clip: text;
background-clip: text;
margin: 0;
display: inline-block;
}



.thank-hero-body {
font-size: 20px;
line-height: 1.7;
font-weight: 300;
color: #C6C6C6;
padding-right: 80px;
margin-bottom: 40px;
}
.thank-hero-body a{
font-size: 18px;
font-weight: 600;
color: #ffffff;
text-decoration: none;
}

.access-wrapper {
position: relative;
background: url('/wp-content/uploads/2026/06/secucenter-landing.webp');
background-size: cover;
background-position: center;
padding: 0;
position: relative;
}



/* ── Inner content ── */
.access-inner {
position: relative;
z-index: 1;
width: 100%;
padding: 80px 0;
}


.access-section{
margin: 0 auto;
  display: block;
  width: max-content;
}
.access-hero-heading {
font-size: 208px;
font-weight: 400;
text-align: center;
color: transparent;
background-image: radial-gradient(circle, rgba(255, 255, 255, 0.85) 1px, transparent 1px);
background-size: 4px 4px;
-webkit-background-clip: text;
background-clip: text;
margin: 0;
display: inline-block;
}



.access-hero-body {
font-size: 20px;
line-height: 1.7;
text-align: center;
font-weight: 300;
color: #C6C6C6;
padding-right: 80px;
margin-bottom: 40px;
}
.access-hero-body a{
font-size: 18px;
font-weight: 600;
color: #ffffff;
text-decoration: none;
}

.about-hero{
  background: url('/wp-content/uploads/2026/06/secucenter-landing.webp');
  background-size: cover;
  background-position: center;
}

.about-hero-reveal {
  position: absolute;
  inset: -6%;
  z-index: 2;
  background: url("/wp-content/uploads/2026/06/abt-logo-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: -webkit-mask-position, mask-position, opacity;
  pointer-events: none;

  /* ...but the mask is what limits it to a circle around the cursor */
  --spot: 175px; /* flashlight radius */
  --mx: 50%; /* cursor X (set by JS, in px) */
  --my: 50%; /* cursor Y (set by JS, in px) */
  --mask: radial-gradient(
    circle var(--spot) at var(--mx) var(--my),
    #000 0%,
    #000 55%,
    rgba(0, 0, 0, 0.25) 78%,
    transparent 100%
  );
  -webkit-mask-image: var(--mask);
  mask-image: var(--mask);
}

.abt-hero-img.is-revealing .about-hero-reveal {
  opacity: 1;
}

.about-hero-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 18, 0.3), rgba(2, 6, 18, 0.5));
}

.abt-img-cnt {
  /* remove transition — rAF owns opacity and transform */
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.abt-hero-img.is-revealed .about-hero-reveal {
  opacity: 1;
  transform: translateY(0);
}



.about-hero h1{
     font-size:62px;
     color: white;
     font-weight: 500;
}
.about-hero span{
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 69px;
  line-height: 1;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 14px;
  color: transparent;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 38%, transparent 42%);
  background-size: 5px 5px;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(31, 111, 255, 0.15));
}
.about-hero p{
    color:rgba(255, 255, 255, 0.86);
    font-size: 18px;
    font-weight: 400;
}
.abt-hero-btns{
      display: flex;
      gap: 20px;
}

.abt-hero-btns a{
  text-decoration: none;
  font-size: 15px;
  border-radius: 4px;
}
.abt-btn1{
  background: rgba(173, 173, 173, 0.1);
  color: #fff;
  border: 1px solid rgba(106, 106, 106, 1);
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.abt-hero-img img{
  display: block;
  width: -webkit-fill-available;
  margin: auto;
  padding: 50px;
}


.about-story{
  background: url('/wp-content/uploads/2026/06/secucenter-landing.webp');
  background-size: cover;
  background-position: center;
}





.founding-section {
  background-color: #f6f9fc;
  padding: 100px 0 120px;
}

/* ---- Eyebrow label ---- */
.founding-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #1f6fff;
  margin-bottom: 18px;
}

/* ---- Heading ---- */
.founding-heading {
  text-align: center;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.25;
  color: #0d1b2a;
  max-width: 620px;
  margin: 0 auto 90px;
}

/* ---- Timeline wrapper ---- */
.founding-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

/* Center dotted vertical line */
.founding-timeline-line {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 0;
  border-left: 2px solid #009bff3d;
  transform: translateX(-50%);
  z-index: 0;
}

/* ---- Each row ---- */
.founding-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
  z-index: 1;
}

.founding-item:last-child {
  margin-bottom: 0;
}

/* Left-aligned items: content sits in left column, right column empty */
.founding-item--left .founding-item__content {
  text-align: right;
  padding-right: 50px;
}

.founding-item--left .founding-item__col--spacer {
  text-align: left;
}

/* Right-aligned items: content sits in right column, left column empty */
.founding-item--right .founding-item__content {
  text-align: left;
  padding-left: 50px;
}

.founding-item__col {
  width: 50%;
}

/* ---- Dot / connector marker on the center line ---- */
.founding-item__marker {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 17px;
  height: 17px;
  background-color: #33abff;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(31, 111, 255, 0.4);
  border: 3px solid white;
}

.founding-item--right .founding-item__marker {
  top: 30px;
}

/* ---- Year label ---- */
.founding-item__year {
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0px;
  color: #33abff;
  margin-bottom: 10px;
}

/* ---- Title ---- */
.founding-item__title {
  font-weight: 600;
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 8px;
}

/* ---- Description ---- */
.founding-item__desc {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  color: #374151;
  max-width: 360px;
}

.founding-item--left .founding-item__desc {
  margin-left: auto;
}

.founding-item--right .founding-item__desc {
  margin-right: auto;
}

.team-section {
  position: relative;
  background-color: #FFFFFF;
  padding: 0 0 0 0;
}

/* ---- Top light-gray band behind the badge ---- */
.team-topband {
  background-color: #f6f9fc;
  border-bottom: 1px solid #e6ecf5;
}

.team-body {
  padding: 100px 0 0 0;
}

/* ---- Rotated diamond badge ---- */
.team-badge-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  height: 0;
}

.team-badge {
  position: absolute;
  top: -75px;
  width: 150px;
  height: 150px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.team-badge img{
  position: absolute;
  top: 0px;
  width: 150px;
  height: 150px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.team-badge video{
	    transform: rotate(315deg);
    width: 200px;
}
.infinity-logo {
  width: 58px;
  height: auto;
  position: absolute;
  transform: rotate(134deg);
  z-index: 10;
  display: block;
  overflow: visible;
}

.infinity-logo path {
  fill: none;
  stroke-linecap: butt;
}

.infinity-logo .ring-black {
  stroke: black;
}

.infinity-logo .ring-gray {
  stroke: #33caff;
}


/* .team-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.55) 1px,
    transparent 1.3px
  );
  background-size: 7px 7px;
  mix-blend-mode: overlay;
  opacity: 0.55;
} */

.team-badge__icon {
  transform: rotate(-45deg);
  width: 46px;
  height: 46px;
  position: relative;
  z-index: 2;
}

/* ---- Dashed grid guide lines (decorative) ---- */
.team-guideline {
  position: absolute;
  top: 95px;
  bottom: 0;
  width: 0;
  border-left: 1px dashed #cfdcf3;
  z-index: 0;
}

.team-guideline--1 {
  left: 50%;
}
.team-guideline--2 {
  left: calc(50% + 27.5%);
  display: none;
}

.team-guideline-bottom {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  border-top: 1px dashed #cfdcf3;
  z-index: 0;
}

/* ---- Content padding ---- */
.team-content {
  position: relative;
  padding: 90px 0 70px;
  z-index: 1;
}
.team-left {
  padding-right: 80px;
}
/* ---- Left column copy ---- */
.team-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #1f6fff;
  margin-bottom: 18px;
}

.team-heading {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 26px;
}

.team-copy {
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
  font-weight: 400;
  margin-bottom: 18px;
}

.team-copy:last-of-type {
  margin-bottom: 0;
}

/* ---- Dark cards grid ---- */
.team-card {
  background-color: #000000;
  border: 1px solid #E5E7EB;
  padding:20px 34px;
  height: 100%;
}

.team-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
}

.team-card__title {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 12px;
}

.team-card__desc {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #9CA3AF;
  margin: 0;
}
.teams-sub{
	padding-right:0!important;
	padding-left:0!important;
}
/* ---- Full width bottom card ---- */
.team-card--wide {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 34px 36px;
}

.team-card--wide .team-card__icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.team-card--wide .team-card__title {
  margin-bottom: 10px;
}

.team-card--wide .team-card__desc {
  max-width: 700px;
}

/* ---- Remove bootstrap gutters for tight card seams ---- */
.team-grid-row {
  --bs-gutter-x: 0;
}

.team-grid-col {
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.team-grid-col:nth-child(2n) {
  border-right: 0;
}


.about-service-section {
  background-color: #ffffff;
  padding: 0 0 100px;
}

.about-top{
  background: white;
  padding: 37px 0;
  position: sticky;
  top: 0;
}

.about-top .eyebrow{
  text-align: center;
  display: block;
}
.about-top h3{
    font-size: 40px;
    text-align: center;
    color: #0F172A;
    font-weight: 600;
}

.about-1 h4{
  font-size: 38px;
  color: #0F172A;
  font-weight: 600;
}

.about-1 p{
  font-size: 15px;
  color: #374151;
  font-weight: 400;
}
.about-1{
  position: sticky;
  top:200px;
  background:white;
}
.about-2{
  position: sticky;
  top:200px;
  z-index:10;
  background:white;
}
.about-3{
  position: sticky;
  top:200px;
  z-index:11;
  background:white;
}
.about-service-img img{
  border-radius: 9px;
 width:-webkit-fill-available;	
  border:  1px solid #E5EDF5;
  background: rgba(255, 255, 255, 0.002);

  box-shadow:
      0 7.18px 21.55px -10.77px rgba(5, 18, 40, 0.45),
      0 35.91px 71.82px -26.93px rgba(5, 18, 40, 0.60);
}
.about-ser{
  padding: 50px 0;
}
.about-left-cnt{
  max-width: 450px;
}
.links-box a{
    color: #061B31;
    font-size: 19px;
    font-weight: 400;
    border: 1px solid #E5EDF5;
    display: block;
    padding: 10px 20px;
    width: 100%;
    text-decoration: none;
}
.about-ser .btn-audit{
  margin-top: 40px;
}


.about-accordion {
  max-width: 480px;
  margin: 0 auto;
}


.about-accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #061B31;
  font-size: 19px;
  background: transparent;
  font-weight: 400;
  border: 1px solid #E5EDF5;
  padding: 10px 20px;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.about-accordion__header span{
  display: block;
  text-align: left;
}

.about-accordion__item--open .about-accordion__header {
  border-color: #c9d6f5;
  box-shadow: 0 4px 10px rgba(31, 111, 255, 0.08);
}

.about-accordion__chevron {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0;
  transition: transform 0.25s ease;
}

.about-accordion__chevron svg {
  display: block;
}

.about-accordion__chevron svg:first-child {
  margin-bottom: -4px;
}

.about-accordion__item--open .about-accordion__chevron {
  transform: rotate(180deg);
}

.about-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.about-accordion__panel a{
  padding: 10px 30px;
}





.mission-vision{
  background: url('/wp-content/uploads/2026/06/secucenter-landing.webp');
  background-size: cover;
  background-position: center;
}
.mission-reveal .sc-reveal-inner{
  text-align: left;
}

.vision-reveal .sc-reveal-inner{
  text-align: left;
}
.mission-vision .sc-reveal-line{
  font-size: 34px;
}
.mission-reveal, .vision-reveal{
  display: block;
}
.mission-reveal h3{
  font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 72px;
    text-align: left;
    line-height: 1;
    letter-spacing: -2px;
    display: block;
    margin-bottom: 14px;
    color: transparent;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 38%, transparent 42%);
    background-size: 5px 5px;
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(31, 111, 255, 0.15));
}
.vision-reveal h3{
  font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 72px;
    text-align: right;
    line-height: 1;
    letter-spacing: -2px;
    display: block;
    margin-bottom: 14px;
    color: transparent;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 38%, transparent 42%);
    background-size: 5px 5px;
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(31, 111, 255, 0.15));
}








.service-problems {
/*   padding: 90px 0 80px; */
  background-color: #ffffff;
}

.service-problems__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3E9AE0;
  margin-bottom: 16px;
  font-family: "Courier New", monospace;
}

.service-problems__title {
  font-size: 39px;
  font-weight: 600;
  line-height: 1.25;
  color: #080808;
  margin-bottom: 18px;
}

.service-problems__subtitle {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #50617A;
  margin-bottom: 0;
}

/* Grid wrapper */
.service-problems__grid {
  margin-top: 50px;
  border-top: 1px dashed #CBD5E1;
  border-bottom: 1px dashed #CBD5E1;
}

.service-problems__item {
  padding: 40px 35px;
}

.service-problems__number {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 51px;
  line-height: 1;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 14px;
  color: transparent;
  background-image: radial-gradient(circle, rgba(230, 30, 21, 1) 38%, transparent 42%);
  background-size: 5px 5px;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(31, 111, 255, 0.15));
}

.service-problems__item-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 10px;
}

.service-problems__item-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #425466;
  margin-bottom: 0;
}


.about-service {
/*   padding: 100px 0; */
  background-color: #f6f9fc;
}



.about-service__title {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.25;
  color: #0A2540;
  margin-bottom: 40px;
}

.about-service__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
}

.about-service__item:last-child {
  margin-bottom: 0;
}

.about-service__icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #D6EFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.about-service__icon svg {
  width: 18px;
  height: 18px;
}

.about-service__item-title {
  font-size: 16px;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 6px;
}

.about-service__item-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #425466;
  margin-bottom: 0;
}

.about-service__visual {
  position: relative;
}

.about-service__image-wrap {
  position: relative;
  border-radius: 14px;
}

.about-service__image {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 40px 70px -20px rgba(10, 37, 64, 0.35);
}
.section-17 {
  padding: 50px 50px;
  border-right: 1px solid #e5edf5;
  border-left: 1px solid #e5edf5;
  border-bottom: none;
}


.service-components {
/*   padding: 100px 0; */
  background-color: #f6f9fc;
}



.service-components__title {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.25;
  color: #0A2540;
  margin-bottom: 18px;
}

.service-components__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #425466;
  max-width: 650px;
  margin-bottom: 0;
}

.service-components__grid {
  margin-top: 50px!important;
}

.service-components__card {
  background-color: #ffffff;
  border: 1px solid #E3E8EE;
  border-radius: 4px;
  padding: 28px 24px;
  height: 100%;
}

.service-components__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: #EAF7FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-components__icon svg {
  width: 20px;
  height: 20px;
}

.service-components__card-title {
  font-size: 16px;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 8px;
}

.service-components__card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #425466;
  margin-bottom: 0;
}
.services-outcomes .stats-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.compliance {
  padding: 100px 0;
  background-color: #05070C;
  text-align: center;
}



.compliance__title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 18px;
}

.compliance__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #999999;
  margin: 0 auto;
}

/* Grid wrapper */
.compliance__grid {
  margin-top: 60px!important;
}

.compliance__item {
  padding: 50px 30px;
  text-align: center;
  border:1px dashed rgba(49, 49, 49, 1);
}

.compliance__icon {
  width: 81px;
  height: 70px;
  margin: 0 auto 22px;
  display: block;
}

.compliance__item-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.compliance__item-desc {
  font-size: 12px;
  font-weight: 400;
  color: #6C6E7F;
  margin-bottom: 0;
}


.service-inner-hero{
  background: url('/wp-content/uploads/2026/06/service-inner-bg.webp');
  background-size: cover;
  background-position: center;
}





.service-inner-hero h1{
     font-size:62px;
     color: rgba(255, 255, 255, 0.62);
     font-weight: 700;
}
.service-inner-hero span{
  color: #fff;
}
.service-inner-hero p{
    color:rgba(255, 255, 255, 0.86);
    font-size: 18px;
    font-weight: 400;
}
.srv-hero-section {
  padding: 100px 0;
}
.srv-padding{
	padding-right:0;
}
.srv-hero-btns a{
  text-decoration: none;
  font-size: 15px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 1);
  color: rgba(18, 81, 207, 1);
  border: 1px solid rgba(106, 106, 106, 1);
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 15px;
  margin-top: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.srv-hero-dash-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #d7dbe37a 0, #d7dbe321 4px, transparent 4px, transparent 10px);
    z-index: 1;
}
.srv-hero-dash-top{
	top: 20%;
}
.srv-hero-dash-v {
    position: absolute;
    top: 0;
	display:none;
    bottom: -1px;
    width: 1px;
    background: #d7dbe37a;
    z-index: 1;
}
.srv-hero-dash-bottom{
	right: 45%;
}
.srv-hero-img img{
  display: block;
  width: -webkit-fill-available;
  margin: auto;
  border: 2px solid rgb(255 255 255 / 42%);
}
.security-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin: 20px auto;
	justify-content:center;
	max-width:700px;
}
.srv-hero-cnt{
	text-align:center;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.check-icon {
  width: 16px;
  height: 16px;
  min-width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: rgba(0, 155, 255, 1)!important;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.serv-tl-row{
  height: 68px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.socsvc-comparison {
  position: relative;
/*   padding: 0 0 100px; */
  background: #05080d;
  overflow: hidden;
}



.socsvc-header {
  margin-bottom: 50px;
}
.socsvc-table{
  box-shadow: 0 4px 141px -16px rgba(0, 155, 255, 0.34);
}


.socsvc-title {
  margin: 0 0 15px;
  color: #fff;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 600;
}

.socsvc-desc {
  margin: 0;
  color: rgba(153, 153, 153, 1);
  font-size: 16px;
  font-weight: 500;
}

/* .socsvc-table {
  border: 1px solid rgba(255,255,255,.08);
} */

.socsvc-head,
.socsvc-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
}

.socsvc-head div {
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.66px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.socsvc-head div:last-child {
  background: rgba(213, 239, 255, 1);
  color: rgba(0, 155, 255, 1);
}

.socsvc-row > div {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(49, 49, 49, 1);
  background: rgba(21, 21, 21, 1);
}

.socsvc-row:last-child > div {
  border-bottom: 0;
}

.socsvc-row > div:first-child {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.socsvc-negative {
  color: rgba(115, 125, 140, 1);
  font-size: 14px;
  font-weight: 400;
}

.socsvc-positive {
  background: rgba(234, 247, 255, 1)!important;
  color: rgba(10, 37, 64, 1);
  font-size: 14px;
}
.socsvc-positive span{
color:rgba(46, 194, 126, 1);
}




.contact-sec {
    position: relative;
    padding: 0 0 0 0;
  }
 
  .contact-sec__frame {
    position: relative;
    margin: 0 auto;
  }
 
  .contact-sec__dash-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #d7dbe3 0, #d7dbe3 4px, transparent 4px, transparent 10px);
    z-index: 1;
  }
 
  .contact-sec__dash-h--top { top: 53%; }
  .contact-sec__dash-h--bottom { bottom: 23px; }
 
  .contact-sec__dash-v {
    position: absolute;
    top: 0;
    bottom: -325px;
    width: 1px;
    background-image: repeating-linear-gradient(to bottom, #d7dbe3 0, #d7dbe3 4px, transparent 4px, transparent 10px);
    z-index: 1;
  }
 
  .contact-sec__dash-v--left { left: 0; }
  .contact-sec__dash-v--center { left: 55.8%; }
  .contact-sec__dash-v--right { right: 15.3%; }
 
  .contact-sec__inner {
    padding: 82px 36px 0 36px;
  }
.disable-cursor{
	pointer-events: none;
  cursor: not-allowed;
}

  /* ============ LEFT COLUMN ============ */
 
  .contact-info {
    padding: 24px 120px 24px 0;
  }
 
  .contact-info__title {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 0.98;
    letter-spacing: -1px;
    margin: 0 0 20px;
    color: transparent;
    background-image: radial-gradient(circle, rgb(17 18 22) 38%, #0000001f 42%);
    background-size: 4px 4px;
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.02));
  }
 
  .contact-info__desc {
    font-size: 16px;
	 font-weight:400; 
    line-height: 1.6;
    color: #595959;
    margin: 0 0 24px 0;
  }
 
  .contact-info__follow-label {
    font-size: 17px;
    color: #B3B3B3;
    margin-bottom: 10px;
  }
 
  .contact-info__social {
    display: flex;
    gap: 10px;
    margin: 40px 0;
  }
 
 
  .contact-card {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: rgba(214, 239, 255, 0.5);
    padding: 20px 18px;
    margin-bottom: 10px;
	  border: 1px solid rgba(62, 179, 255, 0.21);
  }
 

 
  .contact-card__label {
    font-size: 16px;
    letter-spacing: 0.5px;
	 font-weight:400; 
    color: #425466;
    margin: 0 0 2px 0;
    text-transform: uppercase;
  }
 
  .contact-card__value {
    font-size: 20px;
    font-weight: 600;
    color: #0A2540;
    margin: 0;
  }
 
  .office-row {
    display: flex;
    gap: 12px;
    margin-top: 4px;
  }
 
  .office-card {
    flex: 1;
    background-color: rgba(214, 239, 255, 0.5);
    padding: 20px 20px;
	border: 1px solid rgba(62, 179, 255, 0.21);
  }
 
  .office-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #0A2540;
    margin: 0 0 8px 0;
  }
 
  .office-card__addr {
    font-size: 16px;
    color: #425466;
    line-height: 1.5;
    margin: 0;
  }
 
  /* ============ RIGHT COLUMN - FORM ============ */
 
  .contact-form-wrap {
       padding: 40px 24px 40px 24px;
  background: #151515;
    position: relative;
    z-index: 1;

  }
 
  .contact-form {
    background-color: #14161b;
    border-radius: 16px;
    padding: 32px 32px 26px 32px;
  }
 
  .contact-form__row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
  }
 
  .contact-form__group {
    flex: 1;
    min-width: 0;
  }
 
  .contact-form__label {
    display: block;
    font-size: 12.5px;
    color: #d2d5db;
    margin-bottom: 6px;
  }
 
  .contact-form__label .contact-form__req {
    color: #ff5b6b;
    margin-left: 2px;
  }
 
  
 
  .contact-form__privacy {
    display: flex;
    gap: 6px;
    font-size: 11px;
    color: #8d9099;
    line-height: 1.5;
    margin-top: 12px;
  }
 
  .contact-form__privacy strong {
    color: #cfd2da;
  }
 
  .contact-form__privacy i {
    margin-top: 2px;
  }
 
  /* ============ FOOTER ============ */
 
  .site-footer {
    margin: 0 auto;
    padding: 56px 36px 0px 36px;
  }
 
  .footer-col__heading {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.74px;
    color: rgba(6, 27, 49, 0.47);
    text-transform: uppercase;
    margin-bottom: 16px;
  }
 
  .footer-col__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
 
  .footer-col__list li {
    margin-bottom: 16px;
  }
 
  .footer-col__list a {
    font-size: 14px;
	   font-family: 'outfit', sans-serif;
	  font-weight:400;
	  display:flex;
	  text-decoration:none;
    color: #1251CF;
	  transition: 0.5s ease;
  }
.ftr-arr{
	display:none;
	transition: 0.5s ease;
}
.ftr-resource{
	padding-left:50px;
}
  .footer-col__list a:hover .ftr-arr {
    display:block!important;
	  margin-left:3px;
  }
  .footer-col__list a:hover  {
   padding-left:4px;
  }
 

 
  .footer-newsletter__title {
    font-size: 24px;
    font-weight: 500;
    color: #0A2540;
    margin-bottom: 14px;
  }
 
  .footer-newsletter__form {
    display: flex;
    margin-bottom: 10px;
	gap:14px;  
  }
 
  .footer-newsletter__input {
    flex: 1;
    background-color: #EFEFEF;
    border: 1px solid grey;
    border-radius: 4px;
    padding: 11px 14px;
    font-size: 13px;
	 font-weight:400; 
    color: #838383;
    outline: none;
  }
 
  .footer-newsletter__input::placeholder {
    color: #838383;
  }
 
  .footer-newsletter__btn {
    background-color: #2b5cf6;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
  }
 
  .footer-newsletter__fine {
    font-size: 14px;
    color: #7F7F7F;
	  font-weight:400;
    line-height: 18px;
 
  }
 
  .footer-newsletter__fine a {
	  color: #7F7F7F;
    text-decoration: underline;
  }
 
  .footer-badge {
    margin-top: 100px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid #c7cbd3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
 
  .footer-badge__inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1.5px dashed #c7cbd3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
.ftr-newsletter{
	margin-top:-75px!important;
/* 	margin-top:-154px!important; */
	padding-right: 60px !important;
}
  .footer-badge__iso {
    font-size: 9px;
    font-weight: 700;
    color: #9097a3;
    letter-spacing: 0.5px;
  }
 
  .footer-badge__num {
    font-size: 13px;
    font-weight: 800;
    color: #5b6373;
  }
 
  .footer-badge__cert {
    font-size: 6.5px;
    color: #9097a3;
    letter-spacing: 0.5px;
  }
 
  /* ============ WATERMARK ============ */
 
  .footer-watermark {
    margin-top: 10px;
	  position:relative;
	  opacity:80%;
    overflow: hidden;
    text-align: center;
    line-height: 1;
  }
 
  .footer-watermark__text {
    font-family: 'outfit', sans-serif;
   font-weight: 600;
    font-size: 325px;
	  margin-bottom: -40px;
    letter-spacing: 6px;
    line-height: 1;
    text-align: center;
    background-image: radial-gradient(circle, #d7dade 1.3px, transparent 1.5px);
    background-size: 5px 5px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
  }
.footer-watermark::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(
        to top,
        #fff 0%,
        rgba(255,255,255,0) 100%
    );
    pointer-events: none;
}


.service-btn2{
	display:none;
	transition: ease 0.3s;
}
.srv-btn2:hover .service-btn1{
	display:none;
}
.srv-btn2:hover .service-btn2{
	display:block;
	margin-left:1px;
}

 
/* ---------------------------------------------------
   Shared feature checklist
--------------------------------------------------- */
.svc-benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
 
.svc-benefit-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}
 
.svc-benefit-list__item:last-child {
  margin-bottom: 0;
}
 
.svc-benefit-list__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: #DBF3FF;
  color: #45B2E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}
 
.svc-benefit-list__copy {
  display: flex;
  flex-direction: column;
}
 
.svc-benefit-list__title {
  
  font-size: 15px;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 2px;
}
 
.svc-benefit-list__text {
  font-size: 14px;
  font-weight:400;
  line-height: 1.5;
  color: #425466;
}
 
/* ---------------------------------------------------
   Shared card grid / card
--------------------------------------------------- */
.svc-card-grid {
  row-gap: 32px;
}
 
.svc-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E1E1E1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
 
.svc-card__visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}
.svc-card__visual img{
	width:-webkit-fill-available;
}
.svc-card__shadow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
 
.svc-card__dashboard {
  position: relative;
  z-index: 2;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}
 
.svc-card__dashboard--back {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 38%;
  z-index: 1;
  opacity: 0.95;
}
 
.svc-card__dashboard--front {
  width: 78%;
  margin-left: auto;
}
 
.svc-card__text {
  font-size: 18px;
  line-height: 28px;
   font-weight: 400;
  color: #6b7280;
  padding: 24px 28px 0;
  flex: 1 0 auto;
}
 
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 19px;
  font-weight: 400;
  color: #1251CF;
  text-decoration: none;
  padding: 20px 28px 28px;
}
.svc-card__link img{
 width:26px;
height:26px;	
}
 
.svc-card__link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
 
.svc-card__link:hover i {
  transform: translateX(3px);
}
 
/* wide variant — Employer of Record card */
.svc-card--wide .svc-card__visual--wide {
  min-height: 280px;
  padding: 32px;
  justify-content: flex-start;
  gap: 24px;
}
 
.svc-card__dashboard--talent {
  position: relative;
  z-index: 2;
  width: 26%;
  border-radius: 14px;
}
 
.svc-card__dashboard--bench {
  position: relative;
  z-index: 2;
  width: 58%;
  margin-left: -6%;
  border-radius: 10px;
}
 
/* ---------------------------------------------------
   SECTION 1 — Managed Security Services
--------------------------------------------------- */
.svc-managed {
/*   padding: 80px 0 40px; */
}
 
.svc-managed__intro {
  margin-bottom: 8px;
}
 
.svc-managed__title {

  font-size: 39px;
  font-weight: 500;
  color: #080808;
  line-height: 1.25;
  margin-bottom: 16px;
}
 
.svc-managed__desc {
  font-size: 18px;
  line-height: 1.7;
  color: #425466;
  margin-bottom: 0;
}
 
/* ---------------------------------------------------
   SECTION 2 — Partner Services
--------------------------------------------------- */
.svc-partner {
  padding: 40px 0 80px;
}
 
.svc-partner__intro {
  margin-bottom: 8px;
}
 
.svc-partner__title {
  font-size: 39px;
    font-weight: 500;
    color: #080808;
    line-height: 1.25;
    margin-bottom: 16px;
}
 
.svc-partner__desc {
 font-size: 18px;
    line-height: 1.7;
    color: #425466;
    margin-bottom: 0;
}
.eye-subhead{
	margin:30px 0;
	color:#080808;
	font-size:39px;
	font-weight:500;
}
.svg-managed-title{
	font-size:78px!important;
}
.svc-card__link:hover .link-arr1{
	display:none;
}
.svc-card__link:hover .link-arr2{
	display:block;
	margin-left:6px;
}
.abt-service-btn{
	margin-top:30px;
}



.col-md-5-5 {
    width: 45.833333%!important;
}

.col-md-6-5 {
    width: 53.166667%!important;
}
.header-cta1{
	height: 20px;
    padding: 16px 20px;
}
.header-cta2{
	height: 20px;
    padding: 17px 20px;
}
.header-cta2 img{
	margin-top:0;
}

.author-section{
	background:#080808;
	
}
.author-section h3{
	font-size:40px;
	color:white;
	font-weight:500;	
}
.author-section h4{
	font-size:32px;
	color:#7D7D7D;
	font-weight:400;	
}
.author-section p{
	font-size:16px;
	color:#C8C8C8;
	font-weight:400;
	margin-top:40px;
}
.author-section .btn-black{
	background:rgba(173, 173, 173, 0.1);
	padding:13px 24px;
	 border: 1px solid rgba(106, 106, 106, 1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
	font-size:15px;
	font-weight:500;
	text-decoration:none;
	color:#FFFFFF;
	margin-top:40px;
	display:block;
	width:max-content;
	border-radius:4px;
}

.about-hero-dash-top{
    top: 13%;
}
.about-hero-dash-left{
    right: 45%;
}
.about-hero-dash-h{
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-image: repeating-linear-gradient(to right, #d7dbe37a 0, #d7dbe321 4px, transparent 4px, transparent 10px);
    z-index: 1;
}
.about-hero-dash-v {
    position: absolute;
    top: 0;
    bottom: 225px;
    width: 1px;
       background-image: repeating-linear-gradient(to bottom, #d7dbe37a 0, #d7dbe321 4px, transparent 4px, transparent 10px);
    z-index: 1;
}



@media (max-width: 767.98px) {
    .col-md-5-5,
    .col-md-6-5 {
        width: 100%!important;
    }
}










@media (max-width: 991px) {

  .socsvc-title {
      font-size: 42px;
  }

  .socsvc-head,
  .socsvc-row {
      grid-template-columns: 1fr;
  }

  .socsvc-head {
      display: none;
  }

  .socsvc-row {
      margin-bottom: 15px;
      border: 1px solid rgba(255,255,255,.08);
  }
}











/* ── Responsive tweaks ── */
@media (max-width: 767px) {
  .contact-inner {
    padding: 50px 0 60px;
  }

  .contact-hero-body {
    max-width: 100%;
  }

  .contact-incident-card {
    max-width: 100%;
    width: 100%;
    margin-bottom: 40px;
  }
}


/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .sidebar-toc, .sidebar-right {
    position: relative;
    top: auto;
    max-height: none;
  }
}










@media (max-width: 991px) {
  .newsroom-header h2 {
      font-size: 48px;
  }

  .newsroom-header {
      margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .newsroom-section {
      padding: 70px 0;
  }

  .newsroom-header h2 {
      font-size: 38px;
  }

  .news-card h3 {
      font-size: 22px;
  }
}


@media (max-width: 767px) {
  .subscribe-section {
      text-align: center;
  }

  .subscribe-content {
      margin-bottom: 30px;
  }

  .subscribe-content h4 {
      font-size: 38px;
  }

  .subscribe-form {
      flex-direction: column;
  }

  .subscribe-form button {
      width: 100%;
      justify-content: center;
  }
}


/* ── Responsive ── */
@media (max-width: 767px) {
  .fi-post__thumb { margin-top: 20px; }
  .fi-post--featured .fi-post__thumb { aspect-ratio: 16 / 9; }
}

/* ── responsive ── */
@media (max-width: 1100px) {
  .intel-filter-inner,
  .post-listing-wrap {
    padding: 0 40px;
  }
}
@media (max-width: 991px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 28px;
  }
  .intel-filter-inner,
  .post-listing-wrap {
    padding: 0 24px;
  }
}
@media (max-width: 640px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
  .intel-category-tabs {
    gap: 4px;
    padding: 8px 16px;
  }
  .intel-search-wrap {
    padding: 10px 16px 10px 0;
  }
  .intel-search-wrap input {
    width: 140px;
  }
}

/* ===== responsive fallback for the tree ===== */
@media (max-width: 991.98px) {
  .tree {
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 22px;
    padding-top: 54px;
  }
  .tree-lines {
    display: none;
  }
  .ind-card {
    position: static;
    width: auto;
    transform: none;
  }
  .spine {
    height: 40px;
  }
}
@media (max-width: 575.98px) {
  .tree {
    grid-template-columns: 1fr;
  }
  .timeline {
    overflow-x: auto;
  }
  .tl-rows,
  .tl-axis,
  .tl-grid,
  .tl-now {
    min-width: 680px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-text .word {
    color: rgba(246, 246, 249, 1);
  }
}
/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 640px;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .big-number {
    font-size: 90px;
    letter-spacing: 3px;
  }
  .overlay-label {
    font-size: 26px;
  }
  .story-copy .lead-grey,
  .story-copy .lead-white {
    font-size: 22px;
  }
  .tl-now {
    width: 1.5px!important;
    min-width: 1px!important;
    left:0;
  }
  .tl-row {
    margin: 14px 0;
  }
  .services {
    margin: 20px 0px;
  }
  .guard {
    padding: 50px 0px 50px;
}
a.services-link-item {
  font-size: 15px;
}
.services-professional {
  margin: 20px 0px;
}
.stack-section {
  padding: 0 10px;
}
.tl-bar{
  margin-left: 0!important;
  width: 52%!important;
}
 .bcard-hero {
  display: none;
 }
 .reasons-header h2 {
  font-weight: 500;
  font-size: 28px;
 }

}
@media (max-width: 767.98px) {
  .founding-heading {
    font-size: 28px;
    padding: 0 20px;
  }

  .founding-timeline-line {
    left: 22px;
  }

  .founding-item,
  .founding-item--left,
  .founding-item--right {
    margin-bottom: 50px;
    padding-left: 50px;
  }

  .founding-item__col {
    width: 100%;
  }

  .founding-item__col--spacer {
    display: none;
  }

  .founding-item__marker,
  .founding-item--right .founding-item__marker {
    left: 22px;
    top: 6px;
  }

  .founding-item--left .founding-item__content,
  .founding-item--right .founding-item__content {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .founding-item--left .founding-item__desc,
  .founding-item--right .founding-item__desc {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 48px;
  }
  .big-number {
    font-size: 64px;
    letter-spacing: 2px;
  }
  .bcard-blanks{
    display: none;
   }
   .right-shade{
    background: linear-gradient(159deg, rgb(0 155 255 / 0%) 0%, rgba(8, 8, 8, 1) 35%) padding-box, linear-gradient(to bottom right, rgb(0 155 255 / 22%) 20%, rgba(0, 155, 255, 0.1) 40%, #009bff0f 60%, #009bff1f 100%) border-box;
   }
  .overlay-label {
    font-size: 20px;
  }
  .ind-card {
    margin-top: 40px;
    text-align: left;
    padding: 30px 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
  }
  .ind-icon {
    margin: 0px 0 14px;
}
.ind-tags {
  justify-content: flex-start;
}
.faq-left h2 {
  font-size: 35px;
  text-align: center;
}
.faq-left h2 br{
  display: none;
}
.services-cost-panel img{
    width: -webkit-fill-available;
}
.services-dashboard img{
  width: -webkit-fill-available;
}
.problems-title  {
  font-size: 27px;
	
}
	.title-text {
		color: #fdfdfd69;
	}
	.hero-sub br{
		display:none;
	}
/* .story-thumb img {
  width: 200px;
} */
.section-1, .section-2, .section-3, .section-4, .section-5, .section-6, .section-8, .section-7, .section-10{
  padding: 50px 10px;
}
.stories-header h2 br{
display: none;
}
.section-7, .section-11, .section-12{
padding: 50px 10px;
border-right: 1px solid #E5EDF5;
border-left: 1px solid #E5EDF5;
border-bottom: 1px solid #E5EDF5;
}
.section-17{
  padding: 0px 10px;
  }
.stat-label {
  font-size: 14px;
}
.sc-cta__heading {
  font-size: 28px;
}
.sc-cta__heading br{
  display: none;
}
.onboard{
  overflow-x:hidden;
}
	
.ind-intro{
  overflow-x:hidden;
}
.badge-pill {
  font-size: 10px;
  padding: 6px 8px;
}
.tl-labels {
  display: none;
}
.ind-intro{
  display: none;
}
.mob-intro{
  display: block;
}
.mob-intro h2{
  color: white;
  font-size: 28px;
}
.mob-intro h2{
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}
.tree {
  gap: 0px 22px;
  padding-top: 0px;
}
.diamond {
 width: inherit;
 height: inherit;
 box-shadow: inherit;
}
.diamond  img{
  width: 108px;
  margin: -36px 0 0 -60px;
}
.diamond::after {
  display: none;
}
.sectors {
  margin-top: 58px;
}
.bcard {
  padding: 20px 20px 40px 20px;
}
	.problems-title {
		left: 6%;
	}
.pill1{
  top: 12%!important;
    right: 0%!important;
}
.pill2{
  top: 23%!important;
    right: 0%!important;
}
.pill3{
  top: 35%!important;
    left: 9%!important;
}
.pill4{
  top: 58%!important;
    right: 0%!important;
    left: 1%!important;
}
.pill5{
    top: 70%!important;
    right: 18%!important;
}
.problem-pill {
  font-size: 12px;
}
.pill6{
  top: 83%!important;
  left: 9%!important;
}
.tl-axis {
  display: none;
}
.trending-post-card {
  display: block;
}
.post-content-panel {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 36px 16px 36px 16px;
}
.post-cover-panel {
  flex: 0 0 100%;
  max-width: 100%;
}
.post-cover-panel {
  width: -webkit-fill-available;
    padding: 0 10px;
}
	.audit-grid-line{
		display:none;
	}
	.audit-popup-left {
    padding: 48px 24px;
}
	.audit-popup-heading {
    font-size: 42px;
		text-align:center;
		line-height: 42px;
	}
	.audit-stat-num {
    font-size: 40px;
		text-align:center
}
	.audit-stat-label {
    font-size: 12px;
		text-align: center;
	}
	.audit-popup-right {
    padding: 48px 20px;
}
	.audit-popup {
    margin: 0 10px;
	}
	.faq-question {
    font-size: 16px;
	}
	.faq-answer p {
		font-size: 12px;
	}
.post-cover-panel img{
  height: 250px;
    width: -webkit-fill-available;
}
.post-nav-btn {
  bottom: -10%;
  top: inherit;
}
.post-nav-btn.next {
  left: calc(0% + 50px);
}
.post-nav-btn.prev {
  left: calc(0% + 0px);
}
.post-content-panel h2 {
  font-size: 23px;
  font-weight: 500;
  line-height: inherit;
}
.playbook-hero .container {
  padding: 0 10px 0px 10px !important;
}

.intel-filter-bar {
  position: relative;
}
.intel-filter-inner {
  display: block;
}
.intel-search-wrap {
  justify-content: center;
}
.category-tab {
  padding: 7px 9px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  height: 28px;
}
.feat-autor {
   position: relative;
}
.feat-post {
  padding: 10px 20px 22px 10px;
}
.fi-post__thumb {
  padding: 20px;
}
.fi-post__title {
  font-size: 26px;
}
.fi-post:hover .feat-autor {
  bottom: 0;
}
.subscribe-form input {
  flex: auto;
}
.trending-item {
  display: block;
}
.sidebar-right {
  padding-top: 20px;
  padding-left: 0px;
}
.article-wrapper {
  padding: 0 20px;
}
.article-content {
  padding-top: 0px;
}
.contact-hero-heading{
  font-size: 40px;
  line-height: 50px;
}
.contact-hero-heading br{
  display: none;
}
.contact-hero-body{
padding-right: 20px;
}
.outcomes h2 {
  font-size: 30px;
}
.gp-offices {
  display: block;
  padding: 0 20px;
}
.thank-hero-heading {
  font-size: 40px;
}
.thank-hero-body {
  font-size: 12px;
  line-height: 1.3;
}
.gp-title {
  font-size: 26px;
}
.thank-hero-body a {
  font-size: 12px;
}
.about-service-img img {
  width: -webkit-fill-available;
}
.about-top .eyebrow {
  margin: 0 auto 5px;
}
.about-top h3 {
font-size: 30px;
}
.about-1 {
top: 100px;
}
.about-2 {
top: 100px;
}
.mission-vision .sc-reveal-line {
font-size: 16px;
}
.mission-reveal h3 {
font-size: 44px;
}
.vision-reveal h3 {
font-size: 44px;
}
.team-guideline--1 {
display: none;
}
.team-heading {
font-size: 30px;
}
.sc-reveal-line {
font-size: 20px;
}
.about-hero h1 {
font-size: 30px;
text-align: center;
}
.about-hero span {
font-size: 36px;
}
.abt-hero-btns a {
text-decoration: none;
font-size: 11px;
}
.team-card {
padding: 12px
}
.team-card--wide {
display: block;
}
.team-left {
padding: 20px;
}
.links-box a {
font-size: 12px;
}
.about-accordion__header {
font-size: 12px;
}
.service-inner-hero h1 {
  font-size: 30px;
  text-align: center;
}
.service-inner-hero p{
  font-size: 18px;
  text-align: center;
}
.service-inner-hero p br{
  display: none;
}
.srv-hero-section {
  padding: 50px 0;
}
.srv-hero-btns a {
  margin: 16px auto 0 auto;
  display: block;
  width: max-content;

}
.service-problems {
  padding: 0px 0 40px;
}
.about-service__image {margin-top: 30px;}
.service-components__title {
  font-size: 34px;
}
.about-service__title {
  font-size: 34px;
}
.socsvc-title {
  font-size: 34px;
}
.compliance__title {
  font-size: 34px;
}
.services-outcomes .stats-row {
  align-items: center!important;
}
	.title-dotted {
		font-size: 50px;
	}	
	.contact-info__title {
    font-size: 36px;
	}
	.footer-watermark__text {
    font-size:52px;
    margin-bottom: 0px;
	}
	.footer-watermark {
		opacity:100%;
	}
	.footer-watermark::after {
    background: linear-gradient(to top, #ffffff38 0%, rgba(255, 255, 255, 0) 100%);
	}
	.contact-info {
    padding: 24px 14px 24px 0;
}
	.office-row {
		display: block;
	}
	.contact-sec__dash-h {
		display:none;
	}
	.office-card {
		margin-bottom: 10px;
	}
	 .sc-reveal-line[data-line="0"] {
        text-indent: 0;
    }
	.svc-managed__title {
		font-size: 22px;
	}
	.svc-popup {
    padding: 60px 20px;
	}
	.services-title {
		font-size: 20px;
	}
	.title-solutions {
    left: auto !important;
}
	.right-shade {
		width: 90%;
	}
	.left-shade {
		width: 90%;
	}
	.right-row {
    margin-left: 0 !important;
}
	.faq-inner {
		height: auto;
	}
	.contact-sec__dash-h{
		display:none;
	}
	.contact-sec__dash-v{
		display:none;
	}
	.site-footer {
    padding: 30px 10px 0px 10px;
}
	.ftr-resource {
    padding-left: 0;
}
	.ftr-newsletter {
    margin-top: 0 !important;
    padding-right: 0 !important;
}
	.stories-header h2 {
		font-size: 30px;
	}
	#sliderTracks {
		padding: 10px 16px;
	}
	.footer-newsletter__form {
		display: block;
	}
	.footer-newsletter__form .btn-contact{
		width:83%;
		justify-content: center;
	}
	.footer-newsletter__input {
		padding: 11px 0px 11px 16px;
	}
	.audit-grid-lin{
		display:none;
	}
	.svg-managed-title {
    font-size: 34px !important;
}
	.svc-partner__title {
		font-size: 28px;
	}
	.faq-list {
    margin: 20px 10px;
	}
	.about-hero-dash-h{
		display:none;
	}
	.about-hero-dash-v{
		display:none;
	}
	   

}
@media (min-width: 1400px) and (max-width: 1599px) {
	.footer-watermark__text {
    font-size: 266px!important;
}
	.contact-sec__dash-v--center {
    left: 56.8%;
}
}

@media (min-width: 1200px) and (max-width: 1399px) {

	.tree-img{
	width:78%;
}
	.tree-img {
    position: absolute;
		left: 10.6%;
	}
	.health{
	left:12.8%;
	top:33%;
}
.manufacture{
	left:42.3%;
	top:33%;
}
.legal{
	left:58.5%;
	top:53%;
}
.financial{
	left:27.5%;
	top:53%;
}
.techs{
	left: 71.8%;
	top:33%;
}
.education{
	left:87.8%;
	top:53%;
}
	.sc-reveal-line {
    font-size: 34px;
	}
	.sc-reveal-line[data-line="0"] {
    text-indent: 190px!important;
}
}
