/* ============================================================
   PROCESS SECTION
   ============================================================ */

.process { background: var(--white); }

/* 2 × 2 grid of step cards */
.process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

/* Step card */
.process__step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans);
}

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

/* Step number */
.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-lt);
  border: 1px solid var(--accent-mid);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  margin-inline: auto;
  margin-bottom: 20px;
}

/* Step title */
.process__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

/* Step body */
.process__body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-sec);
}

/* Responsive */
@media (max-width: 640px) {
  .process__grid { grid-template-columns: 1fr; }
}
