
.sis-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.sis-btn--primary {
  background-color: #2E6FF2;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(46, 111, 242, 0.35);
}
.sis-btn--primary:hover,
.sis-btn--primary:focus-visible {
  background-color: #1E5AD6;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(46, 111, 242, 0.45);
  color: #FFFFFF;
}
.sis-btn--ghost {
  background-color: transparent;
  color: #0A0E1A;
  border-color: rgba(10, 14, 26, 0.2);
}
.sis-btn--ghost:hover,
.sis-btn--ghost:focus-visible {
  border-color: #2E6FF2;
  color: #2E6FF2;
  transform: translateY(-3px);
}
.sis-btn--light.sis-btn--ghost {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
}
.sis-btn--light.sis-btn--ghost:hover,
.sis-btn--light.sis-btn--ghost:focus-visible {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.sis-btn__icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.sis-btn--primary:hover .sis-btn__icon {
  transform: translateX(4px);
}
.sis-btn:focus-visible {
  outline: 2px solid #2E6FF2;
  outline-offset: 3px;
}

/* ================= HERO ================= */
.sis-hero {
  position: relative;
  padding-top: 30px;
  padding-bottom: 50px;
  background: linear-gradient(160deg, #0A0E1A 0%, #0F1C3F 55%, #0B2E7A 100%);
  overflow: hidden;
}
.sis-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sis-hero__grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at 70% 30%, #000 10%, transparent 70%);
}
.sis-hero__node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4C8CFF;
  box-shadow: 0 0 20px 6px rgba(76, 140, 255, 0.55);
  animation: sisFloat 6s ease-in-out infinite;
}
.sis-hero__node--1 { top: 18%; right: 12%; animation-delay: 0s; }
.sis-hero__node--2 { top: 55%; right: 24%; animation-delay: 1.4s; }
.sis-hero__node--3 { top: 35%; right: 6%; animation-delay: 2.8s; }

@keyframes sisFloat {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-16px); opacity: 1; }
}

.sis-hero__eyebrow {
  display: inline-block;
  color: #8FB3FF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(143, 179, 255, 0.35);
  border-radius: 999px;
  animation: sisFadeUp 0.7s ease both;
}
.sis-hero__title {
  color: #FFFFFF;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 22px;
  animation: sisFadeUp 0.7s ease 0.1s both;
}
.sis-hero__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 34px;
  animation: sisFadeUp 0.7s ease 0.2s both;
}
.sis-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  animation: sisFadeUp 0.7s ease 0.3s both;
}
.sis-hero__cta .sis-btn--ghost {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}
.sis-hero__cta .sis-btn--ghost:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.sis-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: sisFadeUp 0.7s ease 0.4s both;
}
.sis-hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  font-weight: 600;
}
.sis-hero__badges svg {
  width: 16px;
  height: 16px;
  color: #4C8CFF;
  flex-shrink: 0;
}

