.process-section {
  background: #f1f2f4;
  padding: 58px 0 62px;
}

.process-wrap {
  width: min(1220px, calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
}

.process-title {
  margin: 0;
  text-align: center;
  color: #171b2a;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.process-subtitle {
  margin: 16px auto 34px;
  max-width: 900px;
  text-align: center;
  color: #616a7b;
  font-size: 18px;
  line-height: 1.4;
}

.process-card {
  background: #f4f5f7;
  border: 1px solid #cdd3df;
  border-radius: 18px;
  padding: 24px 24px 20px;
}

.process-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.process-tab {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-height: 42px;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid #c7ccd6;
  background: #f1f2f4;
  color: #1b2232;
  font-size: 13px;
  font-weight: 500;
  padding: 0 10px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.process-tab:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  transform: translateY(-50%);
  width: 11px;
  height: 3px;
  border-radius: 999px;
  background: #c7ccd6;
  pointer-events: none;
}

.process-tab.is-active {
  border-color: transparent;
  background: #2f419d;
  color: #ffffff;
  box-shadow: none;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.process-copy h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.12;
  color: #1a2132;
}

.process-copy p {
  margin: 0 0 18px;
  color: #626a7b;
  font-size: 18px;
  line-height: 1.4;
}

.process-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-copy li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: #1f2636;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.process-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #2f419d;
}

.process-copy li::after {
  content: "\2713";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-54%);
  width: 11px;
  height: 11px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-media {
  position: relative;
  width: 560px;
  max-width: 100%;
  height: 315px;
  border-radius: 16px;
  border: 3px solid #d9dde5;
  overflow: hidden;
  opacity: 1;
  justify-self: end;
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #4d5566;
  font-size: 24px;
  cursor: pointer;
}

.process-arrow.prev {
  left: 12px;
}

.process-arrow.next {
  right: 12px;
}

@media (max-width: 1080px) {
  .process-title {
    font-size: clamp(32px, 4.1vw, 46px);
  }

  .process-subtitle {
    font-size: 18px;
  }

  .process-copy h3 {
    font-size: clamp(28px, 3vw, 38px);
  }

  .process-copy p {
    font-size: 17px;
  }

  .process-copy li {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .process-content {
    grid-template-columns: 1fr;
  }

  .process-media {
    width: 100%;
    height: auto;
    aspect-ratio: 560 / 315;
  }
}

@media (max-width: 680px) {
  .process-section {
    padding: 36px 0 42px;
  }

  .process-card {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .process-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }

  .process-tabs::-webkit-scrollbar {
    display: none;
  }

  .process-tab {
    flex: 0 0 auto;
    min-height: 32px;
    min-width: 0;
    font-size: 12px;
    padding: 0 8px;
  }

  .process-subtitle {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .process-copy h3 {
    font-size: 24px;
  }

  .process-copy p {
    font-size: 14px;
  }

  .process-copy li {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .process-copy li::before {
    top: 9px;
    width: 8px;
    height: 8px;
  }

  .process-media {
    width: 100%;
    height: auto;
    aspect-ratio: 560 / 315;
    border-radius: 12px;
  }

  .process-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}
