/* ================================================================
   Sync Inn Digital — Our Process Section
   Used on: Sub-Services category pages only. Section 6.

   Layout:
     .sid-op                 — section wrapper (light bg)
     .sid-op__inner          — constrained (1400px) + side padding
     .sid-op__header         — section label + heading + description
     .sid-op__slider-area    — nav buttons row + card track
     .sid-op__nav            — prev/next button row (flex-end)
     .sid-op__btn            — circular nav button
     .sid-op__track-wrap     — overflow: hidden viewport for cards
     .sid-op__track          — flex row of all cards (translates on scroll)
     .sid-op__card           — individual process step card
   ================================================================ */

/* ── Section wrapper ─────────────────────────────────────────── */

.sid-op {
  background-color: var(--sid-light-grayish-blue-bg, #F5F6FA);
  padding: 110px 0 110px;
}

/* ── Constrained inner ───────────────────────────────────────── */

.sid-op__inner {
  max-width: var(--sid-site-width, 1400px);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Main heading ────────────────────────────────────────────── */

.sid-op__heading {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--sid-black, #000);
  margin: 0 0 24px;
  max-width: 70%;
}

.sid-op__heading-muted {
  color: #7E7E81;
}

/* ── Description ─────────────────────────────────────────────── */

.sid-op__desc {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--sid-black, #000);
  margin: 0;
  max-width: 50%;
}

/* ── Slider area ─────────────────────────────────────────────── */

.sid-op__slider-area {
  position: relative;
}

/* ── Nav buttons row — right-aligned above the track ────────── */

.sid-op__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 24px;
}

/* ── Circular nav button — matches Proven Impact style ───────── */

.sid-op__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--sid-light-blue, #E8ECF3);
  color: var(--sid-black, #000);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.sid-op__btn:hover:not(:disabled) {
  background-color: var(--sid-primary-blue, #0047D8);
  border-color: var(--sid-primary-blue, #0047D8);
  color: var(--sid-white, #fff);
}

.sid-op__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Arrow SVG inside button */
.sid-op__nav-arrow {
  width: 20px;
  height: 17px;
  fill: currentColor;
  display: block;
}

/* Prev button — mirror the right-facing arrow */
.sid-op__btn--prev .sid-op__nav-arrow {
  transform: rotate(180deg);
}

/* ── Track wrapper — clips overflow ─────────────────────────── */

.sid-op__track-wrap {
  overflow: hidden;
}

/* ── Track — flex row of all cards ──────────────────────────── */

.sid-op__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Individual process step card ────────────────────────────── */

.sid-op__card {
  flex-shrink: 0;
  /* Width: 4 visible — overridden via responsive breakpoints */
  width: calc(25% - 18px);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  box-shadow: inset 0 3px 18px rgb(0 0 0 / 15%);
}

/* ── Step number ─────────────────────────────────────────────── */

.sid-op__card-number {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: rgba(0, 0, 0, 0.30);
  display: block;
  margin-bottom: 20px;
}

/* ── Step title ──────────────────────────────────────────────── */

.sid-op__card-title {
  font-family: 'Poppins', var(--sid-font-heading, sans-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--sid-black, #000);
  margin: 0;
}

/* ── Step description ────────────────────────────────────────── */

.sid-op__card-desc {
  font-family: 'Nunito', var(--sid-font-body, sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--sid-black, #000);
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1280px) {
  .sid-op__heading {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .sid-op__heading {
    font-size: 36px;
    max-width: 100%;
  }

  .sid-op__desc {
    max-width: 100%;
  }

  /* 3 cards visible */
  .sid-op__card {
    width: calc(33.333% - 16px);
  }
}

@media (max-width: 768px) {
  .sid-op {
    padding: 60px 0;
  }

  .sid-op__header {
    margin-bottom: 36px;
  }

  .sid-op__heading {
    font-size: 30px;
  }

  /* 2 cards visible */
  .sid-op__card {
    width: calc(50% - 12px);
    padding: 28px 24px;
  }

  .sid-op__card-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .sid-op__heading {
    font-size: 30px;
    line-height: 30px;
  }

  .sid-op__desc {
    font-size: 16px;
  }

  /* 1 card visible */
  .sid-op__card {
    width: 100%;
  }

  .sid-op__card-desc {
    font-size: 17px;
  }
}
