.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Large desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1080px;
  }
}

/* Mac / 1512px class screens */
@media (min-width: 1512px) {
  .container {
    max-width: 1180px;
  }
}

/* 1600px+ */
@media (min-width: 1600px) {
  .container {
    max-width: 1240px;
  }
}

/* 1920px+ */
@media (min-width: 1920px) {
  .container {
    max-width: 1320px;
  }
}

/* 2560px+ */
@media (min-width: 2560px) {
  .container {
    max-width: 1440px;
  }
}
.w-90{width: 90% !important;}
.footer-grid, .copyright, .footer-bottom{color: #f5f5f5;}
.footer-spog ul li a {
  color: #f5f5f5;
  text-decoration: none;
}
.navbar-brand-footer {
  display: inline-block;
  background: url('/static/images/media/spog_logo_footer.png') no-repeat;
  background-size: contain;
  width: 100px;
  height: 20px;
  text-indent: -99999px;
  outline: none;
  background-size: contain;
  margin-bottom: 20px;
}
.footer-spog h5 {
  font-size: 15px;
  margin-bottom: 16px;
}
.spog-sm-title span{color: #595959;}
.spog-ai-bg .spog-ai-title,
.spog-ai-bg .spog-ai-description{color: #fff;}
.title-wrapper{
  max-width: 760px;
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 100px;
}
.spog-hero-section {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 150px;
 padding-bottom: 30px;
  box-sizing: border-box;
}
.spog-hero-title{
  font-size: clamp(2.5rem, 4.375vw, 4.5rem);
  line-height: clamp(2.625rem, 4.375vw, 4.375rem);
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
 
}
.spog-hero-title span{color: #0052CC;}
.spog-page-section {
  width: 100%;
  margin: 0;

  min-height: calc(100dvh - 102px);

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-top: 100px;
 padding-bottom: 100px;
  box-sizing: border-box;
}
.spog-ai-title {
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-family: "Poppins", sans-serif;;
  line-height: 1.05;
  font-weight: 600;
  color: #00193D;
}
.spog-lead-description {
  font-size: clamp(16px, 1.35vw, 19px);
  max-width: 600px;
  margin: 16px auto 0;
}
.spog-ai-description {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.125rem, 1.55vw, 1.25rem);
  line-height: auto;
  font-weight: 400;
}

.spog-main-title{line-height: 40px;}
.section-home-top {
  padding-top: 100px;
}
.section-header {
  margin: 0;
}

.section-header h1 {
  margin: 0 0 16px 0;
  font-size: 48px;
  line-height: 1.15;
}

.section-header p {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  color: #444;
}


.journey-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}



/* ========================================
   TOP PROGRESS AREA
======================================== */

.journey-progress {
  position: relative;
  margin-bottom: 48px;
}

/*
  Horizontal line starts from center
  of column 1 and ends at center of column 4.
*/
.progress-track {
  position: absolute;
  top: 10px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: #d9d9d9;
  z-index: 1;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #0052CC;
  transition: width 600ms ease;
}

.progress-points {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 2;
}

.progress-point {
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;

  background: #ffffff;
  border: 4px solid #d6d6d6;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;

  transition:
    border-color 400ms ease,
    background-color 400ms ease,
    transform 400ms ease,
    box-shadow 400ms ease;
}

/* Active step */

.progress-point.active .step-dot {
  border-color: #346dea;
  background: #ffffff;

  transform: scale(1.08);

  box-shadow:
    0 0 0 5px rgba(52, 109, 234, 0.08);
}

/* Completed step */

.progress-point.completed .step-dot {
  border-color: #0052CC;
  background: #ffffff;
  color: #16a75c;
}

.progress-point.completed .step-dot::after {
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

/* ========================================
   CONTENT COLUMNS
======================================== */

.journey-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
}

.journey-step {
  min-width: 0;
  opacity: 0.7;
  transform: translateY(0);
  border: 0.5px solid #ccc;
  border-radius: clamp(6px, 0.5vw, 10px);
  padding: clamp(12px, 1.2vw, 20px);
  background: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  transition:
    opacity 500ms ease,
    transform 500ms ease,
    box-shadow 500ms ease,
    border-color 500ms ease,
    filter 500ms ease;
}


/* Active content */

.journey-step.active {
  opacity: 1;
  transform: translateY(clamp(-8px, -0.4vw, -4px));
  filter: none;
  background: #fff;
  border-color: rgba(52, 109, 234, 0.35);
  box-shadow:
    0 clamp(10px, 1vw, 14px) clamp(28px, 2.4vw, 35px)
      rgba(52, 109, 234, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Already viewed */

.journey-step.completed {
  opacity: 0.7;
  transform: translateY(0);
  border-color: #ccc;
  box-shadow: none;
}

/* ========================================
   TYPOGRAPHY
======================================== */

.journey-step h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: clamp(1rem, 1.15vw, 1.5rem);
  margin: 0 0 clamp(8px, 0.7vw, 14px);
  line-height: 1.2;
  font-weight: 500;
  color: #000;
}

.journey-step .description {
  margin: 0 0 clamp(16px, 1.4vw, 28px);
  font-size: clamp(0.8125rem, 0.9vw, 1.125rem);
  line-height: 1.35;
  max-width: clamp(90%, 20vw, 360px);
}

.journey-step .examples {
  min-height: 75px;
  margin-bottom: 24px;
}

.bottom-message {
  display: inline-block;
  margin-top: clamp(8px, 0.7vw, 14px);
  padding-top: clamp(10px, 0.8vw, 14px);
  font-size: clamp(0.8125rem, 0.9vw, 1rem);
  line-height: 1.3;
  font-weight: 500;
  border-top: 1px solid #d2d2d2;
}

.journey-step .example-row,
.connected-row {
  display: flex;
  align-items: center;
  min-height: clamp(24px, 1.6vw, 32px);
  font-size: clamp(0.75rem, 0.82vw, 0.9375rem);
  line-height: 1.25;
}
.relationship-row {
  min-height: clamp(24px, 1.6vw, 32px);
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.7vw, 12px);
  white-space: nowrap;
  font-size: clamp(0.75rem, 0.82vw, 0.9375rem);
  line-height: 1.25;
}

.journey-step .bullet, .connected-row .bullet{ 
  width: 8px;
  height: 8px;
  margin: 0 10px;
  border-radius: 50%;
  background: #d8d8d8;
  flex-shrink: 0;
}
.journey-step .bullet {color: #7C858B;}



.relationship-line {
  color: #616161;
  letter-spacing: 1px;
}

.journey-step .question {
  color: #424242;
  margin-left: 4px;
}

.journey-step .check {
  color: #111;
  margin-left: 5px;
  font-weight: 700;
  font-size: 1rem;
}

/* ========================================
   ACTIVE CONTENT SUBTLE ANIMATION
======================================== */

.journey-step.active h2 {
  animation: contentIn 500ms ease both;
}

.journey-step.active .description {
  animation: contentIn 500ms 80ms ease both;
}

.journey-step.active .examples {
  animation: contentIn 500ms 150ms ease both;
}

.journey-step.active .bottom-message {
  animation: contentIn 500ms 220ms ease both;
}


.btm-msg {
  position: absolute;
  bottom: clamp(16px, 1.5vw, 28px);
  left: clamp(16px, 1.5vw, 28px);
  right: clamp(16px, 1.8vw, 32px);
  display: block;
  text-align: left;
  border-top: 1px solid #B4B4B4;
  padding-top: clamp(10px, 0.8vw, 14px);
  font-size: clamp(0.8125rem, 0.9vw, 1rem);
  line-height: 1.3;
  white-space: nowrap;
}




.connected-item{
  border: 1px solid #ccc;
  padding: 24px; 
  border-radius: 8px;
  background: #fff;
  position: relative;
  transition:
  transform 0.3s ease,
  border-color 0.3s ease,
  box-shadow 0.3s ease;
  margin-bottom: 8px;
}

.connected-title {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: clamp(1rem, 1.15vw, 1.5rem);
  line-height: 1.3;
  font-weight: 500;
  color: #000;
  margin-bottom: clamp(6px, 0.5vw, 10px);
}

.connected-descrition {
  font-size: clamp(0.9375rem, 1vw, 1.25rem);
  line-height: 1.5;
  font-weight: 400;
  color: #000;
  margin-bottom: clamp(24px, 2vw, 36px);
  width: 70%;
}
.connected-arrow {
  background: url('/static/images/media/arrow-right-circle.png') no-repeat;
  width: 32px;
  height: 32px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  transition: transform 0.2s ease;
  position: absolute;

    right: 24px;
    top: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
}

.connected-item:hover .connected-arrow {
  background: url('/static/images/media/arrow-right-circle-active.png') no-repeat;
  width: 32px;
  height: 32px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  transform: translateX(10px);
  opacity: 1;
}
.connected-item {
  transition: border-color 0.2s ease;
  box-shadow: none;

  transition:
      opacity 500ms ease,
      transform 500ms ease,
      box-shadow 500ms ease,
      border-color 500ms ease,
      filter 500ms ease;
}

.connected-title {
  transition: color 0.2s ease;
}

.connected-item .connected-row .bullet {
  transition: background-color 0.2s ease;
}

.connected-item:hover .connected-title {
  color: #0052CC;
}

.connected-item:hover .connected-row .bullet {
  background-color: #0052CC;
}
.connected-row span {color: #7C858B;}
.connected-item:hover {
  border-color: #0052CC;
  opacity: 1;
  transform: translateY(-4px);
  filter: none;
  box-shadow:
      0 14px 35px rgba(52, 109, 234, 0.14),
      0 4px 12px rgba(0, 0, 0, 0.05);
}



@keyframes contentIn {
  from {
    opacity: 0.2;
    transform: translateY(1px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {
  .journey-content {
    column-gap: 25px;
  }

  .journey-step h2 {
    font-size: 18px;
  }

  .journey-step .description,
  .bottom-message {
    font-size: 14px;
  }

  .example-row,
  .relationship-row {
    font-size: 13px;
  }
}



.hero-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


.circle-slider {
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.slider-row {
  width: 100%;
  overflow: hidden;
  margin-bottom: 18px;
}

.slider-row:last-child {
  margin-bottom: 0;
}

.slider-track {
  display: flex;
  width: max-content;
  gap: 12px;
  will-change: transform;
  /* IMPORTANT */
  transition: none !important;
}

.circle-item {
  width: clamp(72px, 7vw, 110px);
  height: clamp(72px, 7vw, 110px);
  flex: 0 0 clamp(72px, 7vw, 110px);

  border-radius: 50%;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 0.5px solid #ccc;
}
.customer-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 220px;
  height: 100%;
  padding: 0 3rem;
}
.customer-item img {
  height: 40px;

  object-fit: contain;

  display: block;

    filter: grayscale(100%);
    opacity: 0.75;

    transition:
        filter 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}
.customer-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
.circle-item img {
  width: clamp(50px, 5vw, 76px);
  height: auto;
  max-height: 70%;

  object-fit: contain;
  display: block;
}

.circle-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .circle-item {
    width: 80px;
    height: 80px;
    flex-basis: 80px;
    font-size: 12px;
  }
  .circle-item img {
    width: 60px;
    object-fit: contain;
    display: block;
  }

  .slider-track {
    gap: 14px;
  }
}

.Intelligence-item{background: #fff; border: 1px solid #ccc; border-radius: 8px;}
.Intelligence-thumb img{width: 100%;}
.Intelligence-content {
  padding: clamp(16px, 1.4vw, 24px);
}
.Intelligence-number {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: clamp(6px, 0.5vw, 10px);
}
.Intelligence-description {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  margin-bottom: 32px;
}
.Intelligence-para {
  font-size: clamp(0.875rem, 0.9vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  border-top: 1px solid #ccc;
  padding-top: 8px;
}
.Intelligence-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
}


.maturity-actvity-icon{background: url('/static/images/media/all-icons/Activity.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.maturity-layers-icon{background: url('/static/images/media/all-icons/Layers.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.maturity-investigation-icon{background: url('/static/images/media/all-icons/investigation.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.maturity-bullseye-icon{background: url('/static/images/media/all-icons/bullseye.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.maturity-person-icon{background: url('/static/images/media/all-icons/Person.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.maturity-trendup-icon{background: url('/static/images/media/all-icons/trendup.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}

.remediation-remediation-icon{background: url('/static/images/media/all-icons/Remediation.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.remediation-network-icon{background: url('/static/images/media/all-icons/Network.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.remediation-playbooks-icon{background: url('/static/images/media/all-icons/Playbooks.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.remediation-connected-icon{background: url('/static/images/media/all-icons/Connected.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.remediation-clockShield-icon{background: url('/static/images/media/all-icons/ClockShield.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.remediation-outcome-icon{background: url('/static/images/media/all-icons/Outcome.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}

.it-layout-dashboard-icon{background: url('/static/images/media/all-icons/layout-dashboard.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.it-network-it-icon{background: url('/static/images/media/all-icons/network-it.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.it-shield-alert-icon{background: url('/static/images/media/all-icons/shield-alert.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.it-service-check-icon{background: url('/static/images/media/all-icons/service-check.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}

.grc-refresh-cw-icon{background: url('/static/images/media/all-icons/refresh-cw.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.grc-clipboard-icon{background: url('/static/images/media/all-icons/clipboard.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.grc-shield-alerts-icon{background: url('/static/images/media/all-icons/shield-alerts.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.grc-triangle-alert-icon{background: url('/static/images/media/all-icons/triangle-alert.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}

.ctem-radar-icon{background: url('/static/images/media/all-icons/radar.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.ctem-shield-check-icon{background: url('/static/images/media/all-icons/shield-check.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.ctem-workflow-icon{background: url('/static/images/media/all-icons/workflow.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.ctem-circle-check-icon{background: url('/static/images/media/all-icons/circle-check.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}

.ccm-server-cog-icon{background: url('/static/images/media/all-icons/server-cog.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.ccm-vaultkey-icon{background: url('/static/images/media/all-icons/vaultkey.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.ccm-network-connect-icon{background: url('/static/images/media/all-icons/network-connect.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}
.ccm-integration-zap-icon{background: url('/static/images/media/all-icons/integration-zap.png') no-repeat; width: 32px; height: 32px; background-size: contain;display: inline-block;}


.upTarget{background: url('/static/images/media/target.png') no-repeat; width: 30px; height: 30px; background-size: contain;display: inline-block;}
.upShiled{background: url('/static/images/media/shield.png') no-repeat; width: 30px; height: 30px; background-size: contain;}
.upAudit{background: url('/static/images/media/audit.png') no-repeat; width: 30px; height: 30px; background-size: contain;}
.upTeam{background: url('/static/images/media/team.png') no-repeat; width: 30px; height: 30px; background-size: contain;}
.FasterTitle{color: #0B5ED7;}
.fewerTitle{color: #16A34A;}
.auditTitle{color: #7C3AED;}
.teamTitle{color: #F97316;}
.Intelligence-title span{display: inline-block;}
.top-arrow{background: url('/static/images/media/arrow-up.png') no-repeat; width: 16px; height: 16px; background-size: contain;}
.teamup{background: url('/static/images/media/teamup.png') no-repeat; width: 16px; height: 16px; background-size: contain;}
.navbar-brand{margin-left: -8px;}
.connected-descrition{min-height: 50px;}

.accordion-slider .accordion-items {
  box-sizing: border-box;
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  color: #212529;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: clamp(20px, 1.8vw, 32px) clamp(16px, 1.5vw, 28px);
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  font-weight: 500;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 0.5px solid #ccc;
  border-radius: clamp(6px, 0.5vw, 10px);
  box-shadow: none;
  transform: translateY(0);
  min-height: clamp(320px, 26vw, 440px);
  height: 100%;
  transition:
    transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 350ms ease,
    border-color 350ms ease;

  will-change: transform, box-shadow;
}
.accordion-slider .accordion-items.active {
  flex: 2 1 0;
  color: #0052CC;
  border-color: #0052CC;
  box-shadow:
    0 clamp(10px, 1vw, 14px) clamp(28px, 2.5vw, 35px) rgba(0, 82, 204, 0.10),
    0 4px 12px rgba(0, 0, 0, 0.04);
  min-height: clamp(320px, 26vw, 440px);
  height: 100%;
  overflow: hidden;
  background-color: #fff;
}
.accordion-slider .accordion-items .step-title {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #0052CC;
  margin-bottom: clamp(12px, 1vw, 18px);
  line-height: 1.15;
}

.accordion-slider .accordion-items .step-headlines {
  font-size: clamp(1rem, 1.15vw, 1.5rem);
  font-weight: 600;
  color: #000;
  margin-bottom: clamp(10px, 0.8vw, 14px);
  line-height: 1.3;
}

.accordion-slider .accordion-items .step-description {
  font-size: clamp(0.9375rem, 1vw, 1.25rem);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  margin-bottom: clamp(18px, 1.5vw, 28px);
}

.accordion-slider .accordion-items .step-active-description {
  font-size: clamp(0.8125rem, 0.9vw, 1rem);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  margin-bottom: clamp(18px, 1.5vw, 28px);
}

.accordion-slider .step-check {
  background: url(/static/images/media/step-check.png) no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  margin-top: 2px;
}

.spog-pink-bg{
  background: #FEF8FB;
}
.card{border-radius: unset;}
.border-right-0{border-right: 0 !important;}

.capability-grid {
    position: relative;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 0.5px solid #ccc;
    border-radius: 8px;
}
.capability-arrow {
  background: url('/static/images/media/arrow-right-new.png') no-repeat;
  width: 24px;
  height: 24px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.capability-plus {
  background: url('/static/images/media/plus-outlined.png') no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  position: absolute;
  right: -36px;
  bottom: -10px;
  z-index: 99;
}


.capability-item {
  min-height: 230px;
  padding: 24px 28px;

  display: flex;
  flex-direction: column;

  background: #fff;
  position: relative;
}

.capability-icon {
  font-size: 38px;
  line-height: 1;
  color: #0d6efd;
  margin-bottom: 16px;
}

.capability-title {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: clamp(1rem, 1.15vw, 1.5rem);
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 8px;
  color: #111;
}

.capability-description {
  font-size: 17px;
  line-height: 1.28;
  color: #222;
  margin-bottom: 24px;
}

.capability-outcome {
  margin-top: auto;

  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #0d5ed7;

  display: flex;
  align-items: center;
  gap: 8px;
}

.capability-outcome i {
  font-size: 16px;
}


/* =========================
 DESKTOP DIVIDERS
========================= */

@media (min-width: 992px) {

  .capability-col {
      border-right: 0.5px solid #ccc;
  }

  .capability-col:nth-child(3n) {
      border-right: 0;
  }

  .capability-col:nth-child(-n+3) {
      border-bottom: 0.5px solid #ccc;
  }

}


/* =========================
 TABLET
========================= */

@media (min-width: 768px) and (max-width: 991.98px) {

  .capability-col {
      border-right: 1px solid #d9d9d9;
      border-bottom: 1px solid #d9d9d9;
  }

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

  .capability-col:nth-last-child(-n+2) {
      border-bottom: 0;
  }

}


/* =========================
 MOBILE
========================= */

@media (max-width: 767.98px) {

  .capability-col {
      border-bottom: 1px solid #d9d9d9;
  }

  .capability-col:last-child {
      border-bottom: 0;
  }

  .capability-item {
      min-height: auto;
      padding: 28px 24px;
  }

  .capability-icon {
      font-size: 34px;
      margin-bottom: 22px;
  }

}

@media (max-width: 1024px) {

  .spog-page-section {
      min-height: auto;
      padding-top: 80px;
      padding-bottom: 80px;
  }


  .section-header h1 {
      font-size: 40px;
  }

  .section-header p {
      font-size: 21px;
  }

}

@media (max-width: 767px) {

  .spog-page-section {
      min-height: auto;

      padding-top: 80px;
      padding-bottom: 80px;
  }

  .section-header h1 {
      font-size: 32px;
  }

  .section-header p {
      font-size: 16px;
  }

  .journey-content {
    display: block;
    width: 100%;
    padding: 0;
}



.discover-ctem .Intelligence-description{margin-bottom: 16px !important;}
.discover-ctem .Intelligence-title{margin-bottom: 16px;}
/* Hide every card */
.journey-content .journey-step {
    display: none;
}

/* Show ONLY current active card */
.journey-content .journey-step.active {
    display: block;
    opacity: 1;
    transform: none;
}

/* Explicitly keep completed cards hidden */
.journey-content .journey-step.completed {
    display: none;
}
.circle-slider {
  padding: 0;
}
.journey-container {
  padding: 30px 16px;
}

.journey-progress {
  display: block;
}

.journey-content {
  grid-template-columns: 1fr;
  row-gap: 35px;
}

.journey-step {
  opacity: 0.35;
}

.journey-step.active {
  opacity: 1;
}

.journey-step.completed {
  opacity: 0.6;
}
.accordion-slider .accordion-items.active{
  min-height: 400px;
}
.accordion-items .slider-content{
  min-height: 250px;
}
.accordion-slider .accordion-items, .connected-item, .Intelligence-item {
  margin-bottom: 30px;
}
.connected-item {
  margin-bottom: 10px;
}

.accordion-slider {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;

  width: 100%;
  height: auto;

  gap: 0 !important;

  overflow-x: auto !important;
  overflow-y: hidden !important;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}

.accordion-slider::-webkit-scrollbar {
  display: none;
}


/* All cards become full-width slides */
.accordion-slider .accordion-items,
.accordion-slider .accordion-items.active {

  flex: 0 0 100% !important;

  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;

  min-height: 400px;
  height: auto;

  opacity: 1;

  background: #fff;
  color: #000;

  border: 1px solid #0052CC;
  border-radius: 12px;

  box-shadow:
      0 8px 24px rgba(0, 82, 204, 0.08),
      0 2px 8px rgba(0, 0, 0, 0.04);

  transform: none !important;

  scroll-snap-align: start;
  scroll-snap-stop: always;
}


/* Disable hover movement on touch devices */
.accordion-slider .accordion-items:hover,
.accordion-slider .accordion-items.active:hover {

  transform: none !important;

  border-color: #0052CC;

  box-shadow:
      0 8px 24px rgba(0, 82, 204, 0.08),
      0 2px 8px rgba(0, 0, 0, 0.04);
}




.step-description .d-flex.mb-3 {margin-bottom: 12px !important;}
.expert-body .expert-body-left.pe-5{padding-right: 0 !important;margin-bottom: 24px !important;}
.expert-body{padding-left: 16px !important;}
.expert-bg {padding: 20px 0 30px 0;}
.spog-hero-title br{display: none;}
.customer-item{width: 150px;}


}


.maturity-widget {
  position: relative;
  background: #fff;

  /*
   * Left space  = Effectiveness axis
   * Bottom space = Completeness axis
   */
  padding: 45px 55px 75px 115px;

  font-family: "Montserrat", sans-serif;
  color: #111;
}


/* ========================================
   MATRIX
======================================== */

.maturity-matrix {
  width: 100%;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.matrix-item {
  min-height: 160px;
  padding: 15px 50px 45px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}


/* vertical center divider */

.matrix-item:first-child {
  border-right: 0.5px solid #ccc;
}


/* horizontal center divider */

.matrix-row:first-child .matrix-item {
  border-bottom: 0.5px solid #ccc;
}


.matrix-row:last-child .matrix-item {
  padding-top: 55px;
}


/* ========================================
   TEXT
======================================== */

.matrix-title {
  font-family: "Poppins", sans-serif;
    font-style: normal;
    font-size: clamp(1rem, 1.15vw, 1.5rem);
    line-height: 1.25;
    font-weight: 500;
  text-transform: uppercase;

  margin: 0 0 16px;
}


.matrix-subtitle {
  font-size: 13px;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 18px;
}


.matrix-description {
  font-size: 1rem;
  line-height: 1.4;

  max-width: 680px;

  margin: 0 auto;
}


/* ========================================
   EFFECTIVENESS — LEFT AXIS
======================================== */

.axis-effectiveness {
  position: absolute;

  left: 0;
  top: 60px;
  bottom: 75px;

  width: 55px;
}


/* blue vertical line */

.axis-y-line {
  position: absolute;

  left: 24px;
  top: 0;
  bottom: 0;

  width: 1px;

  background: #0052CC;
}


/* top arrow */

.axis-y-arrow {
  position: absolute;

  left: 19px;
  top: -15px;

  font-size: 20px;
  line-height: 1;

  color: #0052CC;

  z-index: 2;
}


/*
 * IMPORTANT:
 * label is placed LEFT of the line
 */

.axis-y-label {
  position: absolute;

  left: -44px;
  top: 50%;

  transform:
    translateY(-50%)
    rotate(-90deg);

  color: #0052CC;

  font-size: 14px;
  font-weight: 500;

  white-space: nowrap;

  background: #fff;

  padding: 8px 14px;

  z-index: 2;
}


/* ========================================
   COMPLETENESS — BOTTOM AXIS
======================================== */

.axis-completeness {
  position: absolute;

  left: 115px;
  right: 55px;
  bottom: 20px;

  height: 45px;
}


/* horizontal blue line */

.axis-x-line {
  position: absolute;

  left: 0;
  right: 0;
  top: 16px;

  height: 1px;

  background: #0052CC;
}


/* Completeness label */

.axis-x-label {
  position: absolute;

  left: 50%;
  top: 5px;

  transform: translateX(-50%);

  padding: 0 18px;

  background: #fff;

  color: #0052CC;

  font-size: 14px;
  font-weight: 500;

  white-space: nowrap;
}


/* right arrow */

.axis-x-arrow {
  position: absolute;

  right: -10px;
  top: 1px;

  color: #1468ff;

  font-size: 27px;
  line-height: 1;

  background: #fff;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1200px) {

  .maturity-widget {
    padding-left: 95px;
  }

  .matrix-item {
    min-height: 310px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .matrix-title {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .matrix-subtitle {
    font-size: 20px;
  }

  .matrix-description {
    font-size: 18px;
  }

  .axis-completeness {
    left: 95px;
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

  .maturity-widget {
    padding:
      30px
      20px
      65px
      55px;
  }

  .matrix-row {
    display: block;
  }

  .matrix-item {
    min-height: auto;

    padding: 35px 15px !important;

    border-right: 0 !important;
    border-bottom: 1px solid #777 !important;
  }

  .matrix-row:last-child .matrix-item:last-child {
    border-bottom: 0 !important;
  }

  .matrix-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .matrix-subtitle {
    font-size: 16px;
  }

  .matrix-description {
    font-size: 15px;
  }


  /* Y axis */

  .axis-effectiveness {
    left: 10px;
    bottom: 65px;
  }

  .axis-y-label {
    left: -13px;
    font-size: 12px;
  }


  /* X axis */

  .axis-completeness {
    left: 55px;
    right: 20px;
    bottom: 12px;
  }

  .axis-x-label {
    font-size: 12px;
  }

}