/* ========================================
   Services Page Styles
   ======================================== */

/* ---- Service Block ---- */
.service-block {
  padding: var(--space-20) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
  margin-bottom: var(--space-12);
}

.service-icon-lg {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  color: var(--accent-primary);
  margin-bottom: var(--space-6);
}

.service-icon-lg svg {
  width: 32px;
  height: 32px;
}

.service-header h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.service-header p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Feature Grid ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.feature-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 50%;
  color: var(--accent-primary);
}

.feature-check svg {
  width: 14px;
  height: 14px;
}

.feature-item h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.feature-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---- Process Timeline ---- */
.process {
  position: relative;
}

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--border-default);
}

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

.process-number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--border-default);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.process-step:hover .process-number {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-glow);
}

.process-step h4 {
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}

.process-step p {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-header {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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