#model {
  padding: 72px 56px;
  background: var(--s50);
}

.model-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}

.model-h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
}

.model-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--s400);
  align-self: end;
}

.model-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--s200);
  margin-bottom: 1px;
}

.model-step {
  background: var(--s50);
  padding: 28px 28px 36px;
  position: relative;
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: background 0.25s, transform 0.25s ease, box-shadow 0.25s ease;
}

.model-step:hover {
  background: var(--s100);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.model-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.model-step-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--s400);
}

.model-step-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.model-step-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.model-step-body {
  font-size: 14px;
  line-height: 1.72;
  color: var(--s400);
}

.model-footer {
  background: var(--s100);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.model-footer-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--s500);
  line-height: 1.6;
  max-width: 560px;
}
