  .saas-slider {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }

  .slider-shell {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
    z-index: 2;
  }

  .slider-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
  }

  .slider-orb-1 {
    width: 180px;
    height: 180px;
    background: #0d6efd;
    top: -60px;
    right: 8%;
  }

  .slider-orb-2 {
    width: 120px;
    height: 120px;
    background: #86b7fe;
    bottom: -30px;
    left: 12%;
  }

  .slider-progress {
    height: 4px;
    border-radius: 999px;
    background: rgba(0,0,0,.06);
    overflow: hidden;
  }

  .progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #0d6efd, #6ea8fe);
  }

  .slides-wrapper {
    position: relative;
    flex: 1;
  }

  .slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: all .6s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
  }

  .slide-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .slide-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 12px 24px rgba(13,110,253,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 22px;
  }

  .slide-tag {
    font-size: .85rem;
    font-weight: 600;
    color: #0d6efd;
    background: rgba(13,110,253,.08);
    padding: 8px 14px;
    border-radius: 999px;
  }

  .slide-item h2 {
    font-size: clamp(1.4rem, 2.2vw, 2.3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #111827;
  }

  .slide-item p {
    font-size: .98rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 90%;
  }

  .slide-visual {
    height: 180px;
    border-radius: 24px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
  }

  .pulse-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(13,110,253,.25);
    border-radius: 50%;
    animation: pulse 2.5s infinite;
  }

  @keyframes pulse {
    from {
      transform: scale(.8);
      opacity: 1;
    }
    to {
      transform: scale(1.8);
      opacity: 0;
    }
  }

  .slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    background: white;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    transition: .25s ease;
  }

  .slider-btn:hover {
    transform: translateY(-2px);
  }

  .slider-dots {
    display: flex;
    gap: 8px;
  }

  .slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #cbd5e1;
    transition: .3s;
    cursor: pointer;
  }

  .slider-dots .dot.active {
    width: 26px;
    background: #0d6efd;
  }

  @media (max-width: 992px) {
    .saas-slider {
      height: 520px;
    }

    .slide-visual {
      height: 140px;
    }

    .slide-item p {
      max-width: 100%;
    }
  }