/* ============================================================
   SERVICES.CSS — Services & How We Work
   ============================================================ */

/* ── Services section ───────────────────────────────────── */
.services {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.services-header .section-label {
  display: block;
  text-align: center;
}

.services-header .section-title {
  margin-bottom: 14px;
}

.services-header p {
  font-size: var(--text-base);
  color: var(--text-soft);
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-name {
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: var(--text);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: var(--text-sm);
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── How we work / Process ──────────────────────────────── */
.process {
  background: var(--white);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border);
}

.process-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto var(--space-xl);
}

.process-header .section-label {
  display: block;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-sm);
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--blue);
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.process-step.is-active .process-step-num {
  background: var(--blue);
  color: var(--white);
}

.process-step-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--text);
  margin-bottom: 6px;
}

.process-step-desc {
  font-size: var(--text-xs);
  color: var(--text-soft);
  line-height: 1.55;
}
