/* ============================================
   services.css — 서비스 페이지
   ============================================ */

.services-list {
  padding-block: var(--space-24);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding-block: var(--space-20);
  border-bottom: 1px solid var(--color-border);
}

.service-item:last-child { border-bottom: none; }

.service-item:nth-child(even) .service-item__image {
  order: -1;
}

.service-item__image {
  position: relative;
  height: 460px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-item__image:hover img {
  transform: scale(1.04);
}

.service-item__number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.service-item__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}

.service-item__title {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
  line-height: 1.3;
}

.service-item__desc {
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: var(--space-8);
}

.service-item__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-primary);
}

.service-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  flex-shrink: 0;
}

/* ── 프로세스 ── */
.service-process {
  padding-block: var(--space-24);
  background-color: var(--color-bg-dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-16);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(to right, var(--color-secondary), var(--color-accent));
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-weight: 600;
  color: var(--color-white);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.process-step__desc {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* 반응형 */
@media (max-width: 1023px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}

@media (max-width: 767px) {
  .service-item { grid-template-columns: 1fr; }
  .service-item__image { height: 260px; order: -1 !important; }
  .service-item:nth-child(even) .service-item__image { order: -1; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
