 :root {
      --th6-red:    #f05c62;
      --th6-dark:   #2f3440;
      --th6-gray:   #555;
      --th6-border: #ddd;
      --th6-shadow: 0 6px 28px rgba(224,52,52,.13);
    }

   

    /* ── SECTION ── */
    .th6-stepprocess {
      width: 100%;
      padding: 72px 0 80px;
      background: #fff;
      position: relative;
      overflow: hidden;
    }
    .th6-stepprocess::before {
      content: '';
      position: absolute;
      top: -80px; left: -100px;
      width: 380px; height: 380px;
      border: 2px solid rgba(224,52,52,.07);
      border-radius: 50%;
      pointer-events: none;
    }

    /* ── HEADING ── */
    .th6-sp-head {
      text-align: center;
      padding: 0 24px;
      margin-bottom: 52px;
    }
    .th6-sp-head h2 {
      font-size: 2.2rem;
      font-weight: 600;
      /* text-transform: uppercase; */
      letter-spacing: .4px;
      line-height: 1.15;
      color: var(--th6-dark);
    }
    .th6-sp-head h2 span {
      display: block;
      color: var(--th6-red);
    }
    .th6-sp-head p {
      margin-top: 20px;
      max-width: 820px;
      margin-inline: auto;
      font-size: .9rem;
      line-height: 1.78;
      color: var(--th6-gray);
    }

    /* ── SLIDER WRAPPER ── */
    .th6-sp-outer {
      display: flex;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }

    /* ── ARROW BUTTONS ── */
    .th6-sp-btn {
      flex-shrink: 0;
      width: 44px; height: 44px;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--th6-red);
      font-size: 1.6rem;
      display: flex; align-items: center; justify-content: center;
      transition: transform .2s;
      z-index: 5;
    }
    .th6-sp-btn:hover { transform: scale(1.2); }
    .th6-sp-btn:disabled { opacity: .28; cursor: default; transform: none; }

    /* ── CLIP WINDOW ── */
    .th6-sp-window {
      flex: 1;
      overflow: hidden;
      min-width: 0;
    }

    /* ── MOVING TRACK ── */
    .th6-sp-track {
      display: flex;
      transition: transform .5s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }

    /* ── EACH SLIDE ── */
    .th6-sp-slide {
      flex: 0 0 50%;
      min-width: 0;
      padding: 0 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* ── NODE ROW ── */
    .th6-sp-node {
      width: 100%;
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      padding-top: 10px;
    }
    .th6-sp-line {
      flex: 1;
      height: 2px;
      background: var(--th6-red);
    }
    .th6-sp-circle {
      flex-shrink: 0;
      width: 58px; height: 58px;
      border-radius: 50%;
      background: var(--th6-red);
      color: #fff;
      font-size: 1.3rem;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(224,52,52,.35);
      transition: transform .3s, box-shadow .3s;
      z-index: 2;
    }
    .th6-sp-slide:hover .th6-sp-circle {
      transform: scale(1.1);
      box-shadow: 0 6px 24px rgba(224,52,52,.5);
    }

    /* ── CARET ── */
    .th6-sp-caret {
      width: 0; height: 0;
      border-left: 11px solid transparent;
      border-right: 11px solid transparent;
      border-top: 11px solid var(--th6-red);
      align-self: center;
    }

    /* ── CARD ── */
    .th6-sp-card {
      width: 100%;
      border: 1.5px solid var(--th6-red);
      border-radius: 12px;
      background: #fff;
      padding: 28px 26px 30px;
      position: relative;
      box-shadow: var(--th6-shadow);
      min-height: 175px;
      transition: transform .3s, box-shadow .3s;
    }
    .th6-sp-slide:hover .th6-sp-card {
      transform: translateY(-4px);
      box-shadow: 0 14px 36px rgba(224,52,52,.18);
    }
    .th6-sp-badge {
      position: absolute;
      top: -13px; right: 18px;
      background: var(--th6-red);
      color: #fff;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 20px;
    }
    .th6-sp-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--th6-red);
      margin-bottom: 12px;
    }
    .th6-sp-card p {
      font-size: .92rem;
      line-height: 1.72;
      color: var(--th6-gray);
    }

    /* ── DOTS ── */
    .th6-sp-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 38px;
    }
    .th6-sp-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      border: none;
      background: var(--th6-border);
      cursor: pointer;
      padding: 0;
      transition: background .3s, transform .3s;
    }
    .th6-sp-dot-active {
      background: var(--th6-red) !important;
      transform: scale(1.35);
    }

    /* ── MOBILE ── */
    @media (max-width: 767px) {
      .th6-stepprocess { padding: 48px 0 56px; }
      .th6-sp-outer { padding: 0 6px; }
      .th6-sp-btn { width: 36px; height: 36px; font-size: 1.2rem; }
      .th6-sp-slide { flex: 0 0 100%; padding: 0 10px; }
      .th6-sp-circle { width: 50px; height: 50px; font-size: 1.1rem; }
      .th6-sp-card { padding: 22px 18px 24px; min-height: auto; }
      .th6-sp-head h2 { font-size: 1.65rem; }
    }