@keyframes sisFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Hero device mockup (right column) ---- */
.sis-hero__visual-col {
  position: relative;
}
.sis-hero__device {
  position: relative;
  max-width: 480px;
  margin: 6px auto 20px;
  animation: sisFadeUp 0.8s ease 0.3s both;
}
.sis-hero__laptop {
  position: relative;
  background: linear-gradient(160deg, #17223F, #0B1226);
  border-radius: 16px;
  padding: 12px 12px 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: sisHeroFloat 7s ease-in-out infinite;
}
@keyframes sisHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.sis-hero__laptop-screen {
  background: linear-gradient(160deg, #0F1C3F, #0A1330);
  border-radius: 10px;
  padding: 18px 18px 14px;
  min-height: 300px;
}
.sis-hero__laptop-base {
  height: 10px;
  margin-top: 10px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #1E2A4E, #0B1226);
}
.sis-hero__dash-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.sis-hero__dash-dots {
  display: inline-flex;
  gap: 5px;
}
.sis-hero__dash-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: block;
}
.sis-hero__dash-title {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  font-weight: 700;
}
.sis-hero__dash-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4ADE80;
  font-size: 11px;
  font-weight: 700;
}
.sis-hero__dash-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px 2px rgba(74, 222, 128, 0.6);
  animation: sisPulse 1.8s ease-in-out infinite;
}
.sis-hero__dash-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.sis-hero__stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
}
.sis-hero__stat strong {
  display: block;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
}
.sis-hero__stat span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.sis-hero__chart {
  width: 100%;
  height: 60px;
  margin-bottom: 16px;
  overflow: visible;
}
.sis-hero__chart-line {
  stroke: #4C8CFF;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(76, 140, 255, 0.6));
}
.sis-hero__chart-fill {
  fill: rgba(76, 140, 255, 0.14);
  stroke: none;
}
.sis-hero__tickets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sis-hero__ticket {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11.5px;
  font-weight: 600;
}
.sis-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sis-hero__dot--ok { background: #4ADE80; box-shadow: 0 0 6px 1px rgba(74, 222, 128, 0.55); }
.sis-hero__dot--warn { background: #FBBF24; box-shadow: 0 0 6px 1px rgba(251, 191, 36, 0.55); }

.sis-hero__phone {
  position: absolute;
  left: -30px;
  bottom: -20px;
  width: 96px;
  height: 130px;
  background: linear-gradient(160deg, #17223F, #0B1226);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: sisHeroFloat 6s ease-in-out infinite 0.6s;
}
.sis-hero__phone-screen {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(160deg, #123072, #0A1330);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sis-hero__phone-screen svg {
  width: 22px;
  height: 22px;
  color: #4ADE80;
}
.sis-hero__phone-screen span {
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.sis-hero__float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.9);
  color: #0F1C3F;
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  animation: sisFloat 5s ease-in-out infinite;
}
.sis-hero__float-badge svg {
  width: 15px;
  height: 15px;
  color: #2E6FF2;
}
.sis-hero__float-badge--1 {
  top: -18px;
  right: 10px;
  animation-delay: 0.3s;
}
.sis-hero__float-badge--2 {
  bottom: 30px;
  right: -20px;
  animation-delay: 1.6s;
}
@keyframes sisPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ================= PAIN POINTS ================= */
.sis-pain {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #FFFFFF;
}
.sis-pain__title {
  color: #0A0E1A;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
}
.sis-pain__intro {
  color: #5B6472;
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.sis-pain__grid {
  margin-bottom: 10px;
}
.sis-pain__col {
  margin-bottom: 24px;
}
.sis-pain__card {
  height: 100%;
  background-color: #0F1C3F;
  border: 1px solid #16274D;
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.sis-pain__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(15, 28, 63, 0.16);
  border-color: #2E6FF2;
  background-color: #F7F9FD;
}
.sis-pain__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.sis-pain__card:hover .sis-pain__icon-wrap {
  background-color: #2E6FF2;
  transform: scale(1.08) rotate(-4deg);
}
.sis-pain__icon {
  width: 26px;
  height: 26px;
  color: #7CA8FF;
  transition: color 0.3s ease, transform 0.3s ease;
}
.sis-pain__card:hover .sis-pain__icon {
  color: #FFFFFF;
  transform: scale(1.1);
}
.sis-pain__card-title {
  color: #FFFFFF;
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.sis-pain__card:hover .sis-pain__card-title {
  color: #0A0E1A;
}
.sis-pain__card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.sis-pain__card:hover p {
  color: #5B6472;
}
.sis-pain__closer {
  color: #0F1C3F;
  font-size: 18px;
  font-weight: 600;
  max-width: 760px;
  margin: 10px auto 26px;
  line-height: 1.6;
}

/* ================= ABOUT / WHAT IS ITSM ================= */
.sis-about {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #F7F9FD;
}
.sis-about__title {
  color: #0A0E1A;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 22px;
}
.sis-about__mark {
  color: #2E6FF2;
  max-width: 300px;
  margin: 0 auto;
}
.sis-about__orbit {
  position: relative;
}
.sis-about__orbit svg {
  width: 100%;
  height: auto;
  display: block;
}
.sis-about__ring {
  transform-origin: 100px 100px;
}
.sis-about__ring--outer {
  animation: sisSpinSlow 26s linear infinite;
}
.sis-about__ring--inner {
  animation: sisSpinSlow 18s linear infinite reverse;
  opacity: 0.6;
}
.sis-about__line {
  opacity: 0.5;
}
.sis-about__core {
  fill: #2E6FF2;
  animation: sisPulse 2.4s ease-in-out infinite;
}
@keyframes sisSpinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.sis-about__node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #FFFFFF;
  border: 1px solid #E7ECF6;
  color: #0F1C3F;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(15, 28, 63, 0.12);
  animation: sisFloat 4.5s ease-in-out infinite;
}
.sis-about__node i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #2E6FF2;
  display: block;
}
.sis-about__node--incident { top: 4%; left: 46%; animation-delay: 0s; }
.sis-about__node--change { bottom: 22%; right: 2%; animation-delay: 1s; }
.sis-about__node--request { bottom: 22%; left: 2%; animation-delay: 2s; }
.sis-about__caption {
  text-align: center;
  color: #5B6472;
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.6;
  max-width: 280px;
  margin: 22px auto 0;
}
.sis-about p {
  color: #384056;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ================= OUTCOMES ================= */
.sis-outcomes {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0A0E1A;
}
.sis-outcomes__title {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 6px;
}
.sis-outcomes__sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 36px;
}
.sis-outcomes__grid {
  row-gap: 20px;
}
.sis-outcomes__col {
  margin-bottom: 4px;
}
.sis-outcomes__card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 30px 12px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.sis-outcomes__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(76, 140, 255, 0.12), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.sis-outcomes__card:hover::before {
  transform: translateX(120%);
}
.sis-outcomes__card:hover {
  transform: translateY(-10px);
  border-color: rgba(76, 140, 255, 0.55);
  background: linear-gradient(160deg, rgba(46, 111, 242, 0.22), rgba(255, 255, 255, 0.03));
  box-shadow: 0 20px 40px rgba(46, 111, 242, 0.22);
}
.sis-outcomes__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.sis-outcomes__card:hover .sis-outcomes__icon-wrap {
  background-color: #2E6FF2;
  transform: scale(1.1);
}
.sis-outcomes__card svg {
  width: 22px;
  height: 22px;
  color: #4C8CFF;
  transition: color 0.3s ease;
}
.sis-outcomes__card:hover svg {
  color: #FFFFFF;
}
.sis-outcomes__verb {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
}
.sis-outcomes__noun {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  line-height: 1.4;
}

/* ================= SERVICES (TABS) ================= */
.sis-services {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #FFFFFF;
}
.sis-services__title {
  color: #0A0E1A;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
}
.sis-services__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.sis-services__tab {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #E7ECF6;
  background-color: #FFFFFF;
  color: #0F1C3F;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.sis-services__tab svg {
  width: 20px;
  height: 20px;
  color: #2E6FF2;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.sis-services__tab:hover {
  border-color: #2E6FF2;
  transform: translateX(4px);
}
.sis-services__tab.is-active {
  background-color: #0F1C3F;
  border-color: #0F1C3F;
  color: #FFFFFF;
  box-shadow: 0 12px 26px rgba(15, 28, 63, 0.25);
}
.sis-services__tab.is-active svg {
  color: #4C8CFF;
  transform: scale(1.1);
}
.sis-services__panels {
  position: relative;
  min-height: 260px;
  background: linear-gradient(160deg, #F7F9FD, #EAF1FF);
  border-radius: 18px;
  padding: 40px;
  border: 1px solid #E7ECF6;
}
.sis-services__panel {
  display: none;
  animation: sisFadeIn 0.4s ease both;
}
.sis-services__panel.is-active {
  display: block;
}
.sis-services__panel h3 {
  color: #0A0E1A;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}
.sis-services__panel p {
  color: #384056;
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.sis-services__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sis-services__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #0F1C3F;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
}
.sis-services__list-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 7px;
  background-color: #0F1C3F;
  color: #4C8CFF;
  margin-top: 1px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.sis-services__list li:hover .sis-services__list-icon {
  background-color: #2E6FF2;
  color: #FFFFFF;
  transform: scale(1.1);
}
@keyframes sisFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= PLATFORMS (MARQUEE) ================= */
.sis-platforms {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0F1C3F;
  overflow: hidden;
}
.sis-platforms__title {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}
.sis-platforms__marquee {
  width: 100%;
  overflow: hidden;
  padding: 14px 0;
  margin-bottom: 26px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sis-platforms__track {
  display: flex;
  width: max-content;
  gap: 46px;
  animation: sisMarquee 26s linear infinite;
}
.sis-platforms__track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  padding: 8px 20px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.sis-platforms__track span:hover {
  border-color: rgba(76, 140, 255, 0.6);
  transform: translateY(-3px);
}
.sis-platforms__track img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}
@keyframes sisMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.sis-platforms__note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

/* ================= INDUSTRIES ================= */
.sis-industries {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #FFFFFF;
}
.sis-industries__title {
  color: #0A0E1A;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 34px;
}
.sis-industries__grid {
  row-gap: 16px;
  margin-bottom: 20px;
}
.sis-industries__tag {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 22px 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #0F1C3F;
  border: 1px solid #16274D;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.sis-industries__tag svg {
  width: 24px;
  height: 24px;
  color: #4C8CFF;
  transition: color 0.3s ease, transform 0.3s ease;
}
.sis-industries__tag:hover {
  background-color: #F7F9FD;
  color: #0F1C3F;
  border-color: #2E6FF2;
  transform: translateY(-4px) scale(1.04);
  text-decoration: none;
}
.sis-industries__tag:hover svg {
  color: #2E6FF2;
  transform: scale(1.12);
}
.sis-industries__note {
  color: #5B6472;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 10px;
}

/* ================= PROCESS TIMELINE ================= */
.sis-process {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #F7F9FD;
}
.sis-process__title {
  color: #0A0E1A;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 44px;
}
.sis-process__timeline {
  position: relative;
}
.sis-process__spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, #C9D6EE 0, #C9D6EE 8px, transparent 8px, transparent 16px);
}
.sis-process__spine-fill {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 0%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #4C8CFF, #2E6FF2);
  box-shadow: 0 0 10px 1px rgba(76, 140, 255, 0.5);
  transition: height 0.15s linear;
  z-index: 0;
}
.sis-process__row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 8px;
}
.sis-process__node {
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 3px solid #2E6FF2;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.4s ease;
}
.sis-process__row:hover .sis-process__node {
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(46, 111, 242, 0.15);
}
.sis-process__node.is-filled {
  background-color: #2E6FF2;
  box-shadow: 0 0 0 5px rgba(46, 111, 242, 0.18);
}
.sis-process__node--final {
  background-color: #2E6FF2;
}
.sis-process__card {
  position: relative;
  background-color: #0F1C3F;
  border: 1px solid #16274D;
  border-radius: 14px;
  padding: 22px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.sis-process__row--left .sis-process__card {
  margin-right: 20px;
  text-align: right;
}
.sis-process__row--right .sis-process__card {
  margin-left: 20px;
}
.sis-process__row:hover .sis-process__card {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 28, 63, 0.16);
  border-color: #2E6FF2;
  background-color: #FFFFFF;
}
.sis-process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #4C8CFF;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.sis-process__row:hover .sis-process__num {
  background-color: #0F1C3F;
  color: #4C8CFF;
}
.sis-process__card h3 {
  color: #FFFFFF;
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.sis-process__row:hover .sis-process__card h3 {
  color: #0A0E1A;
}
.sis-process__card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.sis-process__row:hover .sis-process__card p {
  color: #5B6472;
}

/* ================= CAPABILITIES ================= */
.sis-capabilities {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #FFFFFF;
}
.sis-capabilities__title {
  color: #0A0E1A;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}
.sis-capabilities__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.sis-capabilities__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #0F1C3F;
  background-color: #EAF1FF;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.sis-capabilities__pill svg {
  width: 17px;
  height: 17px;
  color: #2E6FF2;
  flex-shrink: 0;
  transition: color 0.25s ease;
}
.sis-capabilities__pill:hover {
  background-color: #0F1C3F;
  color: #FFFFFF;
  transform: translateY(-3px);
}
.sis-capabilities__pill:hover svg {
  color: #4C8CFF;
}

/* ================= WHY CHOOSE US ================= */
.sis-why {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0A0E1A;
}
.sis-why__title {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 14px;
}
.sis-why__intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.sis-why__grid {
  row-gap: 22px;
}
.sis-why__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
.sis-why__item:hover {
  border-color: #2E6FF2;
  background-color: rgba(46, 111, 242, 0.08);
  transform: translateX(4px);
}
.sis-why__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.sis-why__item:hover .sis-why__icon-wrap {
  background-color: #2E6FF2;
  transform: scale(1.08) rotate(-4deg);
}
.sis-why__item svg {
  width: 20px;
  height: 20px;
  color: #4C8CFF;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.sis-why__item:hover svg {
  color: #FFFFFF;
}
.sis-why__item h3 {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.sis-why__item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ================= TECHNOLOGIES / INTEGRATIONS ================= */
.sis-tech {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #F7F9FD;
}
.sis-tech__title {
  color: #0A0E1A;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}
.sis-tech__subtitle {
  color: #0A0E1A;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}
.sis-tech__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.sis-tech__cloud span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 8px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  background-color: #FFFFFF;
  color: #0F1C3F;
  border: 1px solid #E7ECF6;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.sis-tech__cloud span img,
.sis-tech__cloud span svg {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  flex-shrink: 0;
  color: #2E6FF2;
}
.sis-tech__cloud span:hover {
  border-color: #2E6FF2;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 28, 63, 0.08);
}
.sis-tech__cloud--alt span {
  background-color: #0F1C3F;
  color: #FFFFFF;
  border-color: #0F1C3F;
}
.sis-tech__cloud--alt span:hover {
  border-color: #4C8CFF;
}

/* ================= BUSINESS VALUE ================= */
.sis-value {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #FFFFFF;
}
.sis-value__title {
  color: #0A0E1A;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 14px;
}
.sis-value__intro {
  color: #5B6472;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.sis-value__ledger {
  border-top: 1px solid #E7ECF6;
}
.sis-value__entry {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 44px;
  align-items: center;
  gap: 20px;
  padding: 24px 8px;
  border-bottom: 1px solid #E7ECF6;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.sis-value__entry:hover {
  background-color: #F7F9FD;
}
.sis-value__index {
  font-size: 30px;
  font-weight: 800;
  color: #E7ECF6;
  transition: color 0.3s ease;
  line-height: 1;
}
.sis-value__entry:hover .sis-value__index {
  color: #2E6FF2;
}
.sis-value__entry-body h3 {
  color: #0A0E1A;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}
.sis-value__entry-body p {
  color: #5B6472;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}
.sis-value__entry-icon {
  width: 26px;
  height: 26px;
  color: #C9D6EE;
  transition: color 0.3s ease, transform 0.3s ease;
  justify-self: end;
}
.sis-value__entry:hover .sis-value__entry-icon {
  color: #2E6FF2;
  transform: scale(1.1);
}
.sis-value__meter {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0%;
  background-color: #2E6FF2;
  transition: width 0.5s ease;
}
.sis-value__entry:hover .sis-value__meter {
  width: 100%;
}
@media (max-width: 575.98px) {
  .sis-value__entry {
    grid-template-columns: 40px 1fr;
  }
  .sis-value__entry-icon { display: none; }
}

/* ================= DUBAI TRENDS ================= */
.sis-trends {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #F7F9FD;
}
.sis-trends__title {
  color: #0A0E1A;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 14px;
}
.sis-trends__intro {
  color: #5B6472;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.sis-trends__grid {
  row-gap: 24px;
}
.sis-trends__card {
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #E7ECF6;
  border-top: 3px solid #2E6FF2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sis-trends__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(15, 28, 63, 0.1);
}
.sis-trends__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-color: #0F1C3F;
  margin-bottom: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.sis-trends__card:hover .sis-trends__icon-wrap {
  background-color: #2E6FF2;
  transform: scale(1.08) rotate(-4deg);
}
.sis-trends__card svg {
  width: 26px;
  height: 26px;
  color: #4C8CFF;
  transition: color 0.3s ease;
}
.sis-trends__card:hover svg {
  color: #FFFFFF;
}
.sis-trends__card h3 {
  color: #0A0E1A;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}
.sis-trends__card p {
  color: #5B6472;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ================= CTA ================= */
.sis-cta {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(135deg, #0A0E1A, #0F1C3F 60%, #123072);
  overflow: hidden;
}
.sis-cta__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(76, 140, 255, 0.35), transparent 70%);
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: sisPulse 5s ease-in-out infinite;
}
@keyframes sisPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.sis-cta__title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  line-height: 1.2;
  text-align: left;
}
.sis-cta__title-line1,
.sis-cta__title-line2 {
  display: block;
  background: linear-gradient(100deg, #FFFFFF 0%, #9BC0FF 35%, #FFFFFF 60%, #4C8CFF 85%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: sisGradientShift 6s ease-in-out infinite;
}
.sis-cta__title-line2 {
  animation-delay: 0.4s;
}
@keyframes sisGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.sis-cta__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 32px;
  position: relative;
  text-align: left;
  max-width: 540px;
}
.sis-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  justify-content: flex-start;
}
.sis-cta__art-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sis-cta__art {
  position: relative;
  width: 100%;
  max-width: 480px;
  animation: sisFadeUp 0.8s ease 0.2s both;
}
.sis-cta__art-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  display: block;
  background-color: rgba(255, 255, 255, 0.05);
}
.sis-cta__art-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4C8CFF;
  box-shadow: 0 0 16px 5px rgba(76, 140, 255, 0.5);
  animation: sisFloat 4s ease-in-out infinite;
}
.sis-cta__art-node--1 { top: -8px; left: 20%; animation-delay: 0s; }
.sis-cta__art-node--2 { top: 30%; right: -10px; width: 10px; height: 10px; animation-delay: 1.2s; }
.sis-cta__art-node--3 { bottom: -6px; right: 25%; width: 11px; height: 11px; animation-delay: 2.4s; }

/* ================= FAQ ================= */
.sis-faq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #FFFFFF;
}
.sis-faq__title {
  color: #0A0E1A;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 34px;
}
.sis-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sis-faq__item {
  border: 1px solid #E7ECF6;
  border-radius: 12px;
  overflow: hidden;
  background-color: #F7F9FD;
  transition: border-color 0.25s ease;
}
.sis-faq__item.is-open {
  border-color: #2E6FF2;
}
.sis-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: 0;
  text-align: left;
  color: #0A0E1A;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
}
.sis-faq__q svg {
  width: 20px;
  height: 20px;
  color: #2E6FF2;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.sis-faq__item.is-open .sis-faq__q svg {
  transform: rotate(180deg);
}
.sis-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.sis-faq__item.is-open .sis-faq__a {
  max-height: 320px;
  padding: 0 22px 20px;
}
.sis-faq__a p {
  color: #5B6472;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ==============================================================
   SECTION HEADING GRADIENTS
   All major H2/H3 section titles carry an animated blue gradient.
   Two variants: light-background sections use a navy→blue sweep;
   dark-background sections use the white→blue sweep (as in the CTA).
   ============================================================== */
.sis-pain__title,
.sis-about__title,
.sis-services__title,
.sis-industries__title,
.sis-process__title,
.sis-capabilities__title,
.sis-tech__title,
.sis-tech__subtitle,
.sis-value__title,
.sis-trends__title,
.sis-faq__title {
  display: inline-block;
  background: linear-gradient(100deg, #0A0E1A 0%, #2E6FF2 45%, #0A0E1A 75%, #2E6FF2 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: sisGradientShift 7s ease-in-out infinite;
}
.sis-outcomes__title,
.sis-platforms__title,
.sis-why__title {
  display: inline-block;
  background: linear-gradient(100deg, #FFFFFF 0%, #9BC0FF 35%, #FFFFFF 60%, #4C8CFF 85%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: sisGradientShift 7s ease-in-out infinite;
}

/* ==============================================================
   RESPONSIVE
   ============================================================== */

/* Align hero visual top edge with the H1, not the eyebrow tag */
@media (min-width: 992px) {
  .sis-hero__visual-col {
    padding-top: 46px;
  }
}

@media (max-width: 991.98px) {
  .sis-hero { padding-top: 30px; padding-bottom: 40px; }
  .sis-hero__title { font-size: 36px; }
  .sis-hero__lead { font-size: 16.5px; }
  .sis-hero__device { max-width: 380px; margin-top: 40px; }
  .sis-hero__float-badge--1 { top: -10px; }
  .sis-hero__float-badge--2 { bottom: 22px; right: -12px; }
  .sis-about__mark { margin-bottom: 30px; max-width: 220px; }

  .sis-services__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 8px;
  }
  .sis-services__tab {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .sis-services__panels { padding: 28px; }
  .sis-cta__art-col { margin-top: 40px; }
  .sis-cta__art { max-width: 420px; }
}

@media (max-width: 767.98px) {
  .sis-hero__title { font-size: 30px; }
  .sis-hero__cta { flex-direction: column; align-items: stretch; }
  .sis-hero__cta .sis-btn { width: 100%; }
  .sis-hero__phone { left: -10px; width: 78px; height: 106px; }
  .sis-pain__title,
  .sis-about__title,
  .sis-outcomes__title,
  .sis-services__title,
  .sis-industries__title,
  .sis-process__title,
  .sis-why__title,
  .sis-value__title,
  .sis-trends__title,
  .sis-faq__title { font-size: 24px; }

  /* Process timeline: flex-based stacking so left/right rows both
     render node-then-card regardless of source order (grid auto-flow
     otherwise squeezes the card into the node's narrow track). */
  .sis-process__spine,
  .sis-process__spine-fill { left: 9px; }
  .sis-process__row,
  .sis-process__row--left,
  .sis-process__row--right {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
  }
  .sis-process__spacer { display: none; }
  .sis-process__node {
    order: 1;
    flex: 0 0 auto;
    margin: 4px 0 0 0;
  }
  .sis-process__row--left .sis-process__card,
  .sis-process__row--right .sis-process__card {
    order: 2;
    flex: 1 1 auto;
    margin: 0;
    text-align: left;
    min-width: 0;
  }

  .sis-cta__title { font-size: 26px; }
  .sis-cta__actions { flex-direction: column; }
  .sis-cta__actions .sis-btn { width: 100%; }
  .sis-cta__art { max-width: 320px; }
}

@media (max-width: 575.98px) {
  .sis-hero { padding-top: 30px; padding-bottom: 30px; }
  .sis-hero__title { font-size: 26px; }
  .sis-hero__device { max-width: 280px; margin-top: 34px; }
  .sis-hero__float-badge { font-size: 10.5px; padding: 6px 11px; }
  .sis-hero__float-badge--1 { top: -8px; right: 4px; }
  .sis-hero__float-badge--2 { bottom: 18px; right: -8px; }
  .sis-outcomes__card { padding: 20px 10px; }
  .sis-cta__art { max-width: 260px; }
}


/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .sis-hero__node,
  .sis-about__mark svg,
  .sis-platforms__track,
  .sis-cta__glow,
  .sis-hero__eyebrow,
  .sis-hero__title,
  .sis-hero__lead,
  .sis-hero__cta,
  .sis-hero__badges,
  .sis-hero__laptop,
  .sis-hero__phone,
  .sis-hero__dash-live i,
  .sis-hero__float-badge,
  .sis-about__ring,
  .sis-about__core,
  .sis-about__node,
  .sis-cta__title-line1,
  .sis-cta__title-line2,
  .sis-cta__art-node,
  .sis-pain__title,
  .sis-about__title,
  .sis-services__title,
  .sis-industries__title,
  .sis-process__title,
  .sis-capabilities__title,
  .sis-tech__title,
  .sis-tech__subtitle,
  .sis-value__title,
  .sis-trends__title,
  .sis-faq__title,
  .sis-outcomes__title,
  .sis-platforms__title,
  .sis-why__title {
    animation: none !important;
  }
  .sis-btn,
  .sis-pain__card,
  .sis-outcomes__card,
  .sis-services__tab,
  .sis-industries__tag,
  .sis-process__step,
  .sis-why__item,
  .sis-value__row,
  .sis-trends__card {
    transition: none !important;
  }
}