.process {
  padding: 96px var(--px);
  background: var(--bg-page);
}

.process-inner { max-width: var(--max-width); margin: 0 auto; }

.process-head {
  margin-bottom: 48px;
  max-width: 60ch;
}

.process-head .copy-head { margin-bottom: 10px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.step {
  background: var(--bg-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step .step-img {
  width: calc(100% + 56px);
  margin: -32px -28px 0;
  height: 200px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.step .nm {
  font-size: 11px;
  font-weight: 700;
  color: var(--at-red);
  letter-spacing: .08em;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -.005em;
  color: var(--text-primary);
}

.step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.step .meta {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.step .meta strong { color: var(--at-blue); font-weight: 700; }

/* ── Closing CTA ─────────────────────────────────────────────────── */
.closing {
  background: #37383A;
  color: #fff;
  padding: 96px var(--px);
  position: relative;
  overflow: hidden;
}

@media (prefers-color-scheme: dark) {
  .closing { background: #1A1D25; border-top: 1px solid var(--border); }
}

.closing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.closing .copy-head { color: rgba(255,255,255,.6); margin-bottom: 14px; }

.closing h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -.015em;
  color: #fff;
  margin-bottom: 18px;
}

.closing h2 .red { color: #E8356A; }

.closing p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 46ch;
  margin-bottom: 28px;
}

.closing-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.closing-card {
  background: var(--bg-page);
  color: var(--text-primary);
  padding: 36px;
  border-top: 4px solid var(--at-red);
}

.closing-card .copy-head { color: var(--at-red); margin-bottom: 14px; }

.closing-card h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin-bottom: 18px;
  line-height: 1.1;
  color: var(--text-primary);
}

.closing-card .row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.closing-card .row a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
}

.closing-card .row a:hover { color: var(--at-red); }
.closing-card .row a i { font-size: 14px; color: var(--at-blue); flex-shrink: 0; width: 16px; text-align: center; }

.closing-card .person {
  display: flex;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.closing-card .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--at-blue), var(--at-dark-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  overflow: hidden;
  object-fit: cover;
}

.closing-card .person .nm { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.closing-card .person .ti { font-size: 12px; color: var(--text-secondary); }

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

@media (max-width: 600px) {
  .process, .closing { padding: 64px var(--px-sm); }
  .steps { grid-template-columns: 1fr; }
}